Steven checked in some changes yesterday which fixed a great number of
[scons.git] / test / option-r.py
index ad58f11b9e2ebd26673c2052d7eae1f3255fb6ad..0c124d121ea4ad68880744c353ea0cca54d7ee68 100644 (file)
 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
 
 import TestSCons
-import string
-import sys
 
 test = TestSCons.TestSCons()
 
 test.write('SConstruct', "")
 
 test.run(arguments = '-r .',
-        stderr = "Warning:  the -r option is not yet implemented\n")
+         stderr = "Warning:  the -r option is not yet implemented\n")
 
 test.run(arguments = '--no-builtin-rules .',
-        stderr = "Warning:  the --no-builtin-rules option is not yet implemented\n")
+         stderr = "Warning:  the --no-builtin-rules 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: