Show More
@@ -3118,8 +3118,8 b' class TestRunner(object):' | |||||
3118 | def _checktools(self): |
|
3118 | def _checktools(self): | |
3119 | """Ensure tools required to run tests are present.""" |
|
3119 | """Ensure tools required to run tests are present.""" | |
3120 | for p in self.REQUIREDTOOLS: |
|
3120 | for p in self.REQUIREDTOOLS: | |
3121 | if os.name == 'nt' and not p.endswith('.exe'): |
|
3121 | if os.name == 'nt' and not p.endswith(b'.exe'): | |
3122 | p += '.exe' |
|
3122 | p += b'.exe' | |
3123 | found = self._findprogram(p) |
|
3123 | found = self._findprogram(p) | |
3124 | if found: |
|
3124 | if found: | |
3125 | vlog("# Found prerequisite", p, "at", found) |
|
3125 | vlog("# Found prerequisite", p, "at", found) |
General Comments 0
You need to be logged in to leave comments.
Login now