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