summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2009-03-18 07:24:36 (GMT)
committerSteven Knight <knight@baldmt.com>2009-03-18 07:24:36 (GMT)
commit3469e3b99156774d1f6cbd2efc12a477a2799faf (patch)
treee7d439fdcf951b55968d520ef3b3f6f07c55ee12 /src
parentefa6c9777b0be0fc3011cba0080916fc43b80a8c (diff)
downloadSCons-3469e3b99156774d1f6cbd2efc12a477a2799faf.zip
SCons-3469e3b99156774d1f6cbd2efc12a477a2799faf.tar.gz
SCons-3469e3b99156774d1f6cbd2efc12a477a2799faf.tar.bz2
Add a missing test.pass_test() line to test/Java nested-classes.py.
Update src/test_strings.py to verify these files all have an appropriate '\.pass_test()' line.
Diffstat (limited to 'src')
-rw-r--r--src/test_strings.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test_strings.py b/src/test_strings.py
index 25f2370..3dc1888 100644
--- a/src/test_strings.py
+++ b/src/test_strings.py
@@ -111,6 +111,13 @@ class CheckUnexpandedStrings(Checker):
def must_be_built(self):
return None
+class CheckPassTest(Checker):
+ expressions = [
+ re.compile(r'\.pass_test()'),
+ ]
+ def must_be_built(self):
+ return None
+
class CheckExpandedCopyright(Checker):
expressions = [
re.compile('Copyright.*The SCons Foundation'),
@@ -140,6 +147,14 @@ check_list = [
search_list = [ '*.py' ],
),
+ CheckPassTest(
+ 'test',
+ search_list = [ '*.py' ],
+ remove_list = [
+ 'Fortran/common.py',
+ ],
+ ),
+
CheckExpandedCopyright(
build_scons,
remove_list = [