Disable Go dumping tests until we handle Go 1.24 properly (#3122)

* Disable Go dumping tests until we handle Go 1.24 properly

* Update test_go.py

* Skip tests instead of xfail
pull/3106/head
Disconnect3d 6 months ago committed by GitHub
parent 82920cc23f
commit dc46ade886
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,6 +1,7 @@
from __future__ import annotations
import gdb
import pytest
import tests
@ -48,9 +49,11 @@ def helper_test_dump(start_binary, filename):
assert third.strip() == """([3]complex64) [(1.1 + 2.2i), (-2.5 - 5.0i), (4.2 - 2.1i)]"""
@pytest.mark.skip(reason="TODO/FIXME: Needs fix for Go 1.24")
def test_go_dumping_x64(start_binary):
helper_test_dump(start_binary, GOSAMPLE_X64)
@pytest.mark.skip(reason="TODO/FIXME: Needs fix for Go 1.24")
def test_go_dumping_x86(start_binary):
helper_test_dump(start_binary, GOSAMPLE_X86)

Loading…
Cancel
Save