aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-09-22 09:13:03 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-09-22 09:13:03 -0700
commitfafeeb38c1a69931e0517165a8c6636d68767914 (patch)
tree7ef6c8ad0d741b94a6f491acb53c9995cc4dca6d /tools
parent256d3dff68b9252f446ab96ee8ea7bf16c594ccd (diff)
Fixed some style issues
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/run_tests.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index de644b5946..7d3eade262 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -132,6 +132,7 @@ def get_c_tests(travis, test_lang) :
not (travis and tgt['flaky'])]
return binaries
+
class CLanguage(object):
def __init__(self, make_target, test_lang):
@@ -144,7 +145,7 @@ class CLanguage(object):
binaries = get_c_tests(travis, self.test_lang)
for target in binaries:
if config.build_config in tgt['exclude_configs']:
- continue;
+ continue
if self.platform == 'windows':
binary = 'vsprojects/%s/%s.exe' % (
_WINDOWS_CONFIG[config.build_config], target['name'])
@@ -174,6 +175,7 @@ class CLanguage(object):
def __str__(self):
return self.make_target
+
def gyp_test_paths(travis, config=None):
binaries = get_c_tests(travis, 'c')
out = []
@@ -185,6 +187,7 @@ def gyp_test_paths(travis, config=None):
out.append(binary)
return sorted(out)
+
class GYPCLanguage(object):
def test_specs(self, config, travis):
@@ -206,6 +209,7 @@ class GYPCLanguage(object):
def __str__(self):
return 'gyp'
+
class NodeLanguage(object):
def test_specs(self, config, travis):