runtest-junitxml: Set GUILE_AUTO_COMPILE=0 to avoid stderr output

stderr output would make the junit test case "FAIL"
This commit is contained in:
Harald Welte 2017-08-20 11:43:02 +02:00
parent fb54abb5db
commit 4798f1185b
1 changed files with 1 additions and 0 deletions

View File

@ -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()