/
githubmirror
/
rsyslog
Обзор
Документация
Войти
/
githubmirror
/
rsyslog
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/segmented-da-behavior.sh
16 строк
701 B
Rainer Gerhards
queue: document DA engine internals
19 июл 2026, 16:58
19 июл 2026, 16:58
8185d97
Код
Авторство
О чём код?
#!/bin/bash # SPDX-License-Identifier: Apache-2.0 # # Copyright 2026 Rainer Gerhards and Adiscon GmbH. # # Run the shared LinkedList/FixedArray and main/ruleset/action spill oracle with # the automatic default, which must resolve fresh queues to segmented disk. # This matrix wrapper deliberately leaves diag.sh initialization to each driver # invocation; sourcing it here would initialize one shared test instance six # times instead of giving every scenario its own harness lifecycle. for DA_QUEUE_TYPE in LinkedList FixedArray; do for DA_SCOPE in main ruleset action; do export DA_SCOPE DA_QUEUE_TYPE DA_ENGINE=auto "${srcdir:=.}/testsuites/da-engine-behavior-driver.sh" || exit $? done done