Commit a2cb86 ("git_mkstemps: correctly test return value of open()", 12 Jul 2013) fixes a bug regarding testing the return of an open() call for success/failure. Add a testsuite test for that fix. The test exercises a situation where that open() is known to return 0. Signed-off-by: Dale Worley <worley@xxxxxxxxxxx> --- This version of the patch cleans up a number of errors in my previous version (which were ultimately due to my faulty updating of my master branch). The commit that added the open() test is now correctly described. Since the test was not present in the test suite at all, the patch is described as adding the test rather than improving it. a2cb86 is on branch tr/fd-gotcha-fixes, but that has been merged into master now. (Thanks for your patience with this.) Dale t/t0070-fundamental.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/t/t0070-fundamental.sh b/t/t0070-fundamental.sh index 986b2a8..d427f3a 100755 --- a/t/t0070-fundamental.sh +++ b/t/t0070-fundamental.sh @@ -25,6 +25,13 @@ test_expect_success POSIXPERM,SANITY 'mktemp to unwritable directory prints file grep "cannotwrite/test" err ' +test_expect_success 'git_mkstemps_mode does not fail if fd 0 is not open' ' + git init && + echo Test. >test-file && + git add test-file && + git commit -m Message. <&- +' + test_expect_success 'check for a bug in the regex routines' ' # if this test fails, re-build git with NO_REGEX=1 test-regex -- 1.8.4.rc1.24.gd407a5c -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html