diff options
author | David Robillard <d@drobilla.net> | 2018-11-11 12:16:28 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-11-11 12:26:54 +0100 |
commit | 7b55df3f32060bdccb6fcb679472f11dba54e66e (patch) | |
tree | 2731368e3fad577b52097cae8d68663fd7873fb6 | |
parent | ba99a2957bd2567d4c1c626c8710f32295962c3e (diff) | |
download | serd-7b55df3f32060bdccb6fcb679472f11dba54e66e.tar.gz serd-7b55df3f32060bdccb6fcb679472f11dba54e66e.tar.bz2 serd-7b55df3f32060bdccb6fcb679472f11dba54e66e.zip |
Make logged test names unambiguous
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -361,8 +361,8 @@ def test_suite(ctx, base_uri, testdir, report, isyntax, osyntax, options=''): thru_options_iter = itertools.cycle(thru_options) quiet = not Options.options.verbose_tests - test_class_name = test_class[test_class.find('#') + 1:] - with autowaf.begin_tests(ctx, APPNAME, test_class_name): + tests_name = '%s.%s' % (testdir, test_class[test_class.find('#') + 1:]) + with autowaf.begin_tests(ctx, APPNAME, tests_name): for (num, test) in enumerate(sorted(tests)): action_node = model[test][mf + 'action'][0] action = os.path.join('tests', testdir, os.path.basename(action_node)) |