| Index: ppapi/native_client/tests/nacl_browser/pnacl_client_translator/nacl.scons
|
| diff --git a/ppapi/native_client/tests/nacl_browser/pnacl_client_translator/nacl.scons b/ppapi/native_client/tests/nacl_browser/pnacl_client_translator/nacl.scons
|
| index 24b8240b477b6e9f3bb088604913424f15ad9ae7..3c4ab8da92a33c2f49a5ab945ec319c02a6d0737 100644
|
| --- a/ppapi/native_client/tests/nacl_browser/pnacl_client_translator/nacl.scons
|
| +++ b/ppapi/native_client/tests/nacl_browser/pnacl_client_translator/nacl.scons
|
| @@ -19,46 +19,6 @@ if not (env.Bit('bitcode') and env.Bit('pnacl_generate_pexe')):
|
| if env.Bit('nacl_glibc') and env.Bit('target_x86_64'):
|
| Return()
|
|
|
| -#----------------------------------------------------------------------
|
| -# Test pexe translation.
|
| -
|
| -# Specify the object file to prevent junk from getting left over
|
| -# in source directory. SCons will default to point "-o" to the source
|
| -# directory if it is an absolute directory.
|
| -test_example_obj = env.ComponentObject(
|
| - 'pnacl_test_example_obj',
|
| - '${SCONSTRUCT_DIR}/tests/ppapi_test_example/ppapi_test_example.cc')
|
| -
|
| -pexe_name = env.ProgramNameForNmf('pnacl_test_example')
|
| -
|
| -test_example_pexe = env.ComponentProgram(
|
| - pexe_name,
|
| - [test_example_obj],
|
| - EXTRA_LIBS=['ppapi',
|
| - 'ppapi_test_lib',
|
| - 'platform', # for CHECK
|
| - 'pthread',
|
| - 'gio',
|
| - ])
|
| -
|
| -# Grab test routines.
|
| -borrowed_file = '${STAGING_DIR}/ppapi_test_example.js',
|
| -
|
| -env.Publish(pexe_name,
|
| - 'run',
|
| - ['pnacl_test_example.html'])
|
| -
|
| -node = env.PPAPIBrowserTester(
|
| - 'pnacl_test_example.out',
|
| - url='pnacl_test_example.html',
|
| - nmf_names=['pnacl_test_example'],
|
| - files=env.ExtractPublishedFiles(pexe_name) + [borrowed_file])
|
| -
|
| -env.AddNodeToTestSuite(node,
|
| - ['chrome_browser_tests'],
|
| - 'run_pnacl_example_browser_test',
|
| - is_broken=env.PPAPIBrowserTesterIsBroken())
|
| -
|
| #### Test error handling.
|
|
|
| # We should add more cases, e.g., try a bad library to crash ld,
|
|
|