X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Ffilesys.test.sh;h=76f633838e31c7d588bfc400deab17bfc264579f;hb=4b059e9764d4fa857029bda034a85f51a85aee8b;hp=28f39351846903e348b2d1e5ae2f3021da4df0d7;hpb=165bb53b405ab95ce76615ab77cee8284df0a36e;p=sbcl.git diff --git a/tests/filesys.test.sh b/tests/filesys.test.sh index 28f3935..76f6338 100644 --- a/tests/filesys.test.sh +++ b/tests/filesys.test.sh @@ -12,11 +12,13 @@ # 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 $testdir dirlinktest ln -s test-1.tmp link-1 ln -s `pwd`/test-2.tmp link-2 ln -s i-do-not-exist link-3 @@ -24,12 +26,14 @@ ln -s link-4 link-4 ln -s link-5 link-6 ln -s `pwd`/link-6 link-5 expected_truenames=\ -"'(#p\"$testdir/link-3\"\ +"'(#p\"$testdir/\"\ + #p\"$testdir/link-3\"\ #p\"$testdir/link-4\"\ #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 <