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): |