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

Unified Diff: mojo/devtools/common/mojo_test

Issue 1701193002: [fusl] Build example apptests under fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: rebase Created 4 years, 10 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 | « BUILD.gn ('k') | mojo/tools/data/fusl_apptests » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/devtools/common/mojo_test
diff --git a/mojo/devtools/common/mojo_test b/mojo/devtools/common/mojo_test
index d72bb826040951b5ffa7536a35b7868e0ca692b6..59f5310e2554a1283c1800510dc597f008a40d0c 100755
--- a/mojo/devtools/common/mojo_test
+++ b/mojo/devtools/common/mojo_test
@@ -11,6 +11,7 @@ TODO(vtl|msw): Add a way of specifying data dependencies.
import argparse
import logging
import sys
+import os.path
from devtoolslib import apptest_dart
from devtoolslib import apptest_gtest
@@ -80,7 +81,10 @@ def main():
return 1
target_os = "android" if script_args.android else "linux"
- test_list_globals = {"target_os": target_os}
+ test_list_globals = {
+ "shell_path": config.shell_path,
+ "target_os": target_os,
+ }
exec script_args.test_list_file in test_list_globals
test_list = test_list_globals["tests"]
« no previous file with comments | « BUILD.gn ('k') | mojo/tools/data/fusl_apptests » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698