summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2004-07-02 01:14:07 +0000
committerAndreas Gruenbacher <agruen@suse.de>2004-07-02 01:14:07 +0000
commit00227c3952cd1618d0bd6a6a2231046b3153c14e (patch)
tree3e59ec140eca2924e8b2574de83f100a2940109d /test
parent162d238c1d40b6e6eace4396f9ac7cf91685fa30 (diff)
downloadquilt-00227c3952cd1618d0bd6a6a2231046b3153c14e.tar.gz
- Several Fixes from Joe Green <jgreen@mvista.com>:
+ Another sed \t\r problem, in Makefile.in + Bad error message on "quilt delete" of non-existent patch + "import" doesn't remove all leading components on patch file + Misspelling in "import" help text - With using the GNU diff --label option, file timestamps disappeared. Specify the timestamps in --label by hand: This gives us added flexibility when generating patches; we may some day want to support diff styles other than unified. Also reported by Joe Green. - Add --backup option to quilt refresh. - Update documentation to QUILT_${COMMAND}_ARGS in .quiltrc. (The old settings still work but they are no longer documented.) - Update German translation.
Diffstat (limited to 'test')
-rw-r--r--test/Makefile2
-rw-r--r--test/test.quiltrc3
2 files changed, 3 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index 0595d2e..16c34b4 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -6,5 +6,5 @@ all: $(patsubst %,_test_%,$(TESTS))
$(patsubst %,_test_%,$(TESTS)):
@test=$(patsubst _test_%,%,$@); \
echo "[$$test]" ; \
- export QUILTRC=test.quiltrc ; \
+ export QUILTRC=$(CURDIR)/test.quiltrc ; \
./run $$test
diff --git a/test/test.quiltrc b/test/test.quiltrc
index 468812d..ba458a6 100644
--- a/test/test.quiltrc
+++ b/test/test.quiltrc
@@ -1,2 +1,3 @@
# Define this to generate diffs without timestamps.
-QUILT_NO_DIFF_TIMESTAMPS=yes
+QUILT_DIFF_ARGS="--no-timestamps"
+QUILT_REFRESH_ARGS="--no-timestamps"