http://scons.tigris.org/issues/show_bug.cgi?id=2345
[scons.git] / test / option-t.py
index 42c660253c58ed1f43967e96e662f64f57e9e228..f7ec081e98bcf6527eab70b121ab9d3d14da7718 100644 (file)
@@ -1,26 +1,46 @@
 #!/usr/bin/env python
-
-__revision__ = "test/option-t.py __REVISION__ __DATE__ __DEVELOPER__"
-
-import TestCmd
-import string
-import sys
-
-test = TestCmd.TestCmd(program = 'scons.py',
-                       workdir = '',
-                       interpreter = 'python')
+#
+# __COPYRIGHT__
+#
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+#
+
+__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
+
+import TestSCons
+
+test = TestSCons.TestSCons()
 
 test.write('SConstruct', "")
 
-test.run(chdir = '.', arguments = '-t')
+test.run(arguments = '-t .',
+         stderr = "Warning:  ignoring -t option\n")
 
-test.fail_test(test.stderr() !=
-               "Warning:  ignoring -t option\n")
-
-test.run(chdir = '.', arguments = '--touch')
-
-test.fail_test(test.stderr() !=
-               "Warning:  ignoring --touch option\n")
+test.run(arguments = '--touch .',
+         stderr = "Warning:  ignoring --touch option\n")
 
 test.pass_test()
  
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4: