>From 5bc65fbb581cefde6b8c0fb47db5604850cd326b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= Date: Wed, 30 Dec 2009 22:19:09 +0100 Subject: [PATCH 2/2] Add non-regression test to verify that quilt remembers QUILT_PATCHES/QUILT_SERIES --- test/remember-locations.test | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 insertions(+), 0 deletions(-) create mode 100644 test/remember-locations.test diff --git a/test/remember-locations.test b/test/remember-locations.test new file mode 100644 index 0000000..c1b340c --- /dev/null +++ b/test/remember-locations.test @@ -0,0 +1,30 @@ + $ rm -rf d + $ mkdir -p d/my/changes + $ cd d + + $ export QUILT_PATCHES=my/changes + $ export QUILT_SERIES=patchlist + $ quilt new mychange1 + > Patch my/changes/mychange1 is now on top + $ unset QUILT_PATCHES + $ unset QUILT_SERIES + $ cat .pc/.quilt_patches + > my/changes + $ cat .pc/.quilt_series + > patchlist + $ cat my/changes/patchlist + > mychange1 + + # Verify that the custom location is still used even + # if QUILT_PATCHES is not set + $ quilt new mychange2 + > Patch my/changes/mychange2 is now on top + # Verify that the root directory can be identified even + # without QUILT_PATCHES with the .pc directory + $ cd my + $ quilt applied + > ../my/changes/mychange1 + > ../my/changes/mychange2 + + $ cd ../.. + $ rm -rf d -- 1.6.5.7