From 168bae39582266a27fbab8e5250699ca85881a5f Mon Sep 17 00:00:00 2001 From: Dave Chinner Date: Fri, 2 Nov 2018 12:09:48 +1100 Subject: [PATCH] check: use full paths for diff on error i don't run fstests from the source directory, so when I get a golden image mismatch the relative path to the golden output is not useful: (Run 'diff -u tests/generic/013.out /home/dave/src/xfstests-dev/results//xfs_64k/generic/013.out.bad' to see the entire diff) Change the output to emit the real path for the golden out so this can be cut and pasted and run from anywhere. (Run 'diff -u /home/dave/src/xfstests-dev/tests/generic/013.out /home/dave/src/xfstests-dev/results//xfs_64k/generic/013.out.bad' to see the entire diff) Signed-off-by: Dave Chinner Reviewed-by: Eryu Guan Signed-off-by: Eryu Guan --- check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check b/check index f3c8021d..59f94c1c 100755 --- a/check +++ b/check @@ -799,7 +799,7 @@ for section in $HOST_OPTIONS_SECTIONS; do else head -n "$DIFF_LENGTH" echo "..." - echo "(Run '$diff $seq.out $seqres.out.bad'" \ + echo "(Run '$diff $here/$seq.out $seqres.out.bad'" \ " to see the entire diff)" fi; } | sed -e 's/^\(.\)/ \1/' err=true -- 2.39.5