diff options
author | Steven Knight <knight@baldmt.com> | 2002-07-25 01:54:05 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-07-25 01:54:05 (GMT) |
commit | cd6d3c9e4f76592845cf32e11cee9a04c1b2f0f6 (patch) | |
tree | d20616d235c8adaeab19aa6078dc653a990733d1 /test | |
parent | 4656997675841eecc2fd51cad0034eb04152266e (diff) | |
download | SCons-cd6d3c9e4f76592845cf32e11cee9a04c1b2f0f6.zip SCons-cd6d3c9e4f76592845cf32e11cee9a04c1b2f0f6.tar.gz SCons-cd6d3c9e4f76592845cf32e11cee9a04c1b2f0f6.tar.bz2 |
Win32 portability in Repository tests.
Diffstat (limited to 'test')
-rw-r--r-- | test/Repository/Program.py | 2 | ||||
-rw-r--r-- | test/Repository/include.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/Repository/Program.py b/test/Repository/Program.py index 854ede2..c3eff53 100644 --- a/test/Repository/Program.py +++ b/test/Repository/Program.py @@ -42,7 +42,7 @@ work_foo = test.workpath('work', 'foo' + _exe) work_foo_c = test.workpath('work', 'foo.c') test.write(['work', 'SConstruct'], r""" -Repository('%s') +Repository(r'%s') env = Environment() env.Program(target= 'foo', source = Split('aaa.c bbb.c foo.c')) """ % repository) diff --git a/test/Repository/include.py b/test/Repository/include.py index 1538e1a..28bc7ce 100644 --- a/test/Repository/include.py +++ b/test/Repository/include.py @@ -41,7 +41,7 @@ work_foo = test.workpath('work', 'foo' + _exe) work_foo_h = test.workpath('work', 'foo.h') test.write(['work', 'SConstruct'], """ -Repository('%s') +Repository(r'%s') env = Environment(CPPPATH = ['.']) env.Program(target = 'foo', source = 'foo.c') """ % repository) |