mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
xfstests: RESULTS_DIR needs to be an absolute path
Some tests 'cd <somedir>' and then direct output to $RESULT_DIR, which fails if the current working directory is not $here. Regardless, if an external results directory is to be used it needs to have a full path specified and the use of $here as the base of the results files is completely incorrect. Hence change all the $here/$seqres* references to simply be $seqres*, and instead encode the full path to the results in $RESULT_DIR. Signed-off-by: Dave Chinner <dchinner@redhat.com> Reviewed-by: Phil White <pwhite@sgi.com> Signed-off-by: Rich Johnston <rjohnston@sgi.com>
This commit is contained in:
committed by
Rich Johnston
parent
0b1e8abd4a
commit
e5c7cd83c4
+9
-9
@@ -75,14 +75,14 @@ _do_test()
|
||||
fi
|
||||
else
|
||||
echo " randholes returned $? - see $seq.out.full"
|
||||
echo "--------------------------------------" >>$here/$seq.out.full
|
||||
echo "$_n - output from randholes:" >>$here/$seq.out.full
|
||||
echo "--------------------------------------" >>$here/$seq.out.full
|
||||
cat $tmp.out >>$here/$seq.out.full
|
||||
echo "--------------------------------------" >>$here/$seq.out.full
|
||||
echo "$_n - output from bmap:" >>$here/$seq.out.full
|
||||
echo "--------------------------------------" >>$here/$seq.out.full
|
||||
xfs_bmap -vvv $out >>$here/$seq.out.full
|
||||
echo "--------------------------------------" >>$seqres.full
|
||||
echo "$_n - output from randholes:" >>$seqres.full
|
||||
echo "--------------------------------------" >>$seqres.full
|
||||
cat $tmp.out >>$seqres.full
|
||||
echo "--------------------------------------" >>$seqres.full
|
||||
echo "$_n - output from bmap:" >>$seqres.full
|
||||
echo "--------------------------------------" >>$seqres.full
|
||||
xfs_bmap -vvv $out >>$seqres.full
|
||||
status=1
|
||||
fi
|
||||
}
|
||||
@@ -93,7 +93,7 @@ _supported_os IRIX Linux
|
||||
|
||||
_setup_testdir
|
||||
|
||||
rm -f $here/$seq.out.full
|
||||
rm -f $seqres.full
|
||||
|
||||
# Note on special numbers here.
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user