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

Unified Diff: mojo/tools/get_test_list.py

Issue 1701193002: [fusl] Build example apptests under fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: actually run tests 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
Index: mojo/tools/get_test_list.py
diff --git a/mojo/tools/get_test_list.py b/mojo/tools/get_test_list.py
index 11c416da99373b1c9b624c8ae4c23a77a4b614c1..b2f54935acb72d9b5df6eb71c78257256068bd0b 100755
--- a/mojo/tools/get_test_list.py
+++ b/mojo/tools/get_test_list.py
@@ -107,6 +107,12 @@ def GetTestList(config, verbose_count=0):
os.path.join("mojo", "tools", "data",
"nacl_nonsfi_apptests"),
build_dir] + verbose_flags)
+ # Fusl app tests (Linux excluding Android)
viettrungluu 2016/02/17 22:18:04 nit: comment needs ':' Also, I'd stick this block
kulakowski 2016/02/17 22:41:52 Done.
+ if (target_os == Config.OS_LINUX):
+ AddXvfbEntry("Fusl app tests",
+ [os.path.join("mojo", "tools", "apptest_runner.py"),
+ os.path.join("mojo", "tools", "data", "fusl_apptests"),
+ build_dir] + verbose_flags)
# NaCl app tests (Linux excluding Android):
if (target_os == Config.OS_LINUX and
config.sanitizer != Config.SANITIZER_ASAN):

Powered by Google App Engine
This is Rietveld 408576698