Update of /cvsroot/winbash/winbash/tests
In directory usw-pr-cvs1:/tmp/cvs-serv23905/tests
Modified Files:
glob-test run-all x xx
Log Message:
Applied GNU bash 1.14.5 diffs
Index: glob-test
===================================================================
RCS file: /cvsroot/winbash/winbash/tests/glob-test,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- glob-test 9 Mar 2002 16:05:45 -0000 1.3
+++ glob-test 11 Mar 2002 01:47:05 -0000 1.4
@@ -9,7 +9,7 @@
TESTDIR=/tmp/glob-test
rm -rf $TESTDIR
mkdir $TESTDIR
-cd $TESTDIR
+builtin cd $TESTDIR
touch a b c d abc abd abe bb bcd ca cb dd de
mkdir bdir
@@ -174,6 +174,6 @@
;;
esac
-cd /
-/bin/rm -rf $TESTDIR
+builtin cd /
+rm -rf $TESTDIR
exit 0
Index: run-all
===================================================================
RCS file: /cvsroot/winbash/winbash/tests/run-all,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- run-all 9 Mar 2002 04:43:17 -0000 1.2
+++ run-all 11 Mar 2002 01:47:05 -0000 1.3
@@ -1,7 +1,8 @@
#! /bin/sh
-PATH=$PATH:.
+PATH=.:$PATH # just to get the right version of printenv
export PATH
+unset ENV
echo Any output from any test indicates an anomaly worth investigating
for x in run-*
Index: x
===================================================================
RCS file: /cvsroot/winbash/winbash/tests/x,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- x 9 Mar 2002 04:43:17 -0000 1.2
+++ x 11 Mar 2002 01:47:05 -0000 1.3
@@ -1,2 +1,2 @@
-./dollar-star.sh: recho: command not found
-./dollar-at.sh: recho: command not found
+./dollar-star.sh: recho: command not found
+./dollar-at.sh: recho: command not found
Index: xx
===================================================================
RCS file: /cvsroot/winbash/winbash/tests/xx,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- xx 9 Mar 2002 04:43:17 -0000 1.2
+++ xx 11 Mar 2002 01:47:05 -0000 1.3
@@ -1,12 +1,5 @@
-3 4
-5 6 7 8 9
-7 8 9
-/usr/chet
-/usr/chet
-/a/b/c
-/usr/chet 7
-/a/b/c 9 /a/b/c
-/a/b/c 9 /a/b/c
-/a/b/c /a/b/c
-1 2
-1 1
+`Say' echos its argument. Its return value is of no interest.
+`Truth' echos its argument and returns a TRUE result.
+`False' echos its argument and returns a FALSE result.
+
+ Truth 1 && Truth 2 || Say 3 output=
\ No newline at end of file
|