|
@@ -285,6 +285,10 @@ class Benchmarker:
|
|
############################################################
|
|
############################################################
|
|
def __run_tests(self, tests):
|
|
def __run_tests(self, tests):
|
|
for test in tests:
|
|
for test in tests:
|
|
|
|
+ if test.os == 'nt' and os.name != 'nt':
|
|
|
|
+ # this is a windows only test, but we're not on windows. abort.
|
|
|
|
+ continue
|
|
|
|
+
|
|
# If the user specified which tests to run, then
|
|
# If the user specified which tests to run, then
|
|
# we can skip over tests that are not in that list
|
|
# we can skip over tests that are not in that list
|
|
if self.test != None and test.name not in self.test:
|
|
if self.test != None and test.name not in self.test:
|