diff options
author | Björn Jacke <bj@sernet.de> | 2010-12-02 10:29:18 +0100 |
---|---|---|
committer | Bjoern Jacke <bj@sernet.de> | 2010-12-02 10:36:06 +0100 |
commit | a42c731a4bff181f61e29cd16464ea240f76eeeb (patch) | |
tree | 4b453b44dcbd9e232466eb24ccafe39b3ea83615 /source4 | |
parent | 72a322ed9c2dd3eb0177f91fac8b4368938695ac (diff) | |
download | samba-a42c731a4bff181f61e29cd16464ea240f76eeeb.tar.gz samba-a42c731a4bff181f61e29cd16464ea240f76eeeb.tar.bz2 samba-a42c731a4bff181f61e29cd16464ea240f76eeeb.zip |
s4/ldb: fix shell syntax error in test script
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/lib/ldb/tests/test-schema.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb/tests/test-schema.sh b/source4/lib/ldb/tests/test-schema.sh index 2f10fb45e2..97841844db 100755 --- a/source4/lib/ldb/tests/test-schema.sh +++ b/source4/lib/ldb/tests/test-schema.sh @@ -19,12 +19,12 @@ $VALGRIND bin/ldbmodify $LDBDIR/tests/schema-tests/schema-mod-test-1.ldif || exi $VALGRIND bin/ldbmodify $LDBDIR/tests/schema-tests/schema-mod-test-2.ldif || exit 1 $VALGRIND bin/ldbmodify $LDBDIR/tests/schema-tests/schema-mod-test-3.ldif || exit 1 $VALGRIND bin/ldbmodify $LDBDIR/tests/schema-tests/schema-mod-test-4.ldif -if [ "$?" == "0" ]; then +if [ "$?" = "0" ]; then echo "test failed!" exit 1 fi $VALGRIND bin/ldbmodify $LDBDIR/tests/schema-tests/schema-mod-test-5.ldif -if [ "$?" == "0" ]; then +if [ "$?" = "0" ]; then echo "test failed!" exit 1 fi |