Skip to content

Commit 89b18a3

Browse files
committed
Disabling test_repl.py for linux aarch64
1 parent 83ec06b commit 89b18a3

File tree

1 file changed

+2
-1
lines changed
  • graalpython/com.oracle.graal.python.test/src/tests

1 file changed

+2
-1
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_repl.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@
3838
# SOFTWARE.
3939

4040
import sys
41+
import platform
4142

42-
if sys.platform != 'win32' and (sys.implementation.name != 'graalpy' or __graalpython__.posix_module_backend() != 'java'):
43+
if (sys.platform != 'win32' and (sys.platform != 'linux' or platform.machine() != 'aarch64')) and (sys.implementation.name != 'graalpy' or __graalpython__.posix_module_backend() != 'java'):
4344
import os
4445
import re
4546
import select

0 commit comments

Comments
 (0)