OSDN Git Service

blkid/test_probe.in: Fix temporary files handling
authorDmitry V. Levin <ldv@altlinux.org>
Sat, 20 Oct 2007 18:08:51 +0000 (22:08 +0400)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 29 Oct 2007 14:59:01 +0000 (10:59 -0400)
Avoid placing files with predictable names in /tmp.

Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
lib/blkid/test_probe.in

index 02d42bb..ce8c42f 100644 (file)
@@ -8,7 +8,7 @@ if test "$TESTS"x = x ; then
        done
 fi
 
-mkdir -p tests
+mkdir -p tests/tmp
 
 for i in $TESTS
 do
@@ -19,9 +19,9 @@ do
                echo "non-existent"
                continue
        fi
-       bunzip2 < $SRCDIR/tests/$i.img.bz2 > /tmp/test.img.$$
-       ./tst_probe /tmp/test.img.$$ > tests/$i.out
-       /bin/rm -f /tmp/test.img.$$ tests/$i.ok tests/$i.failed
+       bunzip2 < $SRCDIR/tests/$i.img.bz2 > tests/tmp/test.img.$$
+       ./tst_probe tests/tmp/test.img.$$ > tests/$i.out
+       /bin/rm -f tests/tmp/test.img.$$ tests/$i.ok tests/$i.failed
        cmp -s tests/$i.out $SRCDIR/tests/$i.results
        if [ $? = 0 ];  then
                echo ok