]> Zhao Yanbai Git Server - minix.git/commitdiff
fix shell tests - no cc or aal
authorBen Gras <ben@minix3.org>
Thu, 16 Feb 2012 12:10:39 +0000 (12:10 +0000)
committerBen Gras <ben@minix3.org>
Thu, 16 Feb 2012 12:10:39 +0000 (12:10 +0000)
test/testsh1.sh
test/testsh2.sh

index 203e9996a1b9224b2125cdb35010fd81b9bd6ca6..2ebd1543c8bc4f7e43a59e0907126ea2a9f8f5c5 100755 (executable)
@@ -39,28 +39,6 @@ if cmp -s x1 x2; then : ; else echo Error on cat test 1; fi
 cat <y >z
 if cmp -s y z; then : ; else echo Error on cat test 2; fi
 
-#Test aal
-cat passwd >p
-cp passwd q
-if cmp -s p q; then : ; else echo Error on aal test 1; fi
-date >r
-aal r x.a p q r 2>/dev/null
-aal r x.a /bin/cp
-aal r x.a /bin/cat
-rm p q
-mv r R
-aal x x.a
-if cmp -s p /etc/passwd; then : ; else Error on aal test 2; fi
-if cmp -s q /etc/passwd; then : ; else Error on aal test 3; fi
-if cmp -s r R; then : ; else Error on aal test 4; fi
-if cmp -s cp /bin/cp; then : ; else Error on aal test 5; fi
-if cmp -s cat /bin/cat; then : ; else Error on aal test 6; fi
-rm cp cat p q r
-aal d x.a r >/dev/null
-aal x x.a
-if test -r r; then echo Error on aal test 7; fi
-rm -rf p q r R
-
 #Test basename
 if test `basename /usr/ast/foo.c .c` != 'foo'
    then echo Error on basename test 1
index fcfd7e3e9791a7e9bfc695b51d3ea3f315a39fa7..ede8aae2efd84f203329faa6e187fd6895c8d3f7 100755 (executable)
@@ -6,7 +6,7 @@ PATH=:/bin:/usr/bin:/usr/pkg/bin
 export PATH
 
 # CC="exec cc -wo -F"          # nonstandard flags for ACK :-(
-CC=cc
+CC=clang
 
 ARCH=`arch`