Changeset a85e44c
- Timestamp:
- Dec 6, 2017, 11:49:31 AM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 16988e8
- Parents:
- 65197c2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/test.py
r65197c2 ra85e44c 42 42 if includes: 43 43 test_list = [x for x in test_list if 44 x. path.startswith( tuple(includes) )44 x.target().startswith( tuple(includes) ) 45 45 ] 46 46 … … 48 48 if excludes: 49 49 test_list = [x for x in test_list if not 50 x. path.startswith( tuple(excludes) )50 x.target().startswith( tuple(excludes) ) 51 51 ] 52 52
Note: See TracChangeset
for help on using the changeset viewer.