Home
last modified time | relevance | path

Searched +full:native_sim +full:- +full:testplan (Results 1 – 7 of 7) sorted by relevance

/Zephyr-latest/scripts/tests/twister_blackbox/
Dtest_addon.py4 # SPDX-License-Identifier: Apache-2.0
20 from twisterlib.testplan import TestPlan
41 (['--enable-ubsan'], '1')
45 @mock.patch.object(TestPlan, 'TESTSUITE_FILENAME', testsuite_filename_mock)
47 test_platforms = ['native_sim']
49 args = ['-i', '--outdir', out_path, '-T', test_path] + \
53 ['-p'] * len(test_platforms), test_platforms
68 (['--enable-asan', '--enable-lsan'], '1')
72 @mock.patch.object(TestPlan, 'TESTSUITE_FILENAME', testsuite_filename_mock)
74 test_platforms = ['native_sim']
[all …]
Dtest_device.py4 # SPDX-License-Identifier: Apache-2.0
16 # pylint: disable=no-name-in-module
18 from twisterlib.testplan import TestPlan
55 @mock.patch.object(TestPlan, 'TESTSUITE_FILENAME', testsuite_filename_mock)
57 test_platforms = ['native_sim']
59 args = ['--outdir', out_path, '-i', '-T', path, '-vv',] + \
60 ['--seed', f'{seed[0]}'] + \
62 ['-p'] * len(test_platforms), test_platforms
Dtest_platform.py4 # SPDX-License-Identifier: Apache-2.0
17 # pylint: disable=no-name-in-module
19 from twisterlib.testplan import TestPlan
22 @mock.patch.object(TestPlan, 'TESTSUITE_FILENAME', testsuite_filename_mock)
69 ['native_sim'],
110 args = ['-i', '--outdir', out_path, '-T', path, '-y'] + \
111 (['--board-root', board_root_path] if board_root else []) + \
113 ['-p'] * len(test_platforms), test_platforms
124 … error_regex = r'ERROR.*platform_filter\s+-\s+unrecognized\s+platform\s+-\s+dummy/unit_testing$'
133 args = ['-i', '--outdir', out_path, '-T', path, '-y'] + \
[all …]
/Zephyr-latest/.github/workflows/
Dcodecov.yaml5 - cron: '25 06,18 * * *'
8 group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
9 cancel-in-progress: true
13 if: github.repository_owner == 'zephyrproject-rtos'
14 runs-on:
15 group: zephyr-runner-v2-linux-x64-4xlarge
17 image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.27.4.20241026
18 options: '--entrypoint /bin/bash'
20 fail-fast: false
22 platform: ["mps2/an385", "native_sim", "qemu_x86", "unit_testing"]
[all …]
Dclang.yaml6 group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
7 cancel-in-progress: true
10 clang-build:
11 if: github.repository_owner == 'zephyrproject-rtos'
12 runs-on:
13 group: zephyr-runner-v2-linux-x64-4xlarge
15 image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.27.4.20241026
16 options: '--entrypoint /bin/bash'
18 fail-fast: false
20 platform: ["native_sim"]
[all …]
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Denvironment.py4 # Copyright (c) 2018-2024 Intel Corporation
8 # SPDX-License-Identifier: Apache-2.0
45 def _get_installed_packages() -> Generator[str, None, None]:
63 PYTEST_PLUGIN_INSTALLED = 'pytest-twister-harness' in installed_packages
71 def add_parse_arguments(parser = None) -> argparse.ArgumentParser:
82 $ ./scripts/twister -v \\
83 --testsuite-root tests/ztest/base \\
84 --testsuite-root tests/kernel \\
85 --test tests/ztest/base/testing.ztest.verbose_0 \\
86 --test tests/kernel/fifo/fifo_api/kernel.fifo
[all …]
/Zephyr-latest/doc/releases/
Drelease-notes-4.1.rst69 * RISC-V
79 * For the native_sim target :kconfig:option:`CONFIG_NATIVE_SIM_NATIVE_POSIX_COMPAT` has been
114 * :zephyr:board:`Adafruit QT Py ESP32-S3 <adafruit_qt_py_esp32s3>`: ``adafruit_qt_py_esp32s3``
130 * Space-separated lists support has been removed from Twister configuration
139 These extended identifiers are used in log output, twister.json and testplan.json,
140 as well as for ``--sub-test`` command line parameters (:github:`80088`).
141 * The ``--no-detailed-test-id`` command line option also shortens Ztest Test Case names excluding
170 * Added ``frame_incomplete`` handling to SDL display driver (:dtcompatible:`zephyr,sdl-dc`)
172 …* Added transparency support to SDL display driver (:dtcompatible:`zephyr,sdl-dc`) (:github:`81184…
178 …* NXP MCUX FlexSPI: Add support for 4-byte addressing mode of Micron MT25Q flash family (:github:`…
[all …]