tests/run-tests.py
changeset 25055 d79258e30499
parent 25053 4f2c74ef8128
child 25056 e5f6c6ec21b8
equal deleted inserted replaced
25054:af5a778f8e2e 25055:d79258e30499
  1398             if not os.path.exists(test.path):
  1398             if not os.path.exists(test.path):
  1399                 result.addSkip(test, "Doesn't exist")
  1399                 result.addSkip(test, "Doesn't exist")
  1400                 continue
  1400                 continue
  1401 
  1401 
  1402             if not (self._whitelist and test.name in self._whitelist):
  1402             if not (self._whitelist and test.name in self._whitelist):
  1403                 if self._blacklist and test.name in self._blacklist:
  1403                 if self._blacklist and test.bname in self._blacklist:
  1404                     result.addSkip(test, 'blacklisted')
  1404                     result.addSkip(test, 'blacklisted')
  1405                     continue
  1405                     continue
  1406 
  1406 
  1407                 if self._retest and not os.path.exists(test.errpath):
  1407                 if self._retest and not os.path.exists(test.errpath):
  1408                     result.addIgnore(test, 'not retesting')
  1408                     result.addIgnore(test, 'not retesting')