We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66fdb61 commit ff04323Copy full SHA for ff04323
graalpython/com.oracle.graal.python.tck/src/com/oracle/graal/python/tck/PythonProvider.java
@@ -388,7 +388,7 @@ protected static boolean isMapping(Value par0) {
388
private static boolean hasMemoryError(SnippetRun snippetRun) {
389
PolyglotException exception = snippetRun.getException();
390
if (exception != null && exception.isGuestException()) {
391
- return "MemoryError".equals(exception.getMessage());
+ return "MemoryError".equals(exception.getMessage()) || exception.getMessage().contains("OverflowError");
392
}
393
return false;
394
0 commit comments