summaryrefslogtreecommitdiffstats
path: root/third_party
diff options
context:
space:
mode:
authordbeam <dbeam@chromium.org>2015-05-12 11:56:00 -0700
committerCommit bot <commit-bot@chromium.org>2015-05-12 18:56:10 +0000
commit8475c2900a3561de1a34f7f66b1fda3c8a125561 (patch)
treed76cb63df25436037c95cb580685f723d4e470b4 /third_party
parenta9152b02be0a220efb2f54f1d4010d2be7fa6dec (diff)
downloadchromium_src-8475c2900a3561de1a34f7f66b1fda3c8a125561.zip
chromium_src-8475c2900a3561de1a34f7f66b1fda3c8a125561.tar.gz
chromium_src-8475c2900a3561de1a34f7f66b1fda3c8a125561.tar.bz2
Make a generic third_party/closure_compiler/run_tests.py that runs more
unit tests on each continous build. build/ CL: https://codereview.chromium.org/1128313003 R=tbreisacher@chromium.org BUG=393873 NOTRY=true Review URL: https://codereview.chromium.org/1137933003 Cr-Commit-Position: refs/heads/master@{#329450}
Diffstat (limited to 'third_party')
-rwxr-xr-xthird_party/closure_compiler/run_tests.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/closure_compiler/run_tests.py b/third_party/closure_compiler/run_tests.py
new file mode 100755
index 0000000..0ff13b1
--- /dev/null
+++ b/third_party/closure_compiler/run_tests.py
@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+
+import compiler_customization_test
+import processor_test
+
+
+for test_module in [compiler_customization_test, processor_test]:
+ test_module.unittest.main(test_module)