diff options
author | Pete Wyckoff <pw@padd.com> | 2014-01-21 18:16:42 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-01-22 08:05:26 -0800 |
commit | 0577849d2b2bf21b0faedd30938d663389db7926 (patch) | |
tree | 725d2c9c679eb0353c458adb1da9707630d8fa21 /t | |
parent | git p4 test: explicitly check p4 wildcard delete (diff) | |
download | tgif-0577849d2b2bf21b0faedd30938d663389db7926.tar.xz |
git p4 test: is_cli_file_writeable succeeds
Commit e9df0f9 (git p4: cygwin p4 client does not mark read-only,
2013-01-26) fixed a problem with "test -w" on cygwin, but mistakenly
marked the new test as failing. Fix this.
Signed-off-by: Pete Wyckoff <pw@padd.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t9807-git-p4-submit.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9807-git-p4-submit.sh b/t/t9807-git-p4-submit.sh index 1fb7bc7cf9..4caf36e006 100755 --- a/t/t9807-git-p4-submit.sh +++ b/t/t9807-git-p4-submit.sh @@ -17,7 +17,7 @@ test_expect_success 'init depot' ' ) ' -test_expect_failure 'is_cli_file_writeable function' ' +test_expect_success 'is_cli_file_writeable function' ' ( cd "$cli" && echo a >a && |