summaryrefslogtreecommitdiff
path: root/t/t6017-rev-list-stdin.sh
AgeCommit message (Collapse)Author
2011-05-11setup_revisions(): take pathspec from command line and --stdin correctlyJunio C Hamano
When the command line has "--" disambiguator, we take the remainder of argv[] as "prune_data", but when --stdin is given at the same time, we need to append to the existing prune_data and end up attempting to realloc(3) it. That would not work. Fix it by consistently using append_prune_data() throughout the input processing. Also avoid counting the number of existing paths in the function over and over again. Signed-off-by: Junio C Hamano <gitster@pobox.com>
2009-11-23Add trivial tests for --stdin option to log familyJunio C Hamano
Signed-off-by: Junio C Hamano <gitster@pobox.com>