| Index: tests/pnacl_native_objects/nacl.scons
|
| diff --git a/tests/pnacl_native_objects/nacl.scons b/tests/pnacl_native_objects/nacl.scons
|
| index 4741837376f8fc7446f578191fba68247ee93718..b4daf497214da1b397bf954266fb53c47288760a 100644
|
| --- a/tests/pnacl_native_objects/nacl.scons
|
| +++ b/tests/pnacl_native_objects/nacl.scons
|
| @@ -1,3 +1,4 @@
|
| +# -*- python -*-
|
| # Copyright (c) 2013 The Native Client Authors. All rights reserved.
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
| @@ -8,6 +9,10 @@ Import('env')
|
| if not env.Bit('bitcode') or env.Bit('pnacl_generate_pexe'):
|
| Return()
|
|
|
| +# TODO(uekawa): Fix this test for Non-SFI mode.
|
| +if env.Bit('nonsfi_nacl'):
|
| + Return()
|
| +
|
| tests = []
|
| bc_env = env.Clone()
|
| bc_env.Replace(CCFLAGS=[], LINKFLAGS=[])
|
|
|