From 23e8dcfddd16c687563b45dae8f7bcd608b1c27b Mon Sep 17 00:00:00 2001 From: Michael Rash Date: Sun, 25 May 2014 16:23:40 -0400 Subject: [PATCH] [test suite] added configure_max_coverage.sh for --enable-complete mode --- test/configure_max_coverage.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 test/configure_max_coverage.sh diff --git a/test/configure_max_coverage.sh b/test/configure_max_coverage.sh new file mode 100755 index 00000000..b871c105 --- /dev/null +++ b/test/configure_max_coverage.sh @@ -0,0 +1,13 @@ +#!/bin/sh -x + +# +# This is a convenience script to run ./configure with the command line args +# that are designed for fuzzing and test coverage support +# + +if [ -x ./configure ]; then + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --enable-profile-coverage --enable-fuzzing-interfaces --enable-libfiu-support $@ +else + echo "[*] Execute from the fwknop top level sources directory" +fi