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

Side by Side Diff: chrome/test/data/nacl/pnacl_nmf_options/pnacl_options.html

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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 Copyright (c) 2013 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <head> 7 <head>
8 <title>NaCl Load Test</title> 8 <title>NaCl Load Test</title>
9 <script type="text/javascript" src="nacltest.js"></script>
9 </head> 10 </head>
10 <body> 11 <body>
11 <h2>NaCl Load Test</h2> 12 <h2>NaCl Load Test</h2>
12 </body> 13 </body>
13 <script> 14 <script>
14 15
15 function report(msg) { 16 function report(msg) {
16 domAutomationController.setAutomationId(0); 17 domAutomationController.setAutomationId(0);
17 // The automation controller seems to choke on Objects, so turn them into 18 // The automation controller seems to choke on Objects, so turn them into
18 // strings. 19 // strings.
19 domAutomationController.send(JSON.stringify(msg)); 20 domAutomationController.send(JSON.stringify(msg));
20 } 21 }
21 22
22 function create(manifest_url) { 23 function create(manifest_prefix, manifest_opt) {
23 var embed = document.createElement("embed"); 24 var embed = document.createElement("embed");
24 embed.src = manifest_url; 25 var nmf_url = manifest_prefix + manifest_opt + ".nmf";
26
27 embed.src = nmf_url;
25 embed.type = "application/x-nacl"; 28 embed.type = "application/x-nacl";
26 29
27 embed.addEventListener("load", function(evt) { 30 embed.addEventListener("load", function(evt) {
28 report({type: "Shutdown", message: "1 test passed.", passed: true}); 31 report({type: "Shutdown", message: "1 test passed.", passed: true});
29 }, true); 32 }, true);
30 33
31 embed.addEventListener("error", function(evt) { 34 embed.addEventListener("error", function(evt) {
32 report({type: "Log", message: "Load error: " + embed.lastError}); 35 report({type: "Log", message: "Load error: " + embed.lastError});
33 report({type: "Shutdown", message: "1 test failed.", passed: false}); 36 report({type: "Shutdown", message: "1 test failed.", passed: false});
34 }, true); 37 }, true);
35 38
36 document.body.appendChild(embed); 39 document.body.appendChild(embed);
37 } 40 }
38 41
39 create("simple.nmf"); 42 var nmf_to_test = getTestArguments(
43 {'use_nmf' : 'Unknown NMF choice'})['use_nmf'];
44
45 create("pnacl_", nmf_to_test);
40 </script> 46 </script>
41 </html> 47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698