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

Side by Side Diff: SConstruct

Issue 722423003: Fix stack alignment of child threads on ARM. (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: fix comment Created 6 years 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 | src/nonsfi/linux/linux_pthread_private.c » ('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 686 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_random_test',
703 'run_sigaction_test', 703 'run_sigaction_test',
704 'run_signal_sigbus_test', 704 'run_signal_sigbus_test',
705 'run_signal_test', 705 'run_signal_test',
706 'run_socket_test', 706 'run_socket_test',
707 'run_stack_alignment_asm_test',
707 'run_stack_alignment_test', 708 'run_stack_alignment_test',
708 'run_syscall_test', 709 'run_syscall_test',
709 'run_thread_test', 710 'run_thread_test',
710 ]) 711 ])
711 712
712 713
713 # If a test is not in one of these suites, it will probally not be run on a 714 # If a test is not in one of these suites, it will probally not be run on a
714 # regular basis. These are the suites that will be run by the try bot or that 715 # regular basis. These are the suites that will be run by the try bot or that
715 # a large number of users may run by hand. 716 # a large number of users may run by hand.
716 MAJOR_TEST_SUITES = set([ 717 MAJOR_TEST_SUITES = set([
(...skipping 3326 matching lines...) Expand 10 before | Expand all | Expand 10 after
4043 nacl_env.ValidateSdk() 4044 nacl_env.ValidateSdk()
4044 4045
4045 if BROKEN_TEST_COUNT > 0: 4046 if BROKEN_TEST_COUNT > 0:
4046 msg = "There are %d broken tests." % BROKEN_TEST_COUNT 4047 msg = "There are %d broken tests." % BROKEN_TEST_COUNT
4047 if GetOption('brief_comstr'): 4048 if GetOption('brief_comstr'):
4048 msg += " Add --verbose to the command line for more information." 4049 msg += " Add --verbose to the command line for more information."
4049 print msg 4050 print msg
4050 4051
4051 # separate warnings from actual build output 4052 # separate warnings from actual build output
4052 Banner('B U I L D - O U T P U T:') 4053 Banner('B U I L D - O U T P U T:')
OLDNEW
« no previous file with comments | « no previous file | src/nonsfi/linux/linux_pthread_private.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698