aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'rpython/rlib/rvmprof/test/__init__.py')
-rw-r--r--rpython/rlib/rvmprof/test/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpython/rlib/rvmprof/test/__init__.py b/rpython/rlib/rvmprof/test/__init__.py
index 10d19aeb3d..846fe5c449 100644
--- a/rpython/rlib/rvmprof/test/__init__.py
+++ b/rpython/rlib/rvmprof/test/__init__.py
@@ -1,5 +1,5 @@
import pytest
import platform
-if not platform.machine().startswith('x86'):
+if not (platform.machine().startswith('x86') or platform.machine() == 'aarch64'):
pytest.skip()