summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAndrew Gregory <andrew.gregory.8@gmail.com>2014-02-03 12:05:48 -0500
committerAllan McRae <allan@archlinux.org>2014-02-04 13:45:11 +1000
commit953808a9ee86fc5bcd63f4458662a5c73ccf37d1 (patch)
treefaf24be94409e3e4a4c7d413d8bc0d3deea93bc8 /test
parent4763341ea11c9e33f8d8f0f112659fae5bc74aa9 (diff)
downloadpacman-953808a9ee86fc5bcd63f4458662a5c73ccf37d1.tar.xz
pmtest: add memory check to tests with valgrind
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'test')
-rw-r--r--test/pacman/README5
-rw-r--r--test/pacman/pmtest.py1
2 files changed, 6 insertions, 0 deletions
diff --git a/test/pacman/README b/test/pacman/README
index 2516a8ad..8d8354ab 100644
--- a/test/pacman/README
+++ b/test/pacman/README
@@ -62,6 +62,11 @@ This example will run all tests from the "tests" directory.
Use the "help" option to get the full list of parameters:
./pactest.py --help
+When run with the `--valgrind' option, an additional rule will be added to all
+tests to check for memory leaks. To use `--valgrind' when running the full
+test suite, run:
+ make PY_LOG_FLAGS=--valgrind check
+
The following pieces of software are required to run the pactest suite:
fakeroot (required to run as non-root user)
diff --git a/test/pacman/pmtest.py b/test/pacman/pmtest.py
index e780a6d1..7079b78e 100644
--- a/test/pacman/pmtest.py
+++ b/test/pacman/pmtest.py
@@ -224,6 +224,7 @@ class pmtest(object):
"--child-silent-after-fork=yes",
"--log-file=%s" % os.path.join(self.root, "var/log/valgrind"),
"--suppressions=%s" % suppfile])
+ self.addrule("FILE_EMPTY=var/log/valgrind")
cmd.extend([pacman["bin"],
"--config", os.path.join(self.root, util.PACCONF),
"--root", self.root,