Use period as the separator because colon causes problems on Windows.

This commit is contained in:
Jussi Pakkanen 2015-12-11 21:48:47 +02:00
parent 8bb2586ae4
commit fcf6643507
1 changed files with 1 additions and 1 deletions

View File

@ -1739,7 +1739,7 @@ class Interpreter():
if self.is_subproject():
newsuite = []
for s in suite:
newsuite.append(self.subproject.replace(' ', '_') + ':' + s)
newsuite.append(self.subproject.replace(' ', '_').replace('.', '_') + '.' + s)
suite = newsuite
t = Test(args[0], suite, args[1].held_object, par, cmd_args, env, should_fail, valgrind_args, timeout, workdir)
if is_base_test: