diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2016-11-23 20:52:51 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-11-23 20:52:51 +0300 |
commit | 122781fb093a46804d33b26e01233925ba4cd965 (patch) | |
tree | 43a45fcab826a0d4c22ab31ae7c9ceedbbcac77f | |
parent | fd72f7f1ab0e93a4dd885323d0416938c6a4914e (diff) |
Quote path values when assigned to test.arguments
-rw-r--r-- | tests/dir-iterator/buildfile | 2 | ||||
-rw-r--r-- | tests/small-vector/buildfile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/dir-iterator/buildfile b/tests/dir-iterator/buildfile index 5c8736e..6c8bd12 100644 --- a/tests/dir-iterator/buildfile +++ b/tests/dir-iterator/buildfile @@ -3,6 +3,6 @@ # license : MIT; see accompanying LICENSE file exe{driver}: cxx{driver} ../../butl/lib{butl} -exe{driver}: test.arguments = $src_root +exe{driver}: test.arguments = "$src_root" include ../../butl/ diff --git a/tests/small-vector/buildfile b/tests/small-vector/buildfile index 78d2d06..6610b73 100644 --- a/tests/small-vector/buildfile +++ b/tests/small-vector/buildfile @@ -3,6 +3,6 @@ # license : MIT; see accompanying LICENSE file exe{driver}: cxx{driver} ../../butl/lib{butl} -exe{driver}: test.arguments = $src_root +exe{driver}: test.arguments = "$src_root" include ../../butl/ |