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 json | 7 import json |
8 import os | 8 import os |
9 import platform | 9 import platform |
10 import re | 10 import re |
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
708 'run_random_test', | 708 'run_random_test', |
709 'run_rlimit_test', | 709 'run_rlimit_test', |
710 'run_sigaction_test', | 710 'run_sigaction_test', |
711 'run_signal_sigbus_test', | 711 'run_signal_sigbus_test', |
712 'run_signal_test', | 712 'run_signal_test', |
713 'run_socket_test', | 713 'run_socket_test', |
714 'run_stack_alignment_asm_test', | 714 'run_stack_alignment_asm_test', |
715 'run_stack_alignment_test', | 715 'run_stack_alignment_test', |
716 'run_syscall_test', | 716 'run_syscall_test', |
717 'run_thread_test', | 717 'run_thread_test', |
| 718 'run_user_async_signal_test', |
718 ]) | 719 ]) |
719 | 720 |
720 | 721 |
721 # If a test is not in one of these suites, it will probally not be run on a | 722 # If a test is not in one of these suites, it will probally not be run on a |
722 # regular basis. These are the suites that will be run by the try bot or that | 723 # regular basis. These are the suites that will be run by the try bot or that |
723 # a large number of users may run by hand. | 724 # a large number of users may run by hand. |
724 MAJOR_TEST_SUITES = set([ | 725 MAJOR_TEST_SUITES = set([ |
725 'small_tests', | 726 'small_tests', |
726 'medium_tests', | 727 'medium_tests', |
727 'large_tests', | 728 'large_tests', |
(...skipping 3303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4031 nacl_env.ValidateSdk() | 4032 nacl_env.ValidateSdk() |
4032 | 4033 |
4033 if BROKEN_TEST_COUNT > 0: | 4034 if BROKEN_TEST_COUNT > 0: |
4034 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 4035 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
4035 if GetOption('brief_comstr'): | 4036 if GetOption('brief_comstr'): |
4036 msg += " Add --verbose to the command line for more information." | 4037 msg += " Add --verbose to the command line for more information." |
4037 print msg | 4038 print msg |
4038 | 4039 |
4039 # separate warnings from actual build output | 4040 # separate warnings from actual build output |
4040 Banner('B U I L D - O U T P U T:') | 4041 Banner('B U I L D - O U T P U T:') |
OLD | NEW |