Changeset 64cf022 for tests/pybin/settings.py
- Timestamp:
- Apr 17, 2020, 4:47:44 PM (2 years ago)
- Branches:
- arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr
- Children:
- 692e6f1
- Parents:
- 5d10e8a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
r5d10e8a r64cf022 81 81 return True if not arch else self.target == arch 82 82 83 @ classmethod84 def make_canonical( _,arch):83 @staticmethod 84 def make_canonical(arch): 85 85 return Architecture.KnownArchitectures[arch] 86 86 … … 105 105 self.total = Timeouts.check(tg) 106 106 107 @ classmethod108 def check( _,value):107 @staticmethod 108 def check(value): 109 109 if value < 1: 110 110 print("Timeouts must be at least 1 second", file=sys.stderr)
Note: See TracChangeset
for help on using the changeset viewer.