diff options
author | John Maddock <john@johnmaddock.co.uk> | 2003-02-02 12:13:29 +0000 |
---|---|---|
committer | John Maddock <john@johnmaddock.co.uk> | 2003-02-02 12:13:29 +0000 |
commit | 14a4b3f3ebb9ea6da7c7010961f8a69e543f2746 (patch) | |
tree | e68f3385a8c39641e5ad4d1dc962b902551c32f4 /tools | |
parent | 8c2caa9def09f4ca8701d9e5983cbeea74546123 (diff) | |
download | boost-14a4b3f3ebb9ea6da7c7010961f8a69e543f2746.tar.gz |
Fixed erronious == in test.
[SVN r17160]
Diffstat (limited to 'tools')
-rw-r--r-- | tools/regression/run_tests.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/regression/run_tests.sh b/tools/regression/run_tests.sh index dc8548462e..f04ec1c8f2 100644 --- a/tools/regression/run_tests.sh +++ b/tools/regression/run_tests.sh @@ -93,7 +93,7 @@ if test ! -d $boost_root ; then exit 256 fi fi -if test $cvs_update == yes ; then +if test $cvs_update = yes ; then echo fetching Boost: echo "/1 :pserver:anonymous@cvs.sourceforge.net:2401/cvsroot/boost A" | cat $HOME/.cvspass - | sort | uniq > $HOME/.cvspass cd `dirname $boost_root` @@ -168,3 +168,4 @@ if test $? != 0 ; then fi echo "done!" + |