summaryrefslogtreecommitdiffstats
path: root/test/comments.test
Commit message (Collapse)AuthorAgeFilesLines
* Tree-wide white-space cleanupsJean Delvare2014-01-201-2/+2
| | | | | | | * Delete blank lines at end of files. * Delete white space at end of lines. * Delete spaces before tab. * Replace 8 spaces by a tab where it makes sense.
* Separate working directory for each test caseJean Delvare2010-01-231-6/+2
| | | | | | | | | | | | | | | | | Let the test suite runner script create a separate working directory for each test. This makes it possible to run several tests in parallel, speeding up testing on SMP systems. It also ensures that a broken test case can no longer cause another test case to fail. At this point, it is possible to run the test suite in parallel, the final result (success or failure) will be correct, however the output is hardly readable because the progress of all tests are interlaced. This will be improved later. As a nice side effect, this means we can drop the setup and clean-up steps that were present in all test cases.
* - GNU patch 2.5 messages differ slightly from the messages of moreAndreas Gruenbacher2006-01-211-1/+1
| | | | | | recent versions. Recognize the old version's output when fixing patch's output in the push command, and also accept the old version's output in the test suite.
* - Fix the test suite so that directories leftover from a previouslyJean Delvare2005-09-231-0/+1
| | | | interrupted test won't cause a test to fail.
* - Fix the test suite so that it doesn't fail if any higher-levelAndreas Gruenbacher2005-09-231-2/+1
| | | | | directory contains a patches/ sub-directory (iow, if quilt itself is patched with quilt).
* - Jean Delvare:Andreas Gruenbacher2005-06-261-1/+1
| | | | | + Add a --version option that prints the program version. + patch_args: Fix comments parsing in series files.
* - Switch from echo to printf for all translations: This is moreAndreas Gruenbacher2004-07-091-6/+39
| | | | | | | | | | | | | | | stable than having expansions in messages that might change independent of the message. - Add print_patch function and always use it when printing patch names. Remove -n options from various scripts and use a global switch QUILT_PATCHES_PREFIX in .quiltrc to decide between patch names with and without directory prefix. Depending on user experience this switch may eventually go away. - Add --diffstat option to refresh command: If given, this option inserts diffstat statistics at the end of the patch header, or refreshes the existing diffstat output. No special tags in the path file (%diffstat or the like) are needed. - Minor fix inserting changelog into RPM specfile.
* - No longer remove common extensions (.dif, .diff, .patch, .gz,Andreas Gruenbacher2004-01-311-3/+3
| | | | | | | .bz2) from patch names. This allows patches in the same series that only differ by extension, and cleans up the scripts a little. Also don't remove extensions when printing patch names. - Remove unused diffstat code.
* - Never reorder files in patches. (Previously the file listAndreas Gruenbacher2003-04-091-0/+47
was run through (sort | uniq) to remove duplicate entries.) - Update test script to new format, and add regression test cases.