]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: run TestVectoredHandlerDontCrashOnLibrary on 386 and arm64
authorqmuntal <quimmuntal@gmail.com>
Mon, 23 Jan 2023 14:13:20 +0000 (15:13 +0100)
committerQuim Muntal <quimmuntal@gmail.com>
Tue, 24 Jan 2023 08:46:11 +0000 (08:46 +0000)
This CL updates TestVectoredHandlerDontCrashOnLibrary so it can run on
windows/386 and windows/arm64. It still can't run on windows/arm as
it does not support c-shared buildmode (see #43800).

Change-Id: Id1577687e165e77d27633c632634ecf86e6e9d6f
Reviewed-on: https://go-review.googlesource.com/c/go/+/463117
Reviewed-by: Bryan Mills <bcmills@google.com>
Run-TryBot: Quim Muntal <quimmuntal@gmail.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
src/runtime/signal_windows_test.go
src/runtime/testdata/testwinlib/main.c

index c9b8e901189f9912265746736322816138e191f2..5648185cab5967bbc6c573b67248f8641ef7c614 100644 (file)
@@ -79,8 +79,11 @@ func TestVectoredHandlerDontCrashOnLibrary(t *testing.T) {
        if *flagQuick {
                t.Skip("-quick")
        }
-       if runtime.GOARCH != "amd64" {
-               t.Skip("this test can only run on windows/amd64")
+       if runtime.GOARCH == "arm" {
+               //TODO: remove this skip and update testwinlib/main.c
+               // once windows/arm supports c-shared buildmode.
+               // See go.dev/issues/43800.
+               t.Skip("this test can't run on windows/arm")
        }
        testenv.MustHaveGoBuild(t)
        testenv.MustHaveCGO(t)
index c3fe3cb0712a4055b30545f543ed72f10a13cdaf..55ee6571d7717166fd62dc8bcf4ba52ede56a628 100644 (file)
@@ -11,8 +11,15 @@ LONG WINAPI customExceptionHandlder(struct _EXCEPTION_POINTERS *ExceptionInfo)
         exceptionCount++;
         // prepare context to resume execution
         CONTEXT *c = ExceptionInfo->ContextRecord;
-        c->Rip = *(ULONG_PTR *)c->Rsp;
+#ifdef _AMD64_
+        c->Rip = *(DWORD64 *)c->Rsp;
         c->Rsp += 8;
+#elif defined(_X86_)
+        c->Eip = *(DWORD *)c->Esp;
+        c->Esp += 4;
+#else
+        c->Pc = c->Lr;
+#endif
         return EXCEPTION_CONTINUE_EXECUTION;
     }
     return EXCEPTION_CONTINUE_SEARCH;