Use period as the separator because colon causes problems on Windows.
This commit is contained in:
parent
8bb2586ae4
commit
fcf6643507
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue