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

Unified Diff: ppapi/native_client/tests/nacl_browser/pnacl_client_translator/nacl.scons

Issue 11145002: Remove more tests from the NaCl SCons build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698