summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2024-09-01 16:21:01 (GMT)
committerMats Wichmann <mats@linux.com>2024-09-04 11:22:59 (GMT)
commit3b4f74a387d8e99d1263367fa0b77309a6c967e8 (patch)
tree39d5f92757abac062e9137d966cebe33578e263d /test
parentafd59b1f66ffeb53d86a361d2622a1fe50cfbdc9 (diff)
downloadSCons-3b4f74a387d8e99d1263367fa0b77309a6c967e8.zip
SCons-3b4f74a387d8e99d1263367fa0b77309a6c967e8.tar.gz
SCons-3b4f74a387d8e99d1263367fa0b77309a6c967e8.tar.bz2
New PackageVariable test - enter path as rawstring
Else it fails on Windows. Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test')
-rw-r--r--test/Variables/PackageVariable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Variables/PackageVariable.py b/test/Variables/PackageVariable.py
index 1e32eee..bc447dd 100644
--- a/test/Variables/PackageVariable.py
+++ b/test/Variables/PackageVariable.py
@@ -95,7 +95,7 @@ vars.Add(
PackageVariable(
'tinycbor',
help="use 'tinycbor' at <path>",
- default='{tinycbor_path}'
+ default=r'{tinycbor_path}'
)
)