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

Unified Diff: chrome/test/data/nacl/irt_exception/irt_exception_test.cc

Issue 230413002: NonSFI NaCl: Plumb Exception IRT enough for breakpad. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove whitespace 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
Index: chrome/test/data/nacl/irt_exception/irt_exception_test.cc
diff --git a/chrome/test/data/nacl/irt_exception/irt_exception_test.cc b/chrome/test/data/nacl/irt_exception/irt_exception_test.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d333421a0cc1c7cf252e4fc84de42fdfea04f29f
--- /dev/null
+++ b/chrome/test/data/nacl/irt_exception/irt_exception_test.cc
@@ -0,0 +1,46 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include <setjmp.h>
+#include <stdio.h>
+
+#include "native_client/src/include/nacl/nacl_exception.h"
+#include "ppapi/native_client/tests/ppapi_test_lib/test_interface.h"
+
+namespace {
+
+jmp_buf g_jmp_buf;
+
+void MyNaClExceptionHandler(struct NaClExceptionContext* context) {
+ printf("--- MyNaClExceptionHandler\n");
+ longjmp(g_jmp_buf, 1);
+}
+
+void CrashViaSignalHandler() {
+ printf("--- CrashViaSignalHandler\n");
+
+ int retval = nacl_exception_set_handler(MyNaClExceptionHandler);
+ if (retval != 0) {
+ printf("Unexpected return value from nacl_exception_set_handler: %d\n",
+ retval);
+ TEST_FAILED;
+ return;
+ }
+
+ if (setjmp(g_jmp_buf)) {
+ printf("Returned via longjmp\n");
+ TEST_PASSED;
+ return;
+ }
+ printf("Going to crash\n");
+ __builtin_trap();
+}
+
+} // namespace
+
+void SetupTests() {
+ RegisterTest("CrashViaSignalHandler", CrashViaSignalHandler);
+}
+
+void SetupPluginInterfaces() {}
« no previous file with comments | « no previous file | chrome/test/data/nacl/irt_exception/irt_exception_test.html » ('j') | components/nacl/loader/nonsfi/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698