blob: a062d269cd4d0ec1c10e9d10b19f395eff8dfa6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/usr/bin/env python
__revision__ = "test/option--W.py __REVISION__ __DATE__ __DEVELOPER__"
import TestSCons
import string
import sys
test = TestSCons.TestSCons()
test.write('SConstruct', "")
test.run(arguments = '-W foo',
stderr = "Warning: the -W option is not yet implemented\n")
test.run(arguments = '--what-if=foo',
stderr = "Warning: the --what-if option is not yet implemented\n")
test.run(arguments = '--new-file=foo',
stderr = "Warning: the --new-file option is not yet implemented\n")
test.run(arguments = '--assume-new=foo',
stderr = "Warning: the --assume-new option is not yet implemented\n")
test.pass_test()
|