summaryrefslogtreecommitdiffstats
path: root/test/Install.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-12-21 19:01:07 (GMT)
committerSteven Knight <knight@baldmt.com>2001-12-21 19:01:07 (GMT)
commitf6ab3b3b0b9847db2041de8e46401e0f44c2be9b (patch)
tree6dbbcf14d190504d14c3dc4a949f9d88d6e14402 /test/Install.py
parented3aa5e39e64a5b48b493f33d1438572678d8b65 (diff)
downloadSCons-f6ab3b3b0b9847db2041de8e46401e0f44c2be9b.zip
SCons-f6ab3b3b0b9847db2041de8e46401e0f44c2be9b.tar.gz
SCons-f6ab3b3b0b9847db2041de8e46401e0f44c2be9b.tar.bz2
Windows NT portability fixes for tests.
Diffstat (limited to 'test/Install.py')
-rw-r--r--test/Install.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Install.py b/test/Install.py
index dce9990..37d288c 100644
--- a/test/Install.py
+++ b/test/Install.py
@@ -47,7 +47,7 @@ t=env.Program(target='foo2', source='f2.c')
env.Install(dir='export', source=t)
""")
-test.write('f1.c', """
+test.write('f1.c', r"""
#include <stdio.h>
int main(void)
@@ -57,7 +57,7 @@ int main(void)
}
""")
-test.write('f2.c', """
+test.write('f2.c', r"""
#include <stdio.h>
int main(void)
@@ -76,7 +76,7 @@ test.run(program = foo2, stdout = "f2.c\n")
oldtime1 = os.path.getmtime(foo1)
oldtime2 = os.path.getmtime(foo2)
-test.write('f1.c', """
+test.write('f1.c', r"""
#include <stdio.h>
int main(void)