diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-16 07:55:02 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-16 07:55:02 +0200 |
commit | b82298fbb340446303c9510b56d41cead9d0755b (patch) | |
tree | d45f65b4b6d87d2e1207f0127f0331eb4278149f /tests/ci.testscript | |
parent | 519ae8a0cd36c9726c12df8df864f9b6853d9857 (diff) |
Escape quoting in config.{c,cxx} paths when passing to tests
This is needed due to the command line re-parsing (see "Lexical Structure" in
the Testscript manual for details).
Diffstat (limited to 'tests/ci.testscript')
-rw-r--r-- | tests/ci.testscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ci.testscript b/tests/ci.testscript index b56b4eb..6fa73eb 100644 --- a/tests/ci.testscript +++ b/tests/ci.testscript @@ -52,7 +52,7 @@ repository='http://example.com/prj.git' test.arguments += --yes --repository "$repository" --server "$server" \ --simulate 'success' -cxx = cc config.cxx="'$recall($cxx.path)'" +cxx = cc config.cxx="\\'$recall($cxx.path)\\'" new += 2>! init += $cxx -d prj 2>! &prj/**/bootstrap/*** |