From 624eafc3bc71cdde111efa041f403def387198a8 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Thu, 20 Jun 2013 18:10:01 +0300 Subject: Added missing right parentheses. --- meson_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson_test.py b/meson_test.py index 5630a9a24..dd6f5c2b1 100755 --- a/meson_test.py +++ b/meson_test.py @@ -19,7 +19,7 @@ from optparse import OptionParser parser = OptionParser() parser.add_option('--wrapper', default=None, dest='wrapper', - help='wrapper to run tests with (e.g. valgrind') + help='wrapper to run tests with (e.g. valgrind)') def write_log(logfile, test_name, result_str, stdo, stde): logfile.write(result_str + '\n\n') @@ -51,7 +51,7 @@ def run_tests(options, datafilename): duration = endtime - starttime stdo = stdo.decode() stde = stde.decode() - + if p.returncode != 0: result_str = 'Test "%s": FAIL (%.3f s)' % (line, duration) else: -- cgit v1.2.3