Chromium Code Reviews| Index: mojo/tools/get_test_list.py |
| diff --git a/mojo/tools/get_test_list.py b/mojo/tools/get_test_list.py |
| index dedba5d8db2af10d2b24115187b8237debd2cf36..13cee6bc22fd5b70646667a2d7a611aa976409b3 100755 |
| --- a/mojo/tools/get_test_list.py |
| +++ b/mojo/tools/get_test_list.py |
| @@ -114,7 +114,9 @@ def GetTestList(config, verbose_count=0): |
| "--build-dir=" + build_dir]) |
| # NaCl tests (Linux only): |
| - if target_os == Config.OS_LINUX and config.sanitizer != Config.SANITIZER_ASAN: |
| + if (target_os == Config.OS_LINUX and |
| + config.sanitizer != Config.SANITIZER_ASAN and |
| + ShouldRunTest(Config.TEST_TYPE_DEFAULT, Config.TEST_TYPE_UNIT, "app") ): |
|
viettrungluu
2015/05/14 22:49:38
nit: no space before second )
|
| AddEntry("NaCl tests", |
| [os.path.join(build_dir, "monacl_shell"), |
| os.path.join(build_dir, "irt_" + config.target_cpu, |