Changes in tests/test.py [6044200:f7d3215]
- File:
-
- 1 edited
-
tests/test.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/test.py
r6044200 rf7d3215 19 19 20 20 def matchTest(path): 21 match = re.search(" ^%s\/([\w\/\-_]*).expect\/([\w\-_]+)(\.[\w\-_]+)?\.txt$" % settings.SRCDIR, path)21 match = re.search("%s\/([\w\/\-_]*).expect\/([\w\-_]+)(\.[\w\-_]+)?\.txt" % settings.SRCDIR, path) 22 22 if match : 23 23 test = Test() … … 34 34 # reads the directory ./.expect and indentifies the tests 35 35 def listTests( includes, excludes ): 36 includes = [canonicalPath( i ) for i in includes] if includes else None 37 excludes = [canonicalPath( i ) for i in excludes] if excludes else None 38 36 39 # tests directly in the .expect folder will always be processed 37 40 test_list = findTests()
Note:
See TracChangeset
for help on using the changeset viewer.