diff options
author | Steven Knight <knight@baldmt.com> | 2001-12-21 19:01:07 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-12-21 19:01:07 (GMT) |
commit | f6ab3b3b0b9847db2041de8e46401e0f44c2be9b (patch) | |
tree | 6dbbcf14d190504d14c3dc4a949f9d88d6e14402 /test/BuildDir.py | |
parent | ed3aa5e39e64a5b48b493f33d1438572678d8b65 (diff) | |
download | SCons-f6ab3b3b0b9847db2041de8e46401e0f44c2be9b.zip SCons-f6ab3b3b0b9847db2041de8e46401e0f44c2be9b.tar.gz SCons-f6ab3b3b0b9847db2041de8e46401e0f44c2be9b.tar.bz2 |
Windows NT portability fixes for tests.
Diffstat (limited to 'test/BuildDir.py')
-rw-r--r-- | test/BuildDir.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/BuildDir.py b/test/BuildDir.py index 78d2afc..8f7c149 100644 --- a/test/BuildDir.py +++ b/test/BuildDir.py @@ -93,11 +93,11 @@ main(int argc, char *argv[]) } """) -test.write('src/f1.h', """ +test.write('src/f1.h', r""" #define F1_STR "f1.c\n" """) -test.write('src/f2.h', """ +test.write('src/f2.h', r""" #define F2_STR "f2.c\n" """) |