Add command-line processing for all options (with tests).
[scons.git] / test / option--random.py
1 #!/usr/bin/env python
2
3 __revision__ = "test/option--random.py __REVISION__ __DATE__ __DEVELOPER__"
4
5 import TestCmd
6 import string
7 import sys
8
9 test = TestCmd.TestCmd(program = 'scons.py',
10                        workdir = '',
11                        interpreter = 'python')
12
13 test.write('SConstruct', "")
14
15 test.run(chdir = '.', arguments = '--random')
16
17 test.fail_test(test.stderr() !=
18                 "Warning:  the --random option is not yet implemented\n")
19
20 test.pass_test()
21