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 5d7f04e commit f91bd97Copy full SHA for f91bd97
tests/integration_tests/functional/test_kvm_ptp.py
@@ -2,9 +2,14 @@
2
# SPDX-License-Identifier: Apache-2.0
3
4
"""Check that the kvm_ptp device works"""
5
-
6
import pytest
7
+from framework.properties import global_props
8
+
9
+pytestmark = pytest.mark.skipif(
10
+ global_props.cpu_architecture == "aarch64", reason="currently broken on aarch64"
11
+)
12
13
14
def test_kvm_ptp(uvm_any_booted):
15
"""Test kvm_ptp is usable"""
0 commit comments