aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-06-20 18:10:01 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-06-20 18:10:01 +0300
commit624eafc3bc71cdde111efa041f403def387198a8 (patch)
treea50ed97ce539fa1d908a2c5570f56fce0add4428
parent0f03b26f442e1e48994163a9af68113fbaf9ac37 (diff)
downloadmeson-624eafc3bc71cdde111efa041f403def387198a8.zip
meson-624eafc3bc71cdde111efa041f403def387198a8.tar.gz
meson-624eafc3bc71cdde111efa041f403def387198a8.tar.bz2
Added missing right parentheses.
-rwxr-xr-xmeson_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson_test.py b/meson_test.py
index 5630a9a..dd6f5c2 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: