Skip to content

Commit f91bd97

Browse files
committed
tmp: disable test_kvm_ptp.py on ARM
It's currently broken on the host kernel we're using. Signed-off-by: Patrick Roy <[email protected]>
1 parent 5d7f04e commit f91bd97

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/integration_tests/functional/test_kvm_ptp.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
"""Check that the kvm_ptp device works"""
5-
65
import pytest
76

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+
813

914
def test_kvm_ptp(uvm_any_booted):
1015
"""Test kvm_ptp is usable"""

0 commit comments

Comments
 (0)