diff options
author | grbd <garlicbready@googlemail.com> | 2017-06-21 00:15:23 (GMT) |
---|---|---|
committer | grbd <garlicbready@googlemail.com> | 2017-06-21 00:15:23 (GMT) |
commit | 4967ba7fe355283654561d02417564de82649f7e (patch) | |
tree | 804a26580008086aad828eec8a3d5a55d4c1f316 /runtest.py | |
parent | 4024bd986cde1fd161e4ae77357f6f84fffa2c16 (diff) | |
download | SCons-4967ba7fe355283654561d02417564de82649f7e.zip SCons-4967ba7fe355283654561d02417564de82649f7e.tar.gz SCons-4967ba7fe355283654561d02417564de82649f7e.tar.bz2 |
Changed to os.pathsep for fixture dirs
Diffstat (limited to 'runtest.py')
-rwxr-xr-x | runtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -810,7 +810,7 @@ def run_test(t, io_lock, async=True): if head: fixture_dirs.append(head) fixture_dirs.append(os.path.join(scriptpath, 'test', 'fixture')) - os.environ['FIXTURE_DIRS'] = ';'.join(fixture_dirs) + os.environ['FIXTURE_DIRS'] = os.pathsep.join(fixture_dirs) test_start_time = time_func() if execute_tests: |