diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-16 08:15:35 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-16 08:15:35 +0200 |
commit | 5338cd3b93972c60ac90d4c2c5a640071f92d091 (patch) | |
tree | a1185b0247c00fc09b28126e267f6f1b58de40fa /tests/cc/modules/common.testscript | |
parent | 222e7e7f5cd64fcb2cf7f2d65e03a2f57982ce74 (diff) |
Quote config.{c,cxx} paths when passing to tests
Without this Windows directory separators are treated as escapes.
Diffstat (limited to 'tests/cc/modules/common.testscript')
-rw-r--r-- | tests/cc/modules/common.testscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cc/modules/common.testscript b/tests/cc/modules/common.testscript index b7501c1..e10047a 100644 --- a/tests/cc/modules/common.testscript +++ b/tests/cc/modules/common.testscript @@ -3,7 +3,7 @@ # license : MIT; see accompanying LICENSE file crosstest = false -test.arguments = config.cxx="$recall($cxx.path)" +test.arguments = config.cxx="\\'$recall($cxx.path)\\'" .include ../../common.testscript |