Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-17 | tests: substitute the single-program $VERBOSE/--version uses | Jim Meyering | |
Automatically make all of the changes like this: -test "$VERBOSE" = yes && chgrp --version +print_ver_ chgrp git grep -l 'VERBOSE.*--version'|xargs perl -pi -e \ 's/test "\$VERBOSE" = yes && (\w+) --version/print_ver_ $1/' | |||
2010-11-10 | tests: fix comments and --version invocation in new test | Jim Meyering | |
* tests/misc/csplit-1000: Fix comments and --version invocation. | |||
2010-11-10 | csplit: avoid buffer overrun when writing more than 999 files | Jim Meyering | |
Without this fix, seq 1000 | csplit - /./ '{*}' would write the NUL-terminated file name, xx1000, into a buffer of size 6. * src/csplit.c (main): Use properly sized file name buffer. * NEWS (Bug fixes): Mention it. * tests/misc/csplit-1000: New test to trigger the bug. * tests/Makefile.am (TESTS): Add misc/csplit-1000. |