From 816013ef0dcc9d85408e1b70f8185b9d02c60ed5 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Fri, 19 Jun 2015 10:17:25 +0300 Subject: [PATCH] run_tests: fix bad-continuation Signed-off-by: Igor Gnatenko --- run_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_tests.py b/run_tests.py index 3d8589409..3549e11f8 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)