Chromium Code Reviews| 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 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 757 'run_many_threads_sequential_test', | 757 'run_many_threads_sequential_test', |
| 758 'run_mmap_atomicity_test', | 758 'run_mmap_atomicity_test', |
| 759 'run_mmap_test', | 759 'run_mmap_test', |
| 760 # http://code.google.com/p/nativeclient/issues/detail?id=2142 | 760 # http://code.google.com/p/nativeclient/issues/detail?id=2142 |
| 761 'run_nacl_semaphore_test', | 761 'run_nacl_semaphore_test', |
| 762 'run_nacl_tls_unittest', | 762 'run_nacl_tls_unittest', |
| 763 # The next 2 tests seem flaky on QEMU | 763 # The next 2 tests seem flaky on QEMU |
| 764 'run_srpc_manifest_file_test', | 764 'run_srpc_manifest_file_test', |
| 765 'run_srpc_message_untrusted_test', | 765 'run_srpc_message_untrusted_test', |
| 766 'run_thread_stack_alloc_test', | 766 'run_thread_stack_alloc_test', |
| 767 'run_thread_suspension_test', | |
|
bradn
2012/05/18 19:56:35
? doesn't work on qemu?
Mark Seaborn
2012/05/21 15:03:57
That's correct, it doesn't work under qemu-arm. I
| |
| 767 'run_thread_test', | 768 'run_thread_test', |
| 768 'run_tool_tests', | 769 'run_tool_tests', |
| 769 'run_trusted_mmap_test', | 770 'run_trusted_mmap_test', |
| 770 ]) | 771 ]) |
| 771 | 772 |
| 772 tests_to_disable = set() | 773 tests_to_disable = set() |
| 773 if ARGUMENTS.get('disable_tests', '') != '': | 774 if ARGUMENTS.get('disable_tests', '') != '': |
| 774 tests_to_disable.update(ARGUMENTS['disable_tests'].split(',')) | 775 tests_to_disable.update(ARGUMENTS['disable_tests'].split(',')) |
| 775 | 776 |
| 776 def ShouldSkipTest(env, node_name): | 777 def ShouldSkipTest(env, node_name): |
| (...skipping 3012 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3789 nacl_env.ValidateSdk() | 3790 nacl_env.ValidateSdk() |
| 3790 | 3791 |
| 3791 if BROKEN_TEST_COUNT > 0: | 3792 if BROKEN_TEST_COUNT > 0: |
| 3792 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 3793 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 3793 if GetOption('brief_comstr'): | 3794 if GetOption('brief_comstr'): |
| 3794 msg += " Add --verbose to the command line for more information." | 3795 msg += " Add --verbose to the command line for more information." |
| 3795 print msg | 3796 print msg |
| 3796 | 3797 |
| 3797 # separate warnings from actual build output | 3798 # separate warnings from actual build output |
| 3798 Banner('B U I L D - O U T P U T:') | 3799 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |