diff options
author | Allan McRae <allan@archlinux.org> | 2010-05-30 14:41:59 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-06-02 13:14:51 -0500 |
commit | 844d82fad811626b0b8e54db60ee4b3ea32a3cb9 (patch) | |
tree | d6ae52c513db060b1f81227c34bfb366ea3fa58c /Makefile.am | |
parent | ccea1b55766200c1ab371cf0f3b38c4cebdb2063 (diff) | |
download | pacman-844d82fad811626b0b8e54db60ee4b3ea32a3cb9.tar.xz |
Move pacman test suite
Move the test suite to test/pacman in order to make a logical
location for a future makepkg test suite.
Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 2f5e7a7b..eb80a5f1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = lib/libalpm src/util src/pacman scripts etc po pactest contrib +SUBDIRS = lib/libalpm src/util src/pacman scripts etc po test/pacman contrib if WANT_DOC SUBDIRS += doc endif @@ -15,12 +15,12 @@ pkgdatadir = ${datadir}/${PACKAGE} dist_pkgdata_DATA = PKGBUILD.proto PKGBUILD-split.proto proto.install ChangeLog.proto # run the pactest test suite and vercmp tests -check-local: pactest src/pacman src/util - $(PYTHON) $(top_srcdir)/pactest/pactest.py --debug=1 \ - --test $(top_srcdir)/pactest/tests/*.py \ +check-local: test/pacman src/pacman src/util + $(PYTHON) $(top_srcdir)/test/pacman/pactest.py --debug=1 \ + --test $(top_srcdir)/test/pacman/tests/*.py \ -p $(top_builddir)/src/pacman/pacman rm -rf $(top_builddir)/root - $(SH) $(top_srcdir)/pactest/vercmptest.sh \ + $(SH) $(top_srcdir)/test/pacman/vercmptest.sh \ $(top_builddir)/src/util/vercmp # create the pacman DB and cache directories upon install |