| OLD | NEW |
| 1 #! -*- python -*- | 1 #! -*- python -*- |
| 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import atexit | 6 import atexit |
| 7 import glob | 7 import glob |
| 8 import os | 8 import os |
| 9 import platform | 9 import platform |
| 10 import shutil | 10 import shutil |
| (...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 744 'run_many_threads_sequential_test', | 744 'run_many_threads_sequential_test', |
| 745 'run_mmap_atomicity_test', | 745 'run_mmap_atomicity_test', |
| 746 'run_mmap_test', | 746 'run_mmap_test', |
| 747 # http://code.google.com/p/nativeclient/issues/detail?id=2142 | 747 # http://code.google.com/p/nativeclient/issues/detail?id=2142 |
| 748 'run_nacl_semaphore_test', | 748 'run_nacl_semaphore_test', |
| 749 'run_nacl_tls_unittest', | 749 'run_nacl_tls_unittest', |
| 750 # The next 2 tests seem flaky on QEMU | 750 # The next 2 tests seem flaky on QEMU |
| 751 'run_srpc_manifest_file_test', | 751 'run_srpc_manifest_file_test', |
| 752 'run_srpc_message_untrusted_test', | 752 'run_srpc_message_untrusted_test', |
| 753 'run_thread_stack_alloc_test', | 753 'run_thread_stack_alloc_test', |
| 754 'run_thread_suspension_test', |
| 754 'run_thread_test', | 755 'run_thread_test', |
| 755 'run_tool_tests', | 756 'run_tool_tests', |
| 756 'run_trusted_mmap_test', | 757 'run_trusted_mmap_test', |
| 757 ]) | 758 ]) |
| 758 | 759 |
| 759 tests_to_disable = set() | 760 tests_to_disable = set() |
| 760 if ARGUMENTS.get('disable_tests', '') != '': | 761 if ARGUMENTS.get('disable_tests', '') != '': |
| 761 tests_to_disable.update(ARGUMENTS['disable_tests'].split(',')) | 762 tests_to_disable.update(ARGUMENTS['disable_tests'].split(',')) |
| 762 | 763 |
| 763 def ShouldSkipTest(env, node_name): | 764 def ShouldSkipTest(env, node_name): |
| (...skipping 3077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3841 nacl_env.ValidateSdk() | 3842 nacl_env.ValidateSdk() |
| 3842 | 3843 |
| 3843 if BROKEN_TEST_COUNT > 0: | 3844 if BROKEN_TEST_COUNT > 0: |
| 3844 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3845 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 3845 if GetOption('brief_comstr'): | 3846 if GetOption('brief_comstr'): |
| 3846 msg += " Add --verbose to the command line for more information." | 3847 msg += " Add --verbose to the command line for more information." |
| 3847 print msg | 3848 print msg |
| 3848 | 3849 |
| 3849 # separate warnings from actual build output | 3850 # separate warnings from actual build output |
| 3850 Banner('B U I L D - O U T P U T:') | 3851 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |