diff options
author | Steven Knight <knight@baldmt.com> | 2001-11-29 06:29:22 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-11-29 06:29:22 (GMT) |
commit | 94888b28d673f05360670ad3eeac836b5260e44a (patch) | |
tree | 3bffd52edc3e68463a13c59d24b975ed63a19641 /test/LIBPATH.py | |
parent | b88f3951d7ec14f464438d4bd6af6ee95b872888 (diff) | |
download | SCons-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.py | 6 |
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") |