Add more information error reporting from 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 TestSCons
6 import string
7 import sys
8
9 test = TestSCons.TestSCons()
10
11 test.write('SConstruct', "")
12
13 test.run(arguments = '--random',
14          stderr = "Warning:  the --random option is not yet implemented\n")
15
16 test.pass_test()
17