mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 20:20:41 +01:00
15 lines
649 B
Bash
Executable File
15 lines
649 B
Bash
Executable File
#!/bin/bash
|
|
# Test concurrency of exec_template function with msg variables
|
|
# Added 2015-12-16 by rgerhards
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
echo ===============================================================================
|
|
echo \[prop-all-json-concurrency.sh\]: testing concurrency of $!all-json variables
|
|
. $srcdir/diag.sh init
|
|
. $srcdir/diag.sh startup prop-all-json-concurrency.conf
|
|
sleep 1
|
|
. $srcdir/diag.sh tcpflood -m500000
|
|
. $srcdir/diag.sh shutdown-when-empty # shut down rsyslogd when done processing messages
|
|
. $srcdir/diag.sh wait-shutdown
|
|
. $srcdir/diag.sh seq-check 0 499999
|
|
. $srcdir/diag.sh exit
|