| 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', | |
| 719 ]) | 718 ]) |
| 720 | 719 |
| 721 | 720 |
| 722 # 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 |
| 723 # 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 |
| 724 # a large number of users may run by hand. | 723 # a large number of users may run by hand. |
| 725 MAJOR_TEST_SUITES = set([ | 724 MAJOR_TEST_SUITES = set([ |
| 726 'small_tests', | 725 'small_tests', |
| 727 'medium_tests', | 726 'medium_tests', |
| 728 'large_tests', | 727 'large_tests', |
| (...skipping 3308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4037 nacl_env.ValidateSdk() | 4036 nacl_env.ValidateSdk() |
| 4038 | 4037 |
| 4039 if BROKEN_TEST_COUNT > 0: | 4038 if BROKEN_TEST_COUNT > 0: |
| 4040 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 4039 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 4041 if GetOption('brief_comstr'): | 4040 if GetOption('brief_comstr'): |
| 4042 msg += " Add --verbose to the command line for more information." | 4041 msg += " Add --verbose to the command line for more information." |
| 4043 print msg | 4042 print msg |
| 4044 | 4043 |
| 4045 # separate warnings from actual build output | 4044 # separate warnings from actual build output |
| 4046 Banner('B U I L D - O U T P U T:') | 4045 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |