Move 2.0 changes collected in branches/pending back to trunk for further
[scons.git] / test / option-v.py
index 433d6d04019d55acbb1e89b675f4ecd49bbc56ae..5065eda221aa9775a4aa6daaa00ab4c8b4f61191 100644 (file)
@@ -26,9 +26,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
 
 import TestCmd
 import TestSCons
-import re
-import string
-import sys
 
 test = TestSCons.TestSCons(match = TestCmd.match_re)
 
@@ -38,11 +35,9 @@ test.write('SConstruct', "")
 # by the packaging build.
 copyright_marker = '__' + 'COPYRIGHT' + '__'
 
-copyright_years = '2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008'
-
 fmt = '(%s|Copyright \\(c\\) %s The SCons Foundation)\n'
 
-copyright_line = fmt % (copyright_marker, copyright_years)
+copyright_line = fmt % (copyright_marker, TestSCons.copyright_years)
 
 # Windows may or may not print a line for the script version
 # depending on whether it's invoked through scons.py or scons.bat.
@@ -69,3 +64,9 @@ if not test.match_re(stdout, expect1) and not test.match_re(stdout, expect2):
 
 test.pass_test()
  
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4: