diff options
Diffstat (limited to 'mesontest.py')
-rwxr-xr-x | mesontest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesontest.py b/mesontest.py index a1708e3..d626ba7 100755 --- a/mesontest.py +++ b/mesontest.py @@ -202,7 +202,7 @@ class TestHarness: child_env.update(test.env) if len(test.extra_paths) > 0: - child_env['PATH'] += ';'.join([''] + test.extra_paths) + child_env['PATH'] += os.pathsep.join([''] + test.extra_paths) # If MALLOC_PERTURB_ is not set, or if it is set to an empty value, # (i.e., the test or the environment don't explicitly set it), set |