summaryrefslogtreecommitdiff
path: root/test/option--lw.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-09-09 21:47:42 +0000
committerSteven Knight <knight@baldmt.com>2001-09-09 21:47:42 +0000
commitc47a0a15e0ec5f35a0ab7ed8ed142b5bcaaf4ca8 (patch)
tree148df137dfa88f54b75a2fb9472b9f5e657289a6 /test/option--lw.py
parent146a6ca32ebf381e6fee5b3210c58685d984402e (diff)
downloadscons-c47a0a15e0ec5f35a0ab7ed8ed142b5bcaaf4ca8.tar.gz
Add command-line processing for all options (with tests).
Diffstat (limited to 'test/option--lw.py')
-rw-r--r--test/option--lw.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/option--lw.py b/test/option--lw.py
new file mode 100644
index 00000000..2a7779ea
--- /dev/null
+++ b/test/option--lw.py
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+
+__revision__ = "test/option--lw.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 = '--list-where')
+
+test.fail_test(test.stderr() !=
+ "Warning: the --list-where option is not yet implemented\n")
+
+test.pass_test()
+