| 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 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 'run_prctl_test', | 686 'run_prctl_test', |
| 687 'run_printf_test', | 687 'run_printf_test', |
| 688 'run_pwrite_test', | 688 'run_pwrite_test', |
| 689 'run_sigaction_test', | 689 'run_sigaction_test', |
| 690 'run_signal_sigbus_test', | 690 'run_signal_sigbus_test', |
| 691 'run_signal_test', | 691 'run_signal_test', |
| 692 'run_socket_test', | 692 'run_socket_test', |
| 693 'run_stack_alignment_test', | 693 'run_stack_alignment_test', |
| 694 'run_syscall_test', | 694 'run_syscall_test', |
| 695 'run_thread_test', | 695 'run_thread_test', |
| 696 |
| 697 # TODO(uekawa): Enable exception test when implementation is ready. |
| 698 'run_exception_test', # TODO(uekawa): disable before submitting because it
fails. |
| 696 ]) | 699 ]) |
| 697 | 700 |
| 698 | 701 |
| 699 # If a test is not in one of these suites, it will probally not be run on a | 702 # If a test is not in one of these suites, it will probally not be run on a |
| 700 # regular basis. These are the suites that will be run by the try bot or that | 703 # regular basis. These are the suites that will be run by the try bot or that |
| 701 # a large number of users may run by hand. | 704 # a large number of users may run by hand. |
| 702 MAJOR_TEST_SUITES = set([ | 705 MAJOR_TEST_SUITES = set([ |
| 703 'small_tests', | 706 'small_tests', |
| 704 'medium_tests', | 707 'medium_tests', |
| 705 'large_tests', | 708 'large_tests', |
| (...skipping 3316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4022 nacl_env.ValidateSdk() | 4025 nacl_env.ValidateSdk() |
| 4023 | 4026 |
| 4024 if BROKEN_TEST_COUNT > 0: | 4027 if BROKEN_TEST_COUNT > 0: |
| 4025 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 4028 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
| 4026 if GetOption('brief_comstr'): | 4029 if GetOption('brief_comstr'): |
| 4027 msg += " Add --verbose to the command line for more information." | 4030 msg += " Add --verbose to the command line for more information." |
| 4028 print msg | 4031 print msg |
| 4029 | 4032 |
| 4030 # separate warnings from actual build output | 4033 # separate warnings from actual build output |
| 4031 Banner('B U I L D - O U T P U T:') | 4034 Banner('B U I L D - O U T P U T:') |
| OLD | NEW |