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

Side by Side Diff: SConstruct

Issue 1212613002: Non-SFI mode: Add Linux asynchronous signal support (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Disabled the async signal test for glibc Created 5 years, 5 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
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 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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:')
OLDNEW
« no previous file with comments | « no previous file | documentation/nonsfi_mode_async_signals.txt » ('j') | documentation/nonsfi_mode_async_signals.txt » ('J')

Powered by Google App Engine
This is Rietveld 408576698