Index: chrome/browser/resources/chromeos/chromevox/tools/check_chromevox.py |
diff --git a/chrome/browser/resources/chromeos/chromevox/tools/check_chromevox.py b/chrome/browser/resources/chromeos/chromevox/tools/check_chromevox.py |
index 56a932e6750564b411bf0f778a5bec5b0784a9e9..d2b3f9abda7dfdbae758145303bb1c14bd06f5a0 100755 |
--- a/chrome/browser/resources/chromeos/chromevox/tools/check_chromevox.py |
+++ b/chrome/browser/resources/chromeos/chromevox/tools/check_chromevox.py |
@@ -14,6 +14,7 @@ compiled. A useful argument list is the output of the command |
import optparse |
import os |
+import re |
import sys |
from multiprocessing import pool |
@@ -75,7 +76,8 @@ def CheckChromeVox(changed_files=None): |
_CHROME_SOURCE_DIR, |
'chrome/third_party/chromevox/third_party/closure-library/' |
'closure/goog'))] |
- sources = ReadSources(roots, need_source_text=True) |
+ sources = ReadSources(roots, need_source_text=True, |
+ exclude=[re.compile('testing')]) |
work_pool = pool.Pool(len(_TOP_LEVEL_SCRIPTS)) |
try: |
results = [] |