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 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
692 'run_fork_test', | 692 'run_fork_test', |
693 'run_getpid_test', | 693 'run_getpid_test', |
694 'run_hello_world_test', | 694 'run_hello_world_test', |
695 'run_irt_futex_test', | 695 'run_irt_futex_test', |
696 'run_malloc_realloc_calloc_free_test', | 696 'run_malloc_realloc_calloc_free_test', |
697 'run_mmap_test', | 697 'run_mmap_test', |
698 'run_nanosleep_test', | 698 'run_nanosleep_test', |
699 'run_prctl_test', | 699 'run_prctl_test', |
700 'run_printf_test', | 700 'run_printf_test', |
701 'run_pwrite_test', | 701 'run_pwrite_test', |
| 702 'run_random_test', |
702 'run_sigaction_test', | 703 'run_sigaction_test', |
703 'run_signal_sigbus_test', | 704 'run_signal_sigbus_test', |
704 'run_signal_test', | 705 'run_signal_test', |
705 'run_socket_test', | 706 'run_socket_test', |
706 'run_stack_alignment_test', | 707 'run_stack_alignment_test', |
707 'run_syscall_test', | 708 'run_syscall_test', |
708 'run_thread_test', | 709 'run_thread_test', |
709 ]) | 710 ]) |
710 | 711 |
711 | 712 |
(...skipping 3336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4048 nacl_env.ValidateSdk() | 4049 nacl_env.ValidateSdk() |
4049 | 4050 |
4050 if BROKEN_TEST_COUNT > 0: | 4051 if BROKEN_TEST_COUNT > 0: |
4051 msg = "There are %d broken tests." % BROKEN_TEST_COUNT | 4052 msg = "There are %d broken tests." % BROKEN_TEST_COUNT |
4052 if GetOption('brief_comstr'): | 4053 if GetOption('brief_comstr'): |
4053 msg += " Add --verbose to the command line for more information." | 4054 msg += " Add --verbose to the command line for more information." |
4054 print msg | 4055 print msg |
4055 | 4056 |
4056 # separate warnings from actual build output | 4057 # separate warnings from actual build output |
4057 Banner('B U I L D - O U T P U T:') | 4058 Banner('B U I L D - O U T P U T:') |
OLD | NEW |