Signed-off-by: Ramsay Jones <ram...@ramsayjones.plus.com>
---

Hi Jeff,

Can we squash this into your fixup?

ATB,
Ramsay Jones

 t/test-lib-functions.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh
index 85aeaf9..2bb639e 100644
--- a/t/test-lib-functions.sh
+++ b/t/test-lib-functions.sh
@@ -605,22 +605,22 @@ test_must_fail () {
        esac
        "$@"
        exit_code=$?
-       if test $exit_code = 0 && ! test_list_contains "$_test_ok" success
+       if test $exit_code -eq 0 && ! test_list_contains "$_test_ok" success
        then
                echo >&2 "test_must_fail: command succeeded: $*"
                return 1
-       elif test $exit_code = 141 && test_list_contains "$_test_ok" sigpipe
+       elif test $exit_code -eq 141 && test_list_contains "$_test_ok" sigpipe
        then
                return 0
        elif test $exit_code -gt 129 && test $exit_code -le 192
        then
                echo >&2 "test_must_fail: died by signal: $*"
                return 1
-       elif test $exit_code = 127
+       elif test $exit_code -eq 127
        then
                echo >&2 "test_must_fail: command not found: $*"
                return 1
-       elif test $exit_code = 126
+       elif test $exit_code -eq 126
        then
                echo >&2 "test_must_fail: valgrind error: $*"
                return 1
-- 
2.6.0
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to