xfstests: convert tests to use new results directory
[xfstests-dev.git] / tests / generic / 192
index 691ab7d8f3b468df9d3d94db812680cf25c16c55..321a92f0d2b02d2c90ae161bb9d25dd4776351bb 100755 (executable)
@@ -25,6 +25,9 @@
 #
 
 seq=`basename $0`
+seqres=$RESULT_DIR/$seq
+seqres=$RESULT_DIR/$seq
+seqres=$RESULT_DIR/$seq
 echo "QA output created by $seq"
 
 here=`pwd`
@@ -53,20 +56,20 @@ delay=40
 
 testfile=$TEST_DIR/testfile
 rm -f $testfile
-rm -f $seq.full
+rm -f $seqres.full
 
 echo test >$testfile
-time1=`_access_time $testfile | tee -a $seq.full` 
+time1=`_access_time $testfile | tee -a $seqres.full`
 
 echo "sleep for $delay"
 sleep $delay # sleep to allow time to move on for access
 cat $testfile
-time2=`_access_time $testfile | tee -a $seq.full` 
+time2=`_access_time $testfile | tee -a $seqres.full`
 
 cd /
 umount $TEST_DIR
 _test_mount
-time3=`_access_time $testfile | tee -a $here/$seq.full`
+time3=`_access_time $testfile | tee -a $here/$seqres.full`
 
 delta1=`expr $time2 - $time1`
 delta2=`expr $time3 - $time1`