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

Unified Diff: test/cctest/cctest.cc

Issue 2371833007: [wasm] Initial signal handler (Closed)
Patch Set: Addressing some of Jochen's feedback Created 3 years, 12 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: test/cctest/cctest.cc
diff --git a/test/cctest/cctest.cc b/test/cctest/cctest.cc
index c987d8d375715f52ecf8ed54691dd16d72de8f1a..a216a254fc543ff70f01093776f1e09a98f28288 100644
--- a/test/cctest/cctest.cc
+++ b/test/cctest/cctest.cc
@@ -30,6 +30,7 @@
#include "include/libplatform/libplatform.h"
#include "src/debug/debug.h"
+#include "src/trap-handler/trap-handler.h"
#include "test/cctest/print-extension.h"
#include "test/cctest/profiler-extension.h"
#include "test/cctest/trace-extension.h"
@@ -267,6 +268,10 @@ int main(int argc, char* argv[]) {
v8::V8::Initialize();
v8::V8::InitializeExternalStartupData(argv[0]);
+ if (i::trap_handler::EnableTrapHandler()) {
+ v8::V8::RegisterDefaultSignalHandler();
+ }
+
CcTestArrayBufferAllocator array_buffer_allocator;
CcTest::set_array_buffer_allocator(&array_buffer_allocator);

Powered by Google App Engine
This is Rietveld 408576698