diff options
author | Pete Wyckoff <pw@padd.com> | 2012-06-27 08:00:59 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-06-27 21:06:35 -0700 |
commit | 4256397aca2b55dfaefbe7639520fbcc34ca93ca (patch) | |
tree | 7bec2875851928ab61b522cefff9049d39ff6647 /t/t9800-git-p4-basic.sh | |
parent | a64f732eb9b22d6260d1c89253a47d6b1a5a3faa (diff) | |
download | git-4256397aca2b55dfaefbe7639520fbcc34ca93ca.tar.gz git-4256397aca2b55dfaefbe7639520fbcc34ca93ca.tar.xz |
git p4 test: check for error message in failed test
Make sure the test fails for the expected reason.
Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9800-git-p4-basic.sh')
-rwxr-xr-x | t/t9800-git-p4-basic.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t9800-git-p4-basic.sh b/t/t9800-git-p4-basic.sh index 7401c2156..84676a114 100755 --- a/t/t9800-git-p4-basic.sh +++ b/t/t9800-git-p4-basic.sh @@ -45,7 +45,8 @@ test_expect_success 'git p4 sync uninitialized repo' ' test_when_finished cleanup_git && ( cd "$git" && - test_must_fail git p4 sync + test_must_fail git p4 sync 2>errs && + test_i18ngrep "Perhaps you never did" errs ) ' |