Steven checked in some changes yesterday which fixed a great number of
[scons.git] / test / option-r.py
index 82dacbabd29192dc4bb996a7f1563108ddcb209f..0c124d121ea4ad68880744c353ea0cca54d7ee68 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (c) 2001, 2002 Steven Knight
+# __COPYRIGHT__
 #
 # Permission is hereby granted, free of charge, to any person obtaining
 # a copy of this software and associated documentation files (the
 __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")
+test.run(arguments = '-r .',
+         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")
+test.run(arguments = '--no-builtin-rules .',
+         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: