diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-04-18 17:28:47 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-04-18 17:28:47 +0100 |
commit | 58a5b5bd944655b028c915a91dad2220176986db (patch) | |
tree | 78ed5164b5ab14995628309f8e5b1f0548c2e7ea /tests | |
parent | 5d6a323b9358bb01233681b784fa67414a5d2c6d (diff) | |
download | libguestfs-58a5b5bd944655b028c915a91dad2220176986db.tar.gz libguestfs-58a5b5bd944655b028c915a91dad2220176986db.tar.xz libguestfs-58a5b5bd944655b028c915a91dad2220176986db.zip |
extra-tests: Check if valgrind supports --vgdb=no option.
This option didn't exist in RHEL 6 valgrind.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/extra/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/extra/Makefile.am b/tests/extra/Makefile.am index 2085cc80..911c83eb 100644 --- a/tests/extra/Makefile.am +++ b/tests/extra/Makefile.am @@ -50,12 +50,12 @@ EXTRA_DIST = pick-guests.pl suppressions -VG = valgrind \ +VG = $(VALGRIND) \ + $(VALGRIND_NO_VGDB) \ --log-file=$(abs_builddir)/valgrind.log \ --leak-check=full \ --error-exitcode=119 \ - --suppressions=$(abs_srcdir)/suppressions \ - --vgdb=no + --suppressions=$(abs_srcdir)/suppressions RUN_VG = $(abs_top_builddir)/run $(VG) export LIBVIRT_DEFAULT_URI = \ |