diff options
author | Steven Knight <knight@baldmt.com> | 2004-08-17 07:16:58 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-08-17 07:16:58 (GMT) |
commit | 483564c8512e0eaccadb2aebe03e7e928225063b (patch) | |
tree | 75da8912f958215a28bc564dac4fcf8f5a3f8bf2 /test/Flatten.py | |
parent | 3a04ee14eb94ec69fb9b1e0a8ca5bc2e209cf38c (diff) | |
download | SCons-483564c8512e0eaccadb2aebe03e7e928225063b.zip SCons-483564c8512e0eaccadb2aebe03e7e928225063b.tar.gz SCons-483564c8512e0eaccadb2aebe03e7e928225063b.tar.bz2 |
Test portability fix. Fix handling of >.
Diffstat (limited to 'test/Flatten.py')
-rw-r--r-- | test/Flatten.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/Flatten.py b/test/Flatten.py index 7679bdb..1b98f66 100644 --- a/test/Flatten.py +++ b/test/Flatten.py @@ -28,6 +28,8 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" Test that the Flatten() function is available and works. """ +import string + import TestSCons test = TestSCons.TestSCons() @@ -60,13 +62,17 @@ test.write('file1.in', "file1.in\n") test.write('file2a.in', "file2a.in\n") test.write('file2b.in', "file2b.in\n") +def double_backslash(f): + p = test.workpath(f) + return string.replace(p, '\\', '\\\\') + expect = """\ ['begin', '%s', 'middle', '%s', 'end'] ['%s', 'a', 'b', 'c', '%s'] [1, 2, 3, 4] [1, 2, 3, 4] -""" % (test.workpath('file1.out'), test.workpath('file2.out'), - test.workpath('file1.out'), test.workpath('file2.out')) +""" % (double_backslash('file1.out'), double_backslash('file2.out'), + double_backslash('file1.out'), double_backslash('file2.out')) test.run(chdir = "work", arguments = ".", |