Skip to content

Commit a8eac46

Browse files
committed
test_buffer: skip SIGSEG tests, patch out the struct module which is not yet properly supported
1 parent 544bf35 commit a8eac46

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

graalpython/lib-python/3/test/test_buffer.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@
2727
ndarray = None
2828

2929
try:
30-
import struct
30+
# skipIfGraalPython(reason="not yet supported, causes SEGFAULT")
31+
# import struct
32+
struct = None
3133
except ImportError:
3234
struct = None
3335

@@ -42,7 +44,6 @@
4244
except ImportError:
4345
numpy_array = None
4446

45-
4647
SHORT_TEST = True
4748

4849

0 commit comments

Comments
 (0)