aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2019-03-03 10:18:27 +0100
committerDaniel Mensinger <daniel@mensinger-ka.de>2019-03-04 13:00:30 +0100
commit609a21ff9f4824364e76edc1dd7ff4911bf2a47b (patch)
treee27322bab311353091a3891b1f7d2b2c846b5823 /run_unittests.py
parentc957a2aa9456765ca75198145e4866246d4f8558 (diff)
downloadmeson-609a21ff9f4824364e76edc1dd7ff4911bf2a47b.zip
meson-609a21ff9f4824364e76edc1dd7ff4911bf2a47b.tar.gz
meson-609a21ff9f4824364e76edc1dd7ff4911bf2a47b.tar.bz2
rewriter: Abort on error by default
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py
index b03dbeb..2471e44 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -5197,7 +5197,7 @@ class RewriterTests(BasePlatformTests):
def rewrite_raw(self, directory, args):
if isinstance(args, str):
args = [args]
- command = self.rewrite_command + ['--verbose', '--sourcedir', directory] + args
+ command = self.rewrite_command + ['--verbose', '--skip', '--sourcedir', directory] + args
p = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
universal_newlines=True, timeout=60)
print('STDOUT:')