From 7b55df3f32060bdccb6fcb679472f11dba54e66e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 11 Nov 2018 12:16:28 +0100 Subject: Make logged test names unambiguous --- wscript | 4 ++-- 1 file 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)) -- cgit v1.2.1