Junio C Hamano <gitster@xxxxxxxxx> writes: >> -test_expect_success 'temporary filenames are used with mergetool.writeToTemp' ' >> +test_lazy_prereq MKTEMP ' >> + tempdir=$(mktemp -d -t foo.XXX) && >> + test -d "$tempdir" >> +' > > This makes me wonder what would happen to the leftover directory, > though. Would it be a better idea to clean it up as well, i.e. > > tempdir=$(mktemp -d -t foo.XXXXXX) && > test -d "$tempdir" && > rmdir "$tempdir" It turns out that this is not necessary since day one of lazy_prereq. I forgot what I wrote in 04083f27 (test: allow prerequisite to be evaluated lazily, 2012-07-26). Thanks. -- 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