From 1b244cdab292463096d2db34c679fc37e71c87ac Mon Sep 17 00:00:00 2001 From: Eryu Guan Date: Sun, 13 Nov 2016 02:12:33 +0800 Subject: [PATCH] generic: fix $tmp path in tests Some tests use "tmp/$$" as $tmp, and this would result in ENOENT failure if $tmp is referenced in helpers or tests, because we have no "tmp" dir in pwd. Fix them to use "/tmp/$$" as all other tests do. Reviewed-by: Dave Chinner Signed-off-by: Eryu Guan --- tests/generic/018 | 2 +- tests/generic/094 | 2 +- tests/generic/225 | 2 +- tests/generic/249 | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/generic/018 b/tests/generic/018 index e8dbab37..e554861c 100755 --- a/tests/generic/018 +++ b/tests/generic/018 @@ -26,7 +26,7 @@ seqres=$RESULT_DIR/$seq echo "QA output created by $seq" here=`pwd` -tmp=tmp/$$ +tmp=/tmp/$$ status=1 # failure is the default! trap "_cleanup; exit \$status" 0 1 2 3 15 diff --git a/tests/generic/094 b/tests/generic/094 index 005de1d8..b686a5b4 100755 --- a/tests/generic/094 +++ b/tests/generic/094 @@ -26,7 +26,7 @@ seqres=$RESULT_DIR/$seq echo "QA output created by $seq" here=`pwd` -tmp=tmp/$$ +tmp=/tmp/$$ status=1 # failure is the default! trap "_cleanup; exit \$status" 0 1 2 3 15 diff --git a/tests/generic/225 b/tests/generic/225 index 5285e685..544e0bef 100755 --- a/tests/generic/225 +++ b/tests/generic/225 @@ -26,7 +26,7 @@ seqres=$RESULT_DIR/$seq echo "QA output created by $seq" here=`pwd` -tmp=tmp/$$ +tmp=/tmp/$$ status=1 # failure is the default! trap "_cleanup; exit \$status" 0 1 2 3 15 diff --git a/tests/generic/249 b/tests/generic/249 index d8b4df47..9b754788 100755 --- a/tests/generic/249 +++ b/tests/generic/249 @@ -26,7 +26,7 @@ seqres=$RESULT_DIR/$seq echo "QA output created by $seq" here=`pwd` -tmp=tmp/$$ +tmp=/tmp/$$ status=1 # failure is the default! trap "_cleanup; exit \$status" 0 1 2 3 15 -- 2.39.5