/
githubmirror
/
nvme-cli
Обзор
Документация
Войти
/
githubmirror
/
nvme-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/e2e/plugins/ocp/meson.build
29 строк
652 B
Daniel Wagner
tests/e2e: make test configuration flexible
10 авг 2026, 17:30
10 авг 2026, 17:30
10c5590
Код
Авторство
О чём код?
# SPDX-License-Identifier: GPL-2.0-or-later # # OCP plugin tests ocp_tests = [ 'ocp_smart_add_log_test.py', ] test_env = environment() test_env.prepend('PATH', meson.project_build_root()) foreach t : ocp_tests t_name = t.split('.')[0] test( 'ocp - @0@'.format(t_name), python3, args: [ e2e_runner, '--source-root', meson.project_source_root(), '--config', e2e_config_file, 'tests.e2e.plugins.ocp.@0@'.format(t_name), ], env: test_env, timeout: 500, protocol: 'tap', is_parallel: false, suite: 'ocp', ) endforeach