diff options
author | SZEDER Gábor <szeder.dev@gmail.com> | 2018-02-24 00:39:49 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-02-28 21:57:51 +0100 |
commit | 582750692883b505ccff9099138ce4ec18c3c6dc (patch) | |
tree | 0e727fb518e741a497f3609802708e89a9c7313d /t/t1510-repo-setup.sh | |
parent | t9903-bash-prompt: don't check the stderr of __git_ps1() (diff) | |
download | git-582750692883b505ccff9099138ce4ec18c3c6dc.tar.xz git-582750692883b505ccff9099138ce4ec18c3c6dc.zip |
t1510-repo-setup: mark as untraceable with '-x'
't1510-repo-setup.sh' checks the stderr of nested function calls way
too many times, resulting in several failures when using '-x' tracing,
unless it's executed with a Bash version supporting BASH_XTRACEFD.
Maybe someday we will clear up this test script, but until then mark
it as 'test_untraceable'.
After this change
make GIT_TEST_OPTS='-x --verbose-log' test
finally fully passes without setting TEST_SHELL_PATH to Bash.
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rwxr-xr-x | t/t1510-repo-setup.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t1510-repo-setup.sh b/t/t1510-repo-setup.sh index 13ae12dfa7..e6854b828e 100755 --- a/t/t1510-repo-setup.sh +++ b/t/t1510-repo-setup.sh @@ -39,6 +39,10 @@ A few rules for repo setup: 11. When user's cwd is outside worktree, cwd remains unchanged, prefix is NULL. " + +# This test heavily relies on the standard error of nested function calls. +test_untraceable=UnfortunatelyYes + . ./test-lib.sh here=$(pwd) |