Signed-off-by: Elijah Newren <newren@xxxxxxxxx> --- It looks like the 19 rev-list testcases (t6000*-t6019*) are all fairly specific, and I didn't see one where this testcase seemed to make sense; or perhaps I just missed it. I just created this 20th file to hold all other miscellaneous rev-list testcases; if it does make more sense in one of the other existing files, just let me know. t/t6000-rev-list-misc.sh | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) create mode 100755 t/t6000-rev-list-misc.sh diff --git a/t/t6000-rev-list-misc.sh b/t/t6000-rev-list-misc.sh new file mode 100755 index 0000000..2c403ac --- /dev/null +++ b/t/t6000-rev-list-misc.sh @@ -0,0 +1,23 @@ +#!/bin/sh + +test_description='miscellaneous rev-list tests' + +. ./test-lib.sh + +test_expect_success setup ' + + echo content1 > wanted_file && + echo content2 > unwanted_file && + git add wanted_file unwanted_file && + git commit -mone +' + +test_expect_failure 'rev-list --objects heeds pathspecs' ' + + git rev-list --objects HEAD -- wanted_file >output && + grep wanted_file output && + ! grep unwanted_file output + +' + +test_done -- 1.7.2.2.39.gf7e23 -- 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