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

Unified Diff: tests/earth/nacl.scons

Issue 7745047: Enable browser tests with glibc. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 4 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
« no previous file with comments | « tests/dynamic_code_loading/nacl.scons ('k') | tests/imc_shm_mmap/nacl.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/earth/nacl.scons
===================================================================
--- tests/earth/nacl.scons (revision 6583)
+++ tests/earth/nacl.scons (working copy)
@@ -20,7 +20,7 @@
EXTRA_LIBS=['earthlib',
'${PPAPI_LIBS}',
'm', 'pthread'])
-env.Publish(c_nexe_name, 'run', ['earth_c.html', 'earth_c.nmf'])
+env.Publish(c_nexe_name, 'run', ['earth_c.html'])
node = env.DemoSelLdrNacl('demo_earth_c', cnexe, args=[])
# Note: Make this available from top level
@@ -33,7 +33,7 @@
'${PPAPI_LIBS}',
'ppapi_cpp',
'm', 'pthread'])
-env.Publish(cc_nexe_name, 'run', ['earth_cc.html', 'earth_cc.nmf'])
+env.Publish(cc_nexe_name, 'run', ['earth_cc.html'])
node = env.DemoSelLdrNacl('demo_earth_cc', ccnexe, args=[])
# Note: Make this available from top level
@@ -65,21 +65,25 @@
node = env.PPAPIBrowserTester(
'earth_browser_test_c.out',
url='earth_c.html',
+ nmfs=['earth_c.nmf'],
files=[cnexe,
env.File('earth_c.html'),
env.File('earth_c.nmf'),
]
)
-env.AddNodeToTestSuite(node, ['chrome_browser_tests'], 'earth_browser_test_c')
+env.AddNodeToTestSuite(node, ['chrome_browser_tests'], 'earth_browser_test_c',
+ is_broken=env.Bit('nacl_glibc'))
node = env.PPAPIBrowserTester(
'earth_browser_test_cc.out',
url='earth_cc.html',
+ nmfs=['earth_cc.nmf'],
files=[ccnexe,
env.File('earth_cc.html'),
env.File('earth_cc.nmf'),
]
)
-env.AddNodeToTestSuite(node, ['chrome_browser_tests'], 'earth_browser_test_cc')
+env.AddNodeToTestSuite(node, ['chrome_browser_tests'], 'earth_browser_test_cc',
+ is_broken=env.Bit('nacl_glibc'))
« no previous file with comments | « tests/dynamic_code_loading/nacl.scons ('k') | tests/imc_shm_mmap/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698