summaryrefslogtreecommitdiffstats
path: root/test/LIBPATH.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-11-29 06:29:22 (GMT)
committerSteven Knight <knight@baldmt.com>2001-11-29 06:29:22 (GMT)
commit94888b28d673f05360670ad3eeac836b5260e44a (patch)
tree3bffd52edc3e68463a13c59d24b975ed63a19641 /test/LIBPATH.py
parentb88f3951d7ec14f464438d4bd6af6ee95b872888 (diff)
downloadSCons-94888b28d673f05360670ad3eeac836b5260e44a.zip
SCons-94888b28d673f05360670ad3eeac836b5260e44a.tar.gz
SCons-94888b28d673f05360670ad3eeac836b5260e44a.tar.bz2
More NT portability in the tests.
Diffstat (limited to 'test/LIBPATH.py')
-rw-r--r--test/LIBPATH.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/LIBPATH.py b/test/LIBPATH.py
index 2efd236..7d5a7cc 100644
--- a/test/LIBPATH.py
+++ b/test/LIBPATH.py
@@ -35,7 +35,7 @@ env.Program(target = 'prog', source = 'prog.c')
env.Library(target = './libs/foo1', source = 'f1.c')
""")
-test.write('f1.c', """
+test.write('f1.c', r"""
void
f1(void)
{
@@ -43,7 +43,7 @@ f1(void)
}
""")
-test.write('prog.c', """
+test.write('prog.c', r"""
void f1(void);
int
main(int argc, char *argv[])
@@ -55,7 +55,7 @@ main(int argc, char *argv[])
}
""")
-test.run(arguments = 'prog')
+test.run(arguments = '.')
test.run(program = test.workpath('prog'),
stdout = "f1.c\nprog.c\n")