From e9f4d555a6c65c845cbee630b1b4075551aebcab Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Tue, 23 Jan 2024 12:52:38 +0100 Subject: [PATCH] test: add missing host_test marker for qemu tests --- tools/test_apps/system/esp_intr_dump/pytest_esp_intr_dump.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/test_apps/system/esp_intr_dump/pytest_esp_intr_dump.py b/tools/test_apps/system/esp_intr_dump/pytest_esp_intr_dump.py index aafb4775b6..bc4c16c35e 100644 --- a/tools/test_apps/system/esp_intr_dump/pytest_esp_intr_dump.py +++ b/tools/test_apps/system/esp_intr_dump/pytest_esp_intr_dump.py @@ -1,6 +1,5 @@ # SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD # SPDX-License-Identifier: CC0-1.0 - import os import pytest @@ -11,6 +10,7 @@ PROMPT = 'test_intr_dump>' @pytest.mark.esp32 @pytest.mark.qemu +@pytest.mark.host_test def test_esp_intr_dump_nonshared(dut: Dut) -> None: dut.expect_exact(PROMPT, timeout=10) @@ -24,6 +24,7 @@ def test_esp_intr_dump_nonshared(dut: Dut) -> None: @pytest.mark.esp32 @pytest.mark.qemu +@pytest.mark.host_test def test_esp_intr_dump_shared(dut: Dut) -> None: dut.expect_exact(PROMPT, timeout=10)