diff options
author | Steven Knight <knight@baldmt.com> | 2002-11-27 02:02:36 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-11-27 02:02:36 (GMT) |
commit | 814029abd36603a70bc402826c79a5fdefe3c2a1 (patch) | |
tree | 4edf62d6b0b5114ef5baf54a802a7f1c648172e0 /test/overrides.py | |
parent | dd30a312b7c59abd25d41c3d332df57801abf66b (diff) | |
download | SCons-814029abd36603a70bc402826c79a5fdefe3c2a1.zip SCons-814029abd36603a70bc402826c79a5fdefe3c2a1.tar.gz SCons-814029abd36603a70bc402826c79a5fdefe3c2a1.tar.bz2 |
Provide graceful failures when a source file doesn't exist and can't be build, and when a nonexistent drive letter is used on Win32.
Diffstat (limited to 'test/overrides.py')
-rw-r--r-- | test/overrides.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/overrides.py b/test/overrides.py index 0ec3874..f535c97 100644 --- a/test/overrides.py +++ b/test/overrides.py @@ -44,6 +44,8 @@ env['BUILDERS']['Build'] = builder Default(env.Build('foo', 'bar', CC='mycc', LIBS = env['LIBS']+['b'])) """) +test.write('bar', "bar\n") + test.run() test.write('SConstruct', """ |