Changeset 41af19c for tests/pybin/test_run.py
- Timestamp:
- Apr 16, 2020, 12:00:42 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 7215000, 9a7c88f
- Parents:
- 1c412aa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/test_run.py
r1c412aa r41af19c 45 45 46 46 @classmethod 47 def from_target(_, target):47 def new_target(_, target, arch): 48 48 test = Test() 49 49 test.name = os.path.basename(target) 50 50 test.path = os.path.relpath (os.path.dirname(target), settings.SRCDIR) 51 test.arch = settings.arch.target if settings.arch.cross_compileelse ''51 test.arch = arch.target if arch else '' 52 52 return test 53 53
Note: See TracChangeset
for help on using the changeset viewer.