diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-12-09 14:51:51 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-12-10 03:04:06 +0100 |
commit | 91438920b465ec7455dd1cd700bbe8ec5050b3f9 (patch) | |
tree | c11b7424a81b0cf84b33132a97b98f52380b409b /lib/subunit/shell/README | |
parent | 297434055e2e2b28a2f9cacc09a30786edf8903a (diff) | |
download | samba-91438920b465ec7455dd1cd700bbe8ec5050b3f9.tar.gz samba-91438920b465ec7455dd1cd700bbe8ec5050b3f9.tar.bz2 samba-91438920b465ec7455dd1cd700bbe8ec5050b3f9.zip |
subunit: Update to newer upstream snapshot.
Diffstat (limited to 'lib/subunit/shell/README')
-rw-r--r-- | lib/subunit/shell/README | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/subunit/shell/README b/lib/subunit/shell/README index 5f7cf37626..af894a2bd3 100644 --- a/lib/subunit/shell/README +++ b/lib/subunit/shell/README @@ -38,7 +38,7 @@ a manually written test using the bindings might look like: subunit_start_test "test name" # determine if test passes or fails result=$(something) -if [ $result -eq 0 ]; then +if [ $result == 0 ]; then subunit_pass_test "test name" else subunit_fail_test "test name" <<END |