diff options
author | Steven Knight <knight@baldmt.com> | 2008-10-14 23:06:36 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2008-10-14 23:06:36 (GMT) |
commit | 76bba5e86e024374f2021a05b39c657a54dce0d5 (patch) | |
tree | c8e91a62f8ea85bc23ea77916cfd51f62e58a8fb /test | |
parent | f91fb52e2632e6656dcd7ad67c6e4c2921d6da08 (diff) | |
download | SCons-76bba5e86e024374f2021a05b39c657a54dce0d5.zip SCons-76bba5e86e024374f2021a05b39c657a54dce0d5.tar.gz SCons-76bba5e86e024374f2021a05b39c657a54dce0d5.tar.bz2 |
Test and document the ability to specify multiple -f files.
Diffstat (limited to 'test')
-rw-r--r-- | test/option-f.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/option-f.py b/test/option-f.py index da3a364..a8c7c7b 100644 --- a/test/option-f.py +++ b/test/option-f.py @@ -43,6 +43,11 @@ import os print "subdir/BuildThis", os.getcwd() """) +test.write('Build2', """ +import os +print "Build2", os.getcwd() +""") + wpath = test.workpath() test.run(arguments = '-f SConscript .', @@ -84,6 +89,10 @@ print "STDIN " + os.getcwd() stdout = test.wrap_stdout(read_str = 'STDIN %s\n' % wpath, build_str = "scons: `.' is up to date.\n")) +expect = test.wrap_stdout(read_str = 'Build2 %s\nSConscript %s\n' % (wpath, wpath), + build_str = "scons: `.' is up to date.\n") +test.run(arguments = '-f Build2 -f SConscript .', stdout=expect) + test.run(arguments = '-f no_such_file .', stdout = test.wrap_stdout("scons: `.' is up to date.\n"), stderr = None) |