diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-12-11 21:48:47 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-12-11 21:48:47 +0200 |
commit | fcf6643507fa6db7dee9d844cedf53307f6174a4 (patch) | |
tree | dbfa64c2e285ba860088940f601aef08e6d746d5 /interpreter.py | |
parent | 8bb2586ae472ab625b358cde433f553b578ad097 (diff) | |
download | meson-fcf6643507fa6db7dee9d844cedf53307f6174a4.zip meson-fcf6643507fa6db7dee9d844cedf53307f6174a4.tar.gz meson-fcf6643507fa6db7dee9d844cedf53307f6174a4.tar.bz2 |
Use period as the separator because colon causes problems on Windows.
Diffstat (limited to 'interpreter.py')
-rw-r--r-- | interpreter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interpreter.py b/interpreter.py index 1a5c6b2..a11f753 100644 --- a/interpreter.py +++ b/interpreter.py @@ -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: |