| Index: mojo/tools/get_test_list.py
|
| diff --git a/mojo/tools/get_test_list.py b/mojo/tools/get_test_list.py
|
| index 73c7d3f0ec0dbe341c7175c855d75da34fdcfd49..f8ea8cab765c36eff83b00baf92bd332e62df6b4 100755
|
| --- a/mojo/tools/get_test_list.py
|
| +++ b/mojo/tools/get_test_list.py
|
| @@ -100,6 +100,12 @@ def GetTestList(config, verbose_count=0):
|
| [os.path.join("mojo", "tools", "apptest_runner.py"),
|
| os.path.join("mojo", "tools", "data", "apptests"),
|
| build_dir] + verbose_flags)
|
| + # Fusl app tests (Linux excluding Android):
|
| + 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)
|
| # Non-SFI NaCl app tests (Linux including Android, no asan):
|
| if config.sanitizer != Config.SANITIZER_ASAN:
|
| AddXvfbEntry("Non-SFI NaCl App tests",
|
|
|