Skip to content

Commit 2bf5cd3

Browse files
committed
test_import: skip nested module tests due to GR-25894
1 parent 5be6aa9 commit 2bf5cd3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

graalpython/lib-python/3/test/test_import/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,6 +1141,7 @@ def test_nonexistent_module(self):
11411141
self.fail("ImportError should have been raised")
11421142
self.assert_traceback(tb, [__file__])
11431143

1144+
@impl_detail("GR-25894: cannot access unwound portion of stacktrace", graalvm=False)
11441145
def test_nonexistent_module_nested(self):
11451146
self.create_module("foo", "import nonexistent_xyzzy")
11461147
try:
@@ -1161,6 +1162,7 @@ def test_exec_failure(self):
11611162
self.fail("ZeroDivisionError should have been raised")
11621163
self.assert_traceback(tb, [__file__, 'foo.py'])
11631164

1165+
@impl_detail("GR-25894: cannot access unwound portion of stacktrace", graalvm=False)
11641166
def test_exec_failure_nested(self):
11651167
self.create_module("foo", "import bar")
11661168
self.create_module("bar", "1/0")

0 commit comments

Comments
 (0)