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

Unified Diff: tools/clang/blink_gc_plugin/tests/legacy_naming/test.py

Issue 2578103003: Add use-chromium-style-naming option to Blink GC plugin. (Closed)
Patch Set: Rebase Created 4 years 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: tools/clang/blink_gc_plugin/tests/legacy_naming/test.py
diff --git a/tools/clang/blink_gc_plugin/tests/test.py b/tools/clang/blink_gc_plugin/tests/legacy_naming/test.py
similarity index 94%
copy from tools/clang/blink_gc_plugin/tests/test.py
copy to tools/clang/blink_gc_plugin/tests/legacy_naming/test.py
index a380cc63d9e1c49ea47b66bdfe2f1858c3e63a66..475f6fbff907b66eeb9f93c8342f0afe39a0da3f 100755
--- a/tools/clang/blink_gc_plugin/tests/test.py
+++ b/tools/clang/blink_gc_plugin/tests/legacy_naming/test.py
@@ -9,7 +9,7 @@ import subprocess
import sys
script_dir = os.path.dirname(os.path.realpath(__file__))
-tool_dir = os.path.abspath(os.path.join(script_dir, '../../pylib'))
+tool_dir = os.path.abspath(os.path.join(script_dir, '../../../pylib'))
sys.path.insert(0, tool_dir)
from clang import plugin_testing
@@ -27,7 +27,7 @@ class BlinkGcPluginTest(plugin_testing.ClangPluginTest):
if os.path.exists('%s.graph.json' % test_name):
try:
actual = subprocess.check_output(
- ['python', '../process-graph.py', '-c',
+ ['python', '../../process-graph.py', '-c',
'%s.graph.json' % test_name],
stderr=subprocess.STDOUT)
except subprocess.CalledProcessError, e:

Powered by Google App Engine
This is Rietveld 408576698