summaryrefslogtreecommitdiffstats
path: root/testsuite/configure.ac
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-05-24 00:41:06 -0400
committerFrank Ch. Eigler <fche@elastic.org>2008-05-24 00:41:06 -0400
commitf98f7c0151e19f6f3689c5e4001f3fae37efb293 (patch)
tree00dc5250a9c1a0095b3d972982083a18c26c02e2 /testsuite/configure.ac
parent12b7f110bc79aac307cd4c6fa73402235ec00ea3 (diff)
downloadsystemtap-steved-f98f7c0151e19f6f3689c5e4001f3fae37efb293.tar.gz
systemtap-steved-f98f7c0151e19f6f3689c5e4001f3fae37efb293.tar.xz
systemtap-steved-f98f7c0151e19f6f3689c5e4001f3fae37efb293.zip
PR6550: --enable-dejazilla: optional automatic test result reporting
Diffstat (limited to 'testsuite/configure.ac')
-rw-r--r--testsuite/configure.ac15
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/configure.ac b/testsuite/configure.ac
index 70d01e96..0fd78fe7 100644
--- a/testsuite/configure.ac
+++ b/testsuite/configure.ac
@@ -8,5 +8,20 @@ AC_CONFIG_AUX_DIR(..)
AM_INIT_AUTOMAKE([dejagnu foreign])
AM_MAINTAINER_MODE
+AC_ARG_ENABLE([dejazilla],
+ AS_HELP_STRING([--enable-dejazilla@<:@=EMAIL@:>@],
+ [enable dejazilla support to automatically email test results to a
+ central public collection point (default is disabled). Optional
+ EMAIL overrides the default email address.]))
+case "$enable_dejazilla" in
+ no) dejazilla= ;;
+ yes) dejazilla=dejazilla@elastic.org ;;
+ *) dejazilla="$enable_dejazilla" ;;
+esac
+if test -n "$dejazilla"; then
+ AC_MSG_NOTICE([A "make *check" will email results to $dejazilla])
+fi
+AC_SUBST(dejazilla)
+
AC_CONFIG_FILES(Makefile)
AC_OUTPUT