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

Unified Diff: mojo/tools/run_mojo_python_bindings_tests.py

Issue 549123002: mojo: Fix python bindings tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/tools/run_mojo_python_bindings_tests.py
diff --git a/mojo/tools/run_mojo_python_bindings_tests.py b/mojo/tools/run_mojo_python_bindings_tests.py
index b7b2e28c754a0d57431912d319c519d603f1eed5..916c68d8754e53a956863787bdc5b0c050916667 100755
--- a/mojo/tools/run_mojo_python_bindings_tests.py
+++ b/mojo/tools/run_mojo_python_bindings_tests.py
@@ -15,7 +15,7 @@ from mojo_python_tests_runner import MojoPythonTestRunner
class PythonBindingsTestRunner(MojoPythonTestRunner):
def add_custom_commandline_options(self, parser):
- parser.add_argument('--build_dir', action='store',
+ parser.add_argument('--build-dir', action='store',
help='path to the build output directory')
def apply_customization(self, args):
@@ -26,7 +26,6 @@ class PythonBindingsTestRunner(MojoPythonTestRunner):
python_gen_dir = os.path.join(
args.build_dir,
'gen', 'mojo', 'public', 'interfaces', 'bindings', 'tests')
- print python_gen_dir
if python_gen_dir not in sys.path:
sys.path.append(python_gen_dir)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698