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 | |
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.
-rw-r--r-- | doc/man/scons.1 | 6 | ||||
-rw-r--r-- | test/option-f.py | 9 |
2 files changed, 15 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index 4f1d316..78def40 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -804,6 +804,12 @@ the mechanisms in the specified order. Use .I file as the initial SConscript file. +Multiple +.B -f +options may be specified, +in which case +.B scons +will read all of the specified files. .TP -h, --help 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) |