diff options
author | Dan McGee <dan@archlinux.org> | 2007-03-25 17:37:42 +0000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-03-25 17:37:42 +0000 |
commit | 58fe79eef64fb87b2553e6514a47beaa6d0249c1 (patch) | |
tree | a5715cc4c84367a4d04e2c0454b421c7ebe45312 /pactest | |
parent | a07b490344483ddee2980214ef470cf4defdda3f (diff) | |
download | pacman-58fe79eef64fb87b2553e6514a47beaa6d0249c1.tar.xz |
* Fix bug where 'makepkg -L' doesn't stop on build failure.v3.0.0
Andrew Fyfe <andrew@neptune-one.net>
* Add testing to etc/pacman.d/.cvsignore
* Fix scriptlet001.py test to work during 'make check'.
Diffstat (limited to 'pactest')
-rw-r--r-- | pactest/tests/scriptlet001.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pactest/tests/scriptlet001.py b/pactest/tests/scriptlet001.py index a749a114..73bb7691 100644 --- a/pactest/tests/scriptlet001.py +++ b/pactest/tests/scriptlet001.py @@ -8,7 +8,8 @@ p1.install['pre_install'] = "ls /etc"; p1.install['post_install'] = "ls /etc"; self.addpkg(p1) -self.args = "-U %s" % p1.filename() +# --debug is necessary to check PACMAN_OUTPUT +self.args = "--debug -U %s" % p1.filename() self.addrule("PACMAN_RETCODE=0") self.addrule("PACMAN_OUTPUT=pre_install") |