aboutsummaryrefslogtreecommitdiff
path: root/lit.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'lit.cfg')
-rw-r--r--lit.cfg3
1 files changed, 3 insertions, 0 deletions
diff --git a/lit.cfg b/lit.cfg
index 5a49444e..27e011fc 100644
--- a/lit.cfg
+++ b/lit.cfg
@@ -110,6 +110,8 @@ def prepareRunSafely(config, commandline, outfile):
runsafely = "%s/RunSafely.sh" % config.test_suite_root
runsafely_prefix = [ runsafely ]
+ if not config.output_append_exitstatus:
+ runsafely_prefix += ["--omit-exitval"]
if config.remote_host:
runsafely_prefix += [ "-r", config.remote_host ]
if config.remote_user:
@@ -215,5 +217,6 @@ config.name = 'test-suite'
config.test_format = TestSuiteTest()
config.suffixes = ['.test']
config.excludes = ['ABI-Testsuite']
+config.output_append_exitstatus = False
if 'SSH_AUTH_SOCK' in os.environ:
config.environment['SSH_AUTH_SOCK'] = os.environ['SSH_AUTH_SOCK']