blkid/test_probe.in: Fix temporary files handling

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>
bitmap-optimize
Dmitry V. Levin 2007-10-20 22:08:51 +04:00 committed by Theodore Ts'o
parent d9039ae0ff
commit 3b06802bbb
1 changed files with 4 additions and 4 deletions

View 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