aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-11-11 12:16:28 +0100
committerDavid Robillard <d@drobilla.net>2018-11-11 12:26:54 +0100
commit7b55df3f32060bdccb6fcb679472f11dba54e66e (patch)
tree2731368e3fad577b52097cae8d68663fd7873fb6
parentba99a2957bd2567d4c1c626c8710f32295962c3e (diff)
downloadserd-7b55df3f32060bdccb6fcb679472f11dba54e66e.tar.gz
serd-7b55df3f32060bdccb6fcb679472f11dba54e66e.tar.bz2
serd-7b55df3f32060bdccb6fcb679472f11dba54e66e.zip
Make logged test names unambiguous
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index 2c8d45ff..a3935c41 100644
--- a/wscript
+++ b/wscript
@@ -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))