summaryrefslogtreecommitdiffstats
path: root/test/missing.test
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2005-06-21 21:57:14 +0000
committerAndreas Gruenbacher <agruen@suse.de>2005-06-21 21:57:14 +0000
commitdd0f1ff558ce1d329174f58d8b0bef40e36f8968 (patch)
treef01d0878de42d5f3fb8ed6232849f26a9e3dcad5 /test/missing.test
parent31a5851d6372712fa6bafd4a6081f21ecee1c570 (diff)
downloadquilt-dd0f1ff558ce1d329174f58d8b0bef40e36f8968.tar.gz
- add command: "File %s added to patch %s" message goes to stdout
and not to stderr (Jean Delvare). - Don't fail when popping missing patches (Jerome Lacoste, Jean Delvare, I).
Diffstat (limited to 'test/missing.test')
-rw-r--r--test/missing.test22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/missing.test b/test/missing.test
new file mode 100644
index 0000000..2ef8502
--- /dev/null
+++ b/test/missing.test
@@ -0,0 +1,22 @@
+ $ mkdir d
+ $ cd d
+
+ $ mkdir patches
+ $ cat > patches/series
+ < missing1.diff
+ < missing2.diff
+
+ $ quilt push -qa
+ > Applying patch patches/missing1.diff
+ > Patch patches/missing1.diff does not exist, applied
+ > Applying patch patches/missing2.diff
+ > Patch patches/missing2.diff does not exist, applied
+ > Now at patch patches/missing2.diff
+
+ $ quilt pop -qa
+ > Patch patches/missing2.diff appears to be empty, removing
+ > Patch patches/missing1.diff appears to be empty, removing
+ > No patches applied
+
+ $ cd ..
+ $ rm -rf d