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

Unified Diff: chrome/test/data/nacl/nonsfi/irt_test.html

Issue 230413002: NonSFI NaCl: Plumb Exception IRT enough for breakpad. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add comment Created 6 years, 8 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 | « no previous file | chrome/test/data/nacl/nonsfi/libc_free.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/nacl/nonsfi/irt_test.html
diff --git a/chrome/test/data/nacl/nonsfi/irt_test.html b/chrome/test/data/nacl/nonsfi/irt_test.html
index 8094627e084f50d0075eed68a4819cf60369e26c..f64840d3a975c6bf8d8dff358c484e440d7f743b 100644
--- a/chrome/test/data/nacl/nonsfi/irt_test.html
+++ b/chrome/test/data/nacl/nonsfi/irt_test.html
@@ -32,6 +32,17 @@ function setupTests(tester, plugin) {
}, false);
plugin.postMessage('random');
});
+ tester.addAsyncTest('TestException', function(status) {
+ // This test crashes libc_free.nexe.
+ // This test must be the last test of the sequence.
+ // TODO(uekawa): Do I want to split this test out to a different location?
Junichi Uekawa 2014/04/17 07:54:56 I see existing tests related to signal handling in
+ plugin.addEventListener('message', function(message_event) {
+ this.removeEventListener('message', arguments.callee, false);
+ status.assertEqual(message_event.data, 'exceptionsuccess');
+ status.pass();
+ }, false);
+ plugin.postMessage('exception');
+ });
};
var embed = create("libc_free.nmf");
« no previous file with comments | « no previous file | chrome/test/data/nacl/nonsfi/libc_free.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698