summaryrefslogtreecommitdiffstats
path: root/test/setup.test
Commit message (Collapse)AuthorAgeFilesLines
* test/setup: Fix for GNU patch version <= 2.5.9Jean Delvare2014-02-261-3/+5
| | | | | | Recent versions of GNU diff will quote file names which include a space, but GNU patch version 2.5.9 and older do not support that. So strip the quotes to let the test succeed.
* setup: Check for existing directories before unpackingJean Delvare2012-10-251-1/+6
| | | | Check for existing directories before unpacking.
* setup: Run create_dbJean Delvare2012-10-251-0/+26
| | | | | Run create_db() as part of quilt setup, so that $QUILT_PATCHES and $QUILT_SERIES are recorded for future quilt commands.
* setup.test: Increase test coverageJean Delvare2012-02-171-3/+44
|
* Separate working directory for each test caseJean Delvare2010-01-231-5/+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.
* - quilt setup: replace the --path argument with --sourcedir forAndreas Gruenbacher2007-08-081-6/+6
| | | | | | | | specifying the location of the package sources. Pass the source dir to inspect as well. Fix a test suite bug for quilt setup. Minor cosmetic changes. - Fix a quilt mail test suite bug: specify a dummy --sender in test.quiltrc.
* - quilt/setup.in: Add --path option for defining a tarball searchAndreas Gruenbacher2006-02-111-0/+52
path. Fix a bug in check_for_existing_files. When a series file is given as an argument, symlink to that series file in the same way as we symlink to the patches. Improve the symlink creation algorithm. Add testcase test/setup.test.