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

Unified Diff: mojo/tools/run_mojom_translator_python_tests.py

Issue 1413343006: Break the circular dependency in the new mojom bindings generation pipeline. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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: mojo/tools/run_mojom_translator_python_tests.py
diff --git a/mojo/tools/run_mojom_translator_python_tests.py b/mojo/tools/run_mojom_translator_python_tests.py
index 6cb07b9b9041a4aa16442faf5291dec480ab387a..c62c8f29e74abb9d29a807125a91fc275ef2c9a1 100755
--- a/mojo/tools/run_mojom_translator_python_tests.py
+++ b/mojo/tools/run_mojom_translator_python_tests.py
@@ -32,8 +32,9 @@ class PythonMojomTestRunner(MojoPythonTestRunner):
def main():
- test_dir = os.path.join('mojo', 'public', 'tools', 'bindings', 'pylib')
- test_module = 'mojom.generate.mojom_translator_unittest'
+ test_dir = os.path.join(
+ 'mojo', 'public', 'tools', 'bindings', 'pylib', 'mojom', 'generate')
+ test_module = 'mojom_translator_unittest'
runner = PythonMojomTestRunner(test_dir, test_module=test_module)
sys.exit(runner.run())

Powered by Google App Engine
This is Rietveld 408576698