From b62c158368158b278bcb31447f8b1442cb531898 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 11 Aug 2018 12:04:37 +0100 Subject: [PATCH] test suite: lib-gdr: t-gdr-good: Introduce t-gdr-analyse NFC This will allow us to recurse. Signed-off-by: Ian Jackson --- tests/lib-gdr | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/tests/lib-gdr b/tests/lib-gdr index a13696d7..6c744657 100644 --- a/tests/lib-gdr +++ b/tests/lib-gdr @@ -23,8 +23,6 @@ t-gdr-good () { git diff --quiet ${beforetag-t.before} -- ':.' ':!debian/patches' - local etypes bwtip - LC_MESSAGES=C t-git-debrebase status >../status.check case $state in laundered) @@ -37,6 +35,15 @@ t-gdr-good () { ;; esac + t-gdr-good-analyse HEAD $state +} + +t-gdr-good-analyse () { + local head=$1 + local state=$2 + local wsfx=$3 + local etypes bwtip + # etypes is either a type, # or PseudoMerge- # or AddPatches- @@ -51,9 +58,9 @@ t-gdr-good () { pushed-interop) etypes=Pseudomerge-AddPatchesInterop-Upstream ;; esac - anal=../anal - t-git-debrebase analyse >$anal.check - expect=`git rev-parse HEAD` + anal=../anal$wsfx + t-git-debrebase analyse $head >$anal.check + expect=`git rev-parse $head` exec <$anal.check local cid ctype info nparents while read cid ctype info; do -- 2.30.2