summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5c8e141)
raw | patch | inline | side by side (parent: 5c8e141)
author | Jonathan Nieder <jrnieder@gmail.com> | |
Tue, 31 Aug 2010 17:26:57 +0000 (12:26 -0500) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 31 Aug 2010 18:40:20 +0000 (11:40 -0700) |
Detect and report hard-to-notice spelling mistakes like
test_might_fail "git config --unset whatever"
(the extra quotes prevent the shell from running git as intended;
instead, the shell looks for a "git config --unset whatever" file).
Cc: Jeff King <peff@peff.net>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
test_might_fail "git config --unset whatever"
(the extra quotes prevent the shell from running git as intended;
instead, the shell looks for a "git config --unset whatever" file).
Cc: Jeff King <peff@peff.net>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/test-lib.sh | patch | blob | history |
diff --git a/t/test-lib.sh b/t/test-lib.sh
index 16ceb5316fbdc39225158cd3be109ab727a3f76f..7da490de01063083c87f5f282408f1fdf1fa4ecb 100644 (file)
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
if test $exit_code -gt 129 -a $exit_code -le 192; then
echo >&2 "test_might_fail: died by signal: $*"
return 1
+ elif test $exit_code = 127; then
+ echo >&2 "test_might_fail: command not found: $*"
+ return 1
fi
return 0
}