Update regression tests to match changes in runtest.py
[scons.git] / test / option--W.py
index 2e9729d162da909450930a3e6417e69a8951b0b1..9f6fbe4960d87ed4a217aca58326d61b004d8359 100644 (file)
 __revision__ = "__FILE__ __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")
+         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")
+         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")
+         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")
+         stderr = "Warning:  the --assume-new option is not yet implemented\n")
 
 test.pass_test()
  
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4: