diff options
author | Steven Knight <knight@baldmt.com> | 2005-01-03 20:35:15 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-01-03 20:35:15 (GMT) |
commit | bf0edb7f66d1585a88f19184800b0d63729be91d (patch) | |
tree | fca04c48370ff7351b526ad7d815165699088622 /test/RCS | |
parent | 0e6b845e583831cd883b0103583abbeb197f264f (diff) | |
download | SCons-bf0edb7f66d1585a88f19184800b0d63729be91d.zip SCons-bf0edb7f66d1585a88f19184800b0d63729be91d.tar.gz SCons-bf0edb7f66d1585a88f19184800b0d63729be91d.tar.bz2 |
Win32 portability fixes.
Diffstat (limited to 'test/RCS')
-rw-r--r-- | test/RCS/implicit.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/RCS/implicit.py b/test/RCS/implicit.py index 684a24b..2289258 100644 --- a/test/RCS/implicit.py +++ b/test/RCS/implicit.py @@ -42,6 +42,11 @@ if not ci: print "Could not find `ci' command, skipping test(s)." test.pass_test(1) +co = test.where_is('co') +if not co: + print "Could not find `co' command, skipping test(s)." + test.pass_test(1) + test.subdir('RCS') @@ -66,9 +71,10 @@ test.run(program = ci, stderr = None) test.write('SConstruct', """ +DefaultEnvironment(RCS_CO = r'%s') env = Environment() env.Program('foo.c') -""") +""" % co) test.run(stderr="""\ RCS/foo.c,v --> foo.c |