From 160bb0e66b96e24120deba5fed927acc47b59b1a Mon Sep 17 00:00:00 2001 From: qmuntal Date: Thu, 20 Oct 2022 19:06:05 +0200 Subject: runtime: fix TestVectoredHandlerExceptionInNonGoThread This test is failing on the windows-arm64-10 builder https://build.golang.org/log/c161c86be1af83c349ee02c1b12eff5828818f50. It is not failing on windows-arm64-11, so I guess it has something to do with the compiler. This CL simplifies the test so is easier to build. Change-Id: I6e0e1cf237277628f8ebf892c70ab54cd0077680 Reviewed-on: https://go-review.googlesource.com/c/go/+/444438 TryBot-Result: Gopher Robot Reviewed-by: Michael Pratt Run-TryBot: Quim Muntal Reviewed-by: Bryan Mills --- src/runtime/testdata/testwinlibthrow/veh.cpp | 53 ---------------------------- 1 file changed, 53 deletions(-) delete mode 100644 src/runtime/testdata/testwinlibthrow/veh.cpp (limited to 'src/runtime/testdata/testwinlibthrow/veh.cpp') diff --git a/src/runtime/testdata/testwinlibthrow/veh.cpp b/src/runtime/testdata/testwinlibthrow/veh.cpp deleted file mode 100644 index ed7015a064..0000000000 --- a/src/runtime/testdata/testwinlibthrow/veh.cpp +++ /dev/null @@ -1,53 +0,0 @@ -//go:build ignore - -#include - -extern "C" __declspec(dllexport) -void RaiseExcept(void) -{ - try - { - RaiseException(42, 0, 0, 0); - } - catch (...) - { - } -} - -extern "C" __declspec(dllexport) -void RaiseNoExcept(void) -{ - RaiseException(42, 0, 0, 0); -} - -static DWORD WINAPI ThreadRaiser(void* Context) -{ - if (Context) - RaiseExcept(); - else - RaiseNoExcept(); - return 0; -} - -static void ThreadRaiseXxx(int except) -{ - static int dummy; - HANDLE thread = CreateThread(0, 0, ThreadRaiser, except ? &dummy : 0, 0, 0); - if (0 != thread) - { - WaitForSingleObject(thread, INFINITE); - CloseHandle(thread); - } -} - -extern "C" __declspec(dllexport) -void ThreadRaiseExcept(void) -{ - ThreadRaiseXxx(1); -} - -extern "C" __declspec(dllexport) -void ThreadRaiseNoExcept(void) -{ - ThreadRaiseXxx(0); -} -- cgit v1.3