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-27 15:00:03 +0100 |
commit | d5cc91cf18b2c08b0041345a69fe137d2cb6085d (patch) | |
tree | ce848b9fc5f1a0390b179c4180cc4a60a48782fa | |
parent | 880374c6df2a694bb1457231f110d9ef7035e5b7 (diff) | |
download | libguestfs-d5cc91cf18b2c08b0041345a69fe137d2cb6085d.tar.gz libguestfs-d5cc91cf18b2c08b0041345a69fe137d2cb6085d.tar.xz libguestfs-d5cc91cf18b2c08b0041345a69fe137d2cb6085d.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 acd8efc3..c6a02e14 100644 --- a/Makefile.am +++ b/Makefile.am @@ -192,7 +192,7 @@ CLEANFILES = \ # is NOT a substitute for proper testing! quickcheck: - test-tool/run-test-tool-locally + test-tool/run-test-tool-locally $(QUICKCHECK_TEST_TOOL_ARGS) # Make binary distribution. |