diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-07-21 10:50:40 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-07-26 15:47:16 +0100 |
commit | 116d366b1f6a29efa93bfa7defe0164f0085f49a (patch) | |
tree | 5ecb56ef5ae358686c21832cfbba888c3db0b237 | |
parent | 0b7de697a4273dbcce175085aef45ef62e964fcc (diff) | |
download | libguestfs-116d366b1f6a29efa93bfa7defe0164f0085f49a.tar.gz libguestfs-116d366b1f6a29efa93bfa7defe0164f0085f49a.tar.xz libguestfs-116d366b1f6a29efa93bfa7defe0164f0085f49a.zip |
build: Allow 'make quickcheck' test-tool args to be overridden.
A typical use for this is for packagers who want to increase
the default timeout:
make quickcheck QUICKCHECK_TEST_TOOL_ARGS="-t 300"
(cherry picked from commit 806b6e01506dea4eae68ac3e468d9398d63cafcb)
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index e1ddf0da..ca317278 100644 --- a/Makefile.am +++ b/Makefile.am @@ -219,7 +219,7 @@ CLEANFILES = \ # is NOT a substitute for proper testing! quickcheck: - ./run test-tool/libguestfs-test-tool + ./run test-tool/libguestfs-test-tool $(QUICKCHECK_TEST_TOOL_ARGS) # Make binary distribution. |