Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
| 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 3 <html> | 3 <html> |
| 4 <!-- | 4 <!-- |
| 5 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 5 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 6 Use of this source code is governed by a BSD-style license that can be | 6 Use of this source code is governed by a BSD-style license that can be |
| 7 found in the LICENSE file. | 7 found in the LICENSE file. |
| 8 --> | 8 --> |
| 9 <head> | 9 <head> |
| 10 <META HTTP-EQUIV="Pragma" CONTENT="no-cache" /> | 10 <META HTTP-EQUIV="Pragma" CONTENT="no-cache" /> |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 101 tester, | 101 tester, |
| 102 'bad_manifest_uses_nexes', | 102 'bad_manifest_uses_nexes', |
| 103 'ppapi_bad_manifest_uses_nexes.nmf', | 103 'ppapi_bad_manifest_uses_nexes.nmf', |
| 104 'NaCl module load failed: manifest: missing \'program\' section.'); | 104 'NaCl module load failed: manifest: missing \'program\' section.'); |
| 105 | 105 |
| 106 // 'bad_manifest_bad_files' loads a manifest with a bad 'files' section. | 106 // 'bad_manifest_bad_files' loads a manifest with a bad 'files' section. |
| 107 badLoadTest( | 107 badLoadTest( |
| 108 tester, | 108 tester, |
| 109 'bad_manifest_bad_files', | 109 'bad_manifest_bad_files', |
| 110 'ppapi_bad_manifest_bad_files.nmf', | 110 'ppapi_bad_manifest_bad_files.nmf', |
| 111 'NaCl module load failed: manifest: no version of file.txt given for curre nt arch and no portable version found.'); | 111 'NaCl module load failed: manifest: file.txt property \'unknown_arch\' doe s not have required key: \'pnacl-translate\'.'); |
|
Mark Seaborn
2013/04/19 05:36:43
Please add a comment here explaining the test expe
halyavin
2013/04/19 06:41:51
Done.
| |
| 112 | 112 |
| 113 // 'bad_manifest_nexe_arch' loads a manifest with no program entry for the | 113 // 'bad_manifest_nexe_arch' loads a manifest with no program entry for the |
| 114 // user's architecture | 114 // user's architecture |
| 115 badLoadTest( | 115 badLoadTest( |
| 116 tester, | 116 tester, |
| 117 'bad_manifest_nexe_arch', | 117 'bad_manifest_nexe_arch', |
| 118 'ppapi_bad_manifest_nexe_arch.nmf', | 118 'ppapi_bad_manifest_nexe_arch.nmf', |
| 119 'NaCl module load failed: manifest: no version of program given for curren t arch and no portable version found.'); | 119 'NaCl module load failed: manifest: no version of program given for curren t arch and no portable version found.'); |
| 120 | 120 |
| 121 ////////////////////////////////////// | 121 ////////////////////////////////////// |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 215 style="background-color:gray" | 215 style="background-color:gray" |
| 216 type="application/pdf" /> | 216 type="application/pdf" /> |
| 217 | 217 |
| 218 <script type="text/javascript"> | 218 <script type="text/javascript"> |
| 219 //<![CDATA[ | 219 //<![CDATA[ |
| 220 runTests(); | 220 runTests(); |
| 221 //]]> | 221 //]]> |
| 222 </script> | 222 </script> |
| 223 </body> | 223 </body> |
| 224 </html> | 224 </html> |
| OLD | NEW |