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

Side by Side Diff: SConstruct

Issue 616813002: Non-SFI Mode: Enable compiling exception_test for x86-32. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: workaround part 2 Created 6 years, 2 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 | site_scons/site_tools/naclsdk.py » ('j') | site_scons/site_tools/naclsdk.py » ('J')
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 675 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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:')
OLDNEW
« no previous file with comments | « no previous file | site_scons/site_tools/naclsdk.py » ('j') | site_scons/site_tools/naclsdk.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698