aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2015-06-19 10:17:25 +0300
committerIgor Gnatenko <i.gnatenko.brain@gmail.com>2015-06-19 10:17:25 +0300
commit816013ef0dcc9d85408e1b70f8185b9d02c60ed5 (patch)
tree44474bcf7c28db69190eedf3cde9d056e53ea36f /run_tests.py
parentb49b7fdc05e894d58680e1bac5fe16ad2955bc86 (diff)
downloadmeson-816013ef0dcc9d85408e1b70f8185b9d02c60ed5.zip
meson-816013ef0dcc9d85408e1b70f8185b9d02c60ed5.tar.gz
meson-816013ef0dcc9d85408e1b70f8185b9d02c60ed5.tar.bz2
run_tests: fix bad-continuation
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/run_tests.py b/run_tests.py
index 3d85894..3549e11 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -222,7 +222,7 @@ def run_test(testdir, should_succeed):
env = os.environ.copy()
env['DESTDIR'] = install_dir
pi = subprocess.Popen(install_commands, cwd=test_build_dir, env=env,
- stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+ stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(o, e) = pi.communicate()
stdo += o.decode('utf-8')
stde += e.decode('utf-8')
@@ -352,7 +352,7 @@ def generate_prebuilt_object():
if __name__ == '__main__':
parser = argparse.ArgumentParser(description="Run the test suite of Meson.")
parser.add_argument('--backend', default=None, dest='backend',
- choices = backendlist)
+ choices = backendlist)
options = parser.parse_args()
setup_commands(options.backend)