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

Side by Side Diff: tests/glibc_file64_test/nacl.scons

Issue 7242011: Get rid of assumptions about ".nexe" extension. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 6 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 | « tests/gc_instrumentation/nacl.scons ('k') | tests/glibc_static_test/nacl.scons » ('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 2011 The Native Client Authors. All rights reserved. 2 # Copyright 2011 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can 3 # Use of this source code is governed by a BSD-style license that can
4 # be found in the LICENSE file. 4 # be found in the LICENSE file.
5 5
6 # This test checks that all file functions are not redirected to their 6 # This test checks that all file functions are not redirected to their
7 # versions with suffix 64. In this case test program will not link 7 # versions with suffix 64. In this case test program will not link
8 # because glibc doesn't have them. 8 # because glibc doesn't have them.
9 9
10 Import('env') 10 Import('env')
11 11
12 # We test existence of functions that are not present in newlib. 12 # We test existence of functions that are not present in newlib.
13 if not env.Bit('nacl_glibc'): 13 if not env.Bit('nacl_glibc'):
14 Return() 14 Return()
15 15
16 env.ComponentProgram('test_file.nexe', 'test_file.c') 16 env.ComponentProgram('test_file', 'test_file.c')
17 # We don't want to execute this nexe 17 # We don't want to execute this nexe
OLDNEW
« no previous file with comments | « tests/gc_instrumentation/nacl.scons ('k') | tests/glibc_static_test/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698