From f4786ef3993677c5cc980612a679905b6615696d Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Mon, 17 Jun 2013 08:11:57 +0000 Subject: [PATCH] attempt at fixing encoding issue in run_tests.py --- tools/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/run_tests.py b/tools/run_tests.py index 6d83fea12..3982193d9 100755 --- a/tools/run_tests.py +++ b/tools/run_tests.py @@ -90,7 +90,7 @@ def run_tests(toolset, tests, features, options, test_dir, time_limit): p = subprocess.Popen(['bjam', '--out-xml=%s' % xml_file, '-l%d' % time_limit, '-q', toolset, t] + options + features.split(' '), stdout=subprocess.PIPE) output = '' for l in p.stdout: - output += l + output += l.decode('latin-1') p.wait() # parse out the toolset version from the xml file