Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3116)

Unified Diff: chrome/browser/resources/chromeos/chromevox/tools/check_chromevox.py

Issue 342153003: Add ChromeVox braille_util_test to chromevox_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 = []

Powered by Google App Engine
This is Rietveld 408576698