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

Unified Diff: tests/manifest_file/nacl.scons

Issue 7605029: Extend IRT with nacl_irt_resource_open interface (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: fixed license 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/manifest_file/irt_manifest_file_test.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/manifest_file/nacl.scons
===================================================================
--- tests/manifest_file/nacl.scons (revision 6452)
+++ tests/manifest_file/nacl.scons (working copy)
@@ -113,3 +113,39 @@
['chrome_browser_tests'],
'run_pm_pi_manifest_file_chrome_browser_test',
is_broken=env.PPAPIBrowserTesterIsBroken())
+
+# irt version
+
+irt_mf_nexe_name = 'irt_manifest_file_test_%s' % env.get('TARGET_FULLARCH')
+irt_mf_nexe = env.ComponentProgram(irt_mf_nexe_name,
+ 'irt_manifest_file_test.cc',
+ EXTRA_LIBS=['nacl_ppapi_util',
+ 'weak_ref',
+ 'ppapi_cpp',
+ '${PPAPI_LIBS}',
+ 'pthread',
+ 'srpc',
+ 'platform',
+ 'gio',
+ 'imc',
+ 'imc_syscalls',
+ 'nacl',
+ ])
+env.Publish(irt_mf_nexe_name, 'run',
+ ['irt_manifest_file_test.html',
+ 'irt_manifest_file.nmf'])
+
+# chrome_browser_tests
+
+node = env.PPAPIBrowserTester(
+ 'irt_mf_browser_test.out',
+ url='irt_manifest_file_test.html',
+ files=env.ExtractPublishedFiles(irt_mf_nexe_name),
+ args=['--debug'],
+# osenv=['NACLVERBOSITY=4,pp_weak_ref=4,weak_ref=4']
+ )
+
+env.AddNodeToTestSuite(node,
+ ['chrome_browser_tests'],
+ 'run_irt_manifest_file_chrome_browser_test',
+ is_broken=env.PPAPIBrowserTesterIsBroken())
« no previous file with comments | « tests/manifest_file/irt_manifest_file_test.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698