comparison tests/run-tests.py @ 34265:df1c290df034

tests: fix run-tests "slow test" check Look for bytes in a set of bytes objects.
author Augie Fackler <augie@google.com>
date Tue, 19 Sep 2017 00:07:23 -0400
parents 8999851a503f
children cd2ee4db8f95
comparison
equal deleted inserted replaced
34264:8999851a503f 34265:df1c290df034
1263 sys.exit(1) 1263 sys.exit(1)
1264 1264
1265 if ret != 0: 1265 if ret != 0:
1266 return False, stdout 1266 return False, stdout
1267 1267
1268 if 'slow' in reqs: 1268 if b'slow' in reqs:
1269 self._timeout = self._slowtimeout 1269 self._timeout = self._slowtimeout
1270 return True, None 1270 return True, None
1271 1271
1272 def _iftest(self, args): 1272 def _iftest(self, args):
1273 # implements "#if" 1273 # implements "#if"