Add automatic substitution on filename lines.
[scons.git] / test / option--wf.py
1 #!/usr/bin/env python
2
3 __revision__ = "__FILE__ __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 = '--write-filenames=FILE',
14          stderr = "Warning:  the --write-filenames option is not yet implemented\n")
15
16 test.pass_test()
17