Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: SConstruct

Issue 1300883003: Revert of Non-SFI mode: Add Linux asynchronous signal support (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | documentation/nonsfi_mode_async_signals.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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:')
OLDNEW
« no previous file with comments | « no previous file | documentation/nonsfi_mode_async_signals.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698