File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
graalpython/lib-python/3/test/test_import Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -1141,6 +1141,7 @@ def test_nonexistent_module(self):
1141
1141
self .fail ("ImportError should have been raised" )
1142
1142
self .assert_traceback (tb , [__file__ ])
1143
1143
1144
+ @impl_detail ("GR-25894: cannot access unwound portion of stacktrace" , graalvm = False )
1144
1145
def test_nonexistent_module_nested (self ):
1145
1146
self .create_module ("foo" , "import nonexistent_xyzzy" )
1146
1147
try :
@@ -1161,6 +1162,7 @@ def test_exec_failure(self):
1161
1162
self .fail ("ZeroDivisionError should have been raised" )
1162
1163
self .assert_traceback (tb , [__file__ , 'foo.py' ])
1163
1164
1165
+ @impl_detail ("GR-25894: cannot access unwound portion of stacktrace" , graalvm = False )
1164
1166
def test_exec_failure_nested (self ):
1165
1167
self .create_module ("foo" , "import bar" )
1166
1168
self .create_module ("bar" , "1/0" )
You can’t perform that action at this time.
0 commit comments