summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/UtilTests.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-08-17 07:16:58 (GMT)
committerSteven Knight <knight@baldmt.com>2004-08-17 07:16:58 (GMT)
commit483564c8512e0eaccadb2aebe03e7e928225063b (patch)
tree75da8912f958215a28bc564dac4fcf8f5a3f8bf2 /src/engine/SCons/UtilTests.py
parent3a04ee14eb94ec69fb9b1e0a8ca5bc2e209cf38c (diff)
downloadSCons-483564c8512e0eaccadb2aebe03e7e928225063b.zip
SCons-483564c8512e0eaccadb2aebe03e7e928225063b.tar.gz
SCons-483564c8512e0eaccadb2aebe03e7e928225063b.tar.bz2
Test portability fix. Fix handling of >.
Diffstat (limited to 'src/engine/SCons/UtilTests.py')
-rw-r--r--src/engine/SCons/UtilTests.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/engine/SCons/UtilTests.py b/src/engine/SCons/UtilTests.py
index fb9f14c..0cda461 100644
--- a/src/engine/SCons/UtilTests.py
+++ b/src/engine/SCons/UtilTests.py
@@ -652,6 +652,12 @@ class UtilTestCase(unittest.TestCase):
# Bug reported by Christoph Wiedemann.
cvt('$xxx/bin'), [['/bin']],
+
+ # Test variables smooshed together with different prefixes.
+ 'foo$AAA', [['fooa']],
+ '<$AAA', [['<', 'a']],
+ '>$AAA', [['>', 'a']],
+ '|$AAA', [['|', 'a']],
]
kwargs = {'target' : target, 'source' : source}