diff options
author | David Robillard <d@drobilla.net> | 2019-03-18 01:18:05 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-03-18 01:23:36 +0100 |
commit | 1fb8ac0d29e670eaaffd7864ceab62b9f4650ff8 (patch) | |
tree | f2881d561a906950da201569a613e1c2132ffb9b /wscript | |
parent | 8c3d48d190cb73d73891ed704c84707d16c27272 (diff) | |
download | serd-1fb8ac0d29e670eaaffd7864ceab62b9f4650ff8.tar.gz serd-1fb8ac0d29e670eaaffd7864ceab62b9f4650ff8.tar.bz2 serd-1fb8ac0d29e670eaaffd7864ceab62b9f4650ff8.zip |
Use distinct output paths for each test run
Even though there is no parallelism, this seems to cause sporadic problems on
Windows. Regardless, it's a good idea, since the test framework might become
parallel some day.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -239,7 +239,7 @@ def earl_assertion(test, passed, asserter): serdi = './serdi_static' def test_thru(check, base, path, check_path, flags, isyntax, osyntax, opts=[]): - out_path = path + '.out' + out_path = path + '.pass' out_cmd = [serdi] + opts + [f for sublist in flags for f in sublist] + [ '-i', isyntax, '-o', isyntax, @@ -389,7 +389,7 @@ def test(tst): def test_syntax_io(check, in_name, check_name, lang): in_path = 'tests/good/%s' % in_name - out_path = in_path + '.out' + out_path = in_path + '.io' check_path = '%s/tests/good/%s' % (srcdir, check_name) check([serdi, '-o', lang, '%s/%s' % (srcdir, in_path), in_path], |