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

Unified Diff: chrome/test/nacl/nacl_browsertest.cc

Issue 12623004: Allow PNaCl NMF to set translator optimization options for experimentation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Default to -O0 instead of the default for now Created 7 years, 9 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: chrome/test/nacl/nacl_browsertest.cc
diff --git a/chrome/test/nacl/nacl_browsertest.cc b/chrome/test/nacl/nacl_browsertest.cc
index 2d4d2c3a1d2bacc9c92bb06fe13f9518d166d303..9336311d21664d7352a6c4da9046a2b8fabcf4c8 100644
--- a/chrome/test/nacl/nacl_browsertest.cc
+++ b/chrome/test/nacl/nacl_browsertest.cc
@@ -74,4 +74,24 @@ IN_PROC_BROWSER_TEST_F(NaClBrowserTestStatic, MAYBE_CORSNoCookie) {
RunLoadTest(FILE_PATH_LITERAL("cross_origin/cors_no_cookie.html"));
}
+IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
+ MAYBE_PNACL(PnaclNMFOptionsO0)) {
+ RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=o_0"));
+}
+
+IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
+ MAYBE_PNACL(PnaclNMFOptionsO2)) {
+ RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=o_2"));
+}
+
+IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
+ MAYBE_PNACL(PnaclNMFOptionsOlarge)) {
+ RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=o_large"));
+}
+
+IN_PROC_BROWSER_TEST_F(NaClBrowserTestPnacl,
+ MAYBE_PNACL(PnaclNMFOptionsTimePasses)) {
+ RunLoadTest(FILE_PATH_LITERAL("pnacl_options.html?use_nmf=time_passes"));
+}
+
} // namespace anonymous
« no previous file with comments | « chrome/test/data/nacl/pnacl_nmf_options/pnacl_time_passes.nmf ('k') | chrome/test/nacl/nacl_browsertest_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698