X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Ffilesys.test.sh;h=4d78f7d2be66313e4e14ffc971b3b0b9117bf5e1;hb=079ef9dad558ca07cb8178ef428bf738112174fa;hp=62f900a915055fabee85b39169b703697a874add;hpb=c1aeac123df223746249567a9c0d2f656d1222cb;p=sbcl.git diff --git a/tests/filesys.test.sh b/tests/filesys.test.sh index 62f900a..4d78f7d 100644 --- a/tests/filesys.test.sh +++ b/tests/filesys.test.sh @@ -12,10 +12,11 @@ # more information. # Test DIRECTORY and TRUENAME. -testdir=`pwd`"/filesys-test-$$" +testdir=`/bin/pwd`"/filesys-test-$$" mkdir $testdir echo this is a test > $testdir/test-1.tmp echo this is a test > $testdir/test-2.tmp +echo this is a test > $testdir/wild\?test.tmp cd $testdir ln -s test-1.tmp link-1 ln -s `pwd`/test-2.tmp link-2 @@ -29,7 +30,8 @@ expected_truenames=\ #p\"$testdir/link-5\"\ #p\"$testdir/link-6\"\ #p\"$testdir/test-1.tmp\"\ - #p\"$testdir/test-2.tmp\")" + #p\"$testdir/test-2.tmp\"\ + #p\"$testdir/wild\\\\?test.tmp\")" $SBCL <