diff options
author | Steven Knight <knight@baldmt.com> | 2001-09-09 21:47:42 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-09-09 21:47:42 (GMT) |
commit | c47a0a15e0ec5f35a0ab7ed8ed142b5bcaaf4ca8 (patch) | |
tree | 148df137dfa88f54b75a2fb9472b9f5e657289a6 /test/option--I.py | |
parent | 146a6ca32ebf381e6fee5b3210c58685d984402e (diff) | |
download | SCons-c47a0a15e0ec5f35a0ab7ed8ed142b5bcaaf4ca8.zip SCons-c47a0a15e0ec5f35a0ab7ed8ed142b5bcaaf4ca8.tar.gz SCons-c47a0a15e0ec5f35a0ab7ed8ed142b5bcaaf4ca8.tar.bz2 |
Add command-line processing for all options (with tests).
Diffstat (limited to 'test/option--I.py')
-rw-r--r-- | test/option--I.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/option--I.py b/test/option--I.py new file mode 100644 index 0000000..f205a76 --- /dev/null +++ b/test/option--I.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python + +__revision__ = "test/option--I.py __REVISION__ __DATE__ __DEVELOPER__" + +import TestCmd +import string +import sys + +test = TestCmd.TestCmd(program = 'scons.py', + workdir = '', + interpreter = 'python') + +test.write('SConstruct', "") + +test.run(chdir = '.', arguments = '-I foo') + +test.fail_test(test.stderr() != + "Warning: the -I option is not yet implemented\n") + +test.run(chdir = '.', arguments = '--include-dir=foo') + +test.fail_test(test.stderr() != + "Warning: the --include-dir option is not yet implemented\n") + +test.pass_test() + |