]> Zhao Yanbai Git Server - minix.git/commitdiff
Fix grep test 4 in testsh1
authorArun Thomas <arun@minix3.org>
Sun, 27 Jun 2010 10:59:14 +0000 (10:59 +0000)
committerArun Thomas <arun@minix3.org>
Sun, 27 Jun 2010 10:59:14 +0000 (10:59 +0000)
test/testsh1.sh

index 10bdc61c59f363501278265dd20d6d57b18b5637..eccff8f34bb4067748d1d74e2a7110d1fa278389 100755 (executable)
@@ -151,8 +151,8 @@ grep "a" ALPHA >x
 if test -s x; then echo Error on grep test 2; fi
 grep -v "0" alpha >x
 if cmp -s x alpha; then : ; else echo Error on grep test 3; fi
-grep -s "a" alpha >x
-if test -s x; then echo Error on grep test 4; fi
+grep -s "a" XXX_nonexistent_file_XXX >x
+if test -s x; then echo "Error on grep test 4"; fi
 if grep -s "a" alpha >x; then : else echo Error on grep test 5; fi
 if grep -s "a" ALPHA >x; then echo Error on grep test 6; fi