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

Side by Side Diff: SConstruct

Issue 298443002: Remove unused support for SysV shared memory (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/trusted/desc/BUILD.gn » ('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 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 nacl_glibc_skiplist = set([ 624 nacl_glibc_skiplist = set([
625 # Struct layouts differ. 625 # Struct layouts differ.
626 'run_abi_test', 626 'run_abi_test',
627 # Syscall wrappers not implemented yet. 627 # Syscall wrappers not implemented yet.
628 'run_sysbasic_test', 628 'run_sysbasic_test',
629 'run_sysbrk_test', 629 'run_sysbrk_test',
630 # Fails because clock() is not hooked up. 630 # Fails because clock() is not hooked up.
631 'run_timefuncs_test', 631 'run_timefuncs_test',
632 # Needs further investigation. 632 # Needs further investigation.
633 'sdk_minimal_test', 633 'sdk_minimal_test',
634 # run_srpc_sysv_shm_test fails because:
635 # 1) it uses fstat(), while we only have an fstat64() wrapper;
636 # 2) the test needs an explicit fflush(stdout) call because the
637 # process is killed without exit() being called.
638 'run_srpc_sysv_shm_test',
639 # This test fails with nacl-glibc: glibc reports an internal 634 # This test fails with nacl-glibc: glibc reports an internal
640 # sanity check failure in free(). 635 # sanity check failure in free().
641 # TODO(robertm): This needs further investigation. 636 # TODO(robertm): This needs further investigation.
642 'run_ppapi_event_test', 637 'run_ppapi_event_test',
643 'run_srpc_ro_file_test', 638 'run_srpc_ro_file_test',
644 'run_ppapi_geturl_valid_test', 639 'run_ppapi_geturl_valid_test',
645 'run_ppapi_geturl_invalid_test', 640 'run_ppapi_geturl_invalid_test',
646 # http://code.google.com/p/chromium/issues/detail?id=108131 641 # http://code.google.com/p/chromium/issues/detail?id=108131
647 # we would need to list all of the glibc components as 642 # we would need to list all of the glibc components as
648 # web accessible resources in the extensions's manifest.json, 643 # web accessible resources in the extensions's manifest.json,
(...skipping 3212 matching lines...) Expand 10 before | Expand all | Expand 10 after
3861 nacl_env.ValidateSdk() 3856 nacl_env.ValidateSdk()
3862 3857
3863 if BROKEN_TEST_COUNT > 0: 3858 if BROKEN_TEST_COUNT > 0:
3864 msg = "There are %d broken tests." % BROKEN_TEST_COUNT 3859 msg = "There are %d broken tests." % BROKEN_TEST_COUNT
3865 if GetOption('brief_comstr'): 3860 if GetOption('brief_comstr'):
3866 msg += " Add --verbose to the command line for more information." 3861 msg += " Add --verbose to the command line for more information."
3867 print msg 3862 print msg
3868 3863
3869 # separate warnings from actual build output 3864 # separate warnings from actual build output
3870 Banner('B U I L D - O U T P U T:') 3865 Banner('B U I L D - O U T P U T:')
OLDNEW
« no previous file with comments | « no previous file | src/trusted/desc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698