summaryrefslogtreecommitdiff
path: root/tests/lib-gdr
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2018-08-11 12:00:24 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2018-08-11 12:03:44 +0100
commite7178a4a4eafad6d816a48c18c2a159f4dd3e40c (patch)
treeea1ef878eb0b9f76df58a770329504ad0dfad296 /tests/lib-gdr
parent99068bbe18c8fe83714639cc4ba9adcab5d71e59 (diff)
test suite: lib-gdr: t-gdr-good: Introduce $anal
NFC Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Diffstat (limited to 'tests/lib-gdr')
-rw-r--r--tests/lib-gdr9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/lib-gdr b/tests/lib-gdr
index 849e3f6..a13696d 100644
--- a/tests/lib-gdr
+++ b/tests/lib-gdr
@@ -51,9 +51,10 @@ t-gdr-good () {
pushed-interop) etypes=Pseudomerge-AddPatchesInterop-Upstream ;;
esac
- t-git-debrebase analyse >../anal.check
+ anal=../anal
+ t-git-debrebase analyse >$anal.check
expect=`git rev-parse HEAD`
- exec <../anal.check
+ exec <$anal.check
local cid ctype info nparents
while read cid ctype info; do
: ===== $cid $ctype $info =====
@@ -108,9 +109,9 @@ t-gdr-good () {
: 'reject pointless pseudomerges'
local overwritten=${parents/$expect/}
overwritten=${overwritten// /}
- t-git-debrebase analyse $overwritten >../anal.overwr
+ t-git-debrebase analyse $overwritten >$anal.overwr
local ocid otype oinfo
- read <../anal.overwr ocid otype oinfo
+ read <$anal.overwr ocid otype oinfo
case "$otype" in
Pseudomerge) test "x$info" != "x$oinfo" ;;
esac