summaryrefslogtreecommitdiffstats
path: root/testsuite/configure
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-05-24 00:41:06 -0400
committerwenji <wjhuang@dhcp-beijing-cdc-10-182-120-233.cn.oracle.com>2008-05-25 21:33:35 -0400
commit50d0c99297294ab8fb593eb1c121495c5d7f01ad (patch)
tree27b597e867baf9b2ad3bc4f8c9792c2589322963 /testsuite/configure
parentd110e8c62c0555ea6713516ea3bf7b38a9e0ed86 (diff)
downloadsystemtap-steved-50d0c99297294ab8fb593eb1c121495c5d7f01ad.tar.gz
systemtap-steved-50d0c99297294ab8fb593eb1c121495c5d7f01ad.tar.xz
systemtap-steved-50d0c99297294ab8fb593eb1c121495c5d7f01ad.zip
PR6550: --enable-dejazilla: optional automatic test result reporting
Diffstat (limited to 'testsuite/configure')
-rwxr-xr-xtestsuite/configure25
1 files changed, 24 insertions, 1 deletions
diff --git a/testsuite/configure b/testsuite/configure
index bd8237cb..93494726 100755
--- a/testsuite/configure
+++ b/testsuite/configure
@@ -640,6 +640,7 @@ am__untar
MAINTAINER_MODE_TRUE
MAINTAINER_MODE_FALSE
MAINT
+dejazilla
LIBOBJS
LTLIBOBJS'
ac_subst_files=''
@@ -1223,6 +1224,11 @@ Optional Features:
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--enable-maintainer-mode enable make rules and dependencies not useful
(and sometimes confusing) to the casual installer
+ --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.
Report bugs to <systemtap@sources.redhat.com>.
_ACEOF
@@ -2160,6 +2166,22 @@ fi
+# Check whether --enable-dejazilla was given.
+if test "${enable_dejazilla+set}" = set; then
+ enableval=$enable_dejazilla;
+fi
+
+case "$enable_dejazilla" in
+ no) dejazilla= ;;
+ yes) dejazilla=dejazilla@elastic.org ;;
+ *) dejazilla="$enable_dejazilla" ;;
+esac
+if test -n "$dejazilla"; then
+ { echo "$as_me:$LINENO: A \"make *check\" will email results to $dejazilla" >&5
+echo "$as_me: A \"make *check\" will email results to $dejazilla" >&6;}
+fi
+
+
ac_config_files="$ac_config_files Makefile"
cat >confcache <<\_ACEOF
@@ -2861,11 +2883,12 @@ am__untar!$am__untar$ac_delim
MAINTAINER_MODE_TRUE!$MAINTAINER_MODE_TRUE$ac_delim
MAINTAINER_MODE_FALSE!$MAINTAINER_MODE_FALSE$ac_delim
MAINT!$MAINT$ac_delim
+dejazilla!$dejazilla$ac_delim
LIBOBJS!$LIBOBJS$ac_delim
LTLIBOBJS!$LTLIBOBJS$ac_delim
_ACEOF
- if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 64; then
+ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 65; then
break
elif $ac_last_try; then
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5