aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-08-20 11:43:02 +0200
committerHarald Welte <laforge@gnumonks.org>2017-08-20 11:43:02 +0200
commit4798f1185b9de21f577ef681e2f10cb742c574c5 (patch)
treec4421dc4371462e9bd9293dc8d413ecaf0bcc599
parentfb54abb5db748fafe84798b0747957243fbf8db3 (diff)
runtest-junitxml: Set GUILE_AUTO_COMPILE=0 to avoid stderr outputHEADmaster
stderr output would make the junit test case "FAIL"
-rwxr-xr-xruntest-junitxml.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtest-junitxml.py b/runtest-junitxml.py
index bf9d131..380891d 100755
--- a/runtest-junitxml.py
+++ b/runtest-junitxml.py
@@ -51,6 +51,7 @@ def start_testcase(directory, testcase, timeout=0):
before = time.time()
my_env = os.environ
my_env["GUILE_WARN_DEPRECATED"] = "no"
+ my_env["GUILE_AUTO_COMPILE"] = "0"
p = Popen([GUILE, '-L', directory, '-c', cmd], env=my_env, stdout=PIPE, stderr=PIPE)
try:
(tc_stdout, tc_stderr) = p.communicate()