Skip to content

Commit d1af6f2

Browse files
committed
Skip test for buffer locking
1 parent 0a56b51 commit d1af6f2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

graalpython/com.oracle.graal.python.test/src/tests/unittest_tags/test_re.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
*graalpython.lib-python.3.test.test_re.ReTests.test_ignore_case_range
5252
*graalpython.lib-python.3.test.test_re.ReTests.test_ignore_case_set
5353
*graalpython.lib-python.3.test.test_re.ReTests.test_issue17998
54+
*graalpython.lib-python.3.test.test_re.ReTests.test_keep_buffer
5455
*graalpython.lib-python.3.test.test_re.ReTests.test_large_search
5556
*graalpython.lib-python.3.test.test_re.ReTests.test_large_subn
5657
*graalpython.lib-python.3.test.test_re.ReTests.test_lookahead

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from test.support import (gc_collect, bigmemtest, _2G,
2-
cpython_only, captured_stdout)
2+
cpython_only, captured_stdout, impl_detail)
33
import locale
44
import re
55
import sre_compile
@@ -53,6 +53,7 @@ def checkTemplateError(self, pattern, repl, string, errmsg, pos=None):
5353
if pos is not None:
5454
self.assertEqual(err.pos, pos)
5555

56+
@impl_detail("buffer locking", graalvm=False)
5657
def test_keep_buffer(self):
5758
# See bug 14212
5859
b = bytearray(b'x')

0 commit comments

Comments
 (0)