mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-11 05:00:41 +01:00
Add comprehensive macOS CI support with two new GitHub Actions workflows: - run_macos.yml: PR-triggered CI with matrix strategy covering macOS 13-15, x64/arm64 architectures, and sanitizer combinations (none, ASAN, TSAN) - run_macos_weekly.yml: Scheduled weekly testing with full matrix coverage and automated failure reporting via GitHub issues Enhance test diagnostics in tests/diag.sh: - Add separate startup timeout handling for valgrind vs normal runs - Implement immediate crash detection during rsyslog startup - Add comprehensive core dump analysis with platform-specific debuggers - Improve macOS-specific error reporting and system information gathering - Add disk space monitoring to prevent core dump creation failures - tests/kafka: give unique names in sndrcv_kafka_multi_topics Rename the second omkafka action to a distinct name (kafka-fwd-2). Using the same action name twice can lead to only one effective publisher with newer builds, which caused tests/sndrcv_kafka_multi_topics.sh to publish to a single topic and fail the final count check. Fix macOS-specific test issues: - Skip failing TCP tests on Darwin due to TCP chunking behavior - Add maxframesize parameter to imptcp tests for better reliability The CI workflows include proper sanitizer configuration, core dump handling, disk space management, and comprehensive error reporting to improve debugging capabilities on macOS platforms. Impact: Enables continuous testing on macOS, improves test reliability, and provides better diagnostics for platform-specific issues. Fixes: https://github.com/rsyslog/rsyslog/issues/5629 Refs: https://github.com/rsyslog/rsyslog/pull/5635 Refs: https://github.com/Homebrew/homebrew-core/issues/221869 Refs: https://github.com/Homebrew/homebrew-core/issues/226378
32 lines
1.1 KiB
Bash
Executable File
32 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# test many concurrent tcp connections
|
|
. ${srcdir:=.}/diag.sh init
|
|
skip_platform "FreeBSD" "This test currently does not work on FreeBSD"
|
|
skip_platform "SunOS" "timing on connection establishment is different on solaris and makes this test fail"
|
|
skip_platform "Darwin" "Test fails on MacOS"
|
|
|
|
export NUMMESSAGES=40000
|
|
export QUEUE_EMPTY_CHECK_FUNC=wait_file_lines
|
|
|
|
generate_conf
|
|
add_conf '
|
|
$MaxOpenFiles 2100
|
|
module(load="../plugins/imtcp/.libs/imtcp" maxSessions="2100")
|
|
input(type="imtcp" name="test-input"
|
|
socketBacklog="2000" port="0" listenPortFileName="'$RSYSLOG_DYNNAME'.tcpflood_port" workerthreads="8")
|
|
|
|
$template outfmt,"%msg:F,58:2%\n"
|
|
template(name="dynfile" type="string" string=`echo $RSYSLOG_OUT_LOG`) # trick to use relative path names!
|
|
:msg, contains, "msgnum:" ?dynfile;outfmt
|
|
'
|
|
startup
|
|
# we first send a single message so that the output file is opened. Otherwise, we may
|
|
# use up all file handles for tcp connections and so the output file could eventually
|
|
# not be opened. 2019-03-18 rgerhards
|
|
tcpflood -m1
|
|
tcpflood -c-2000 -i1 -m $((NUMMESSAGES - 1 ))
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
seq_check
|
|
exit_test
|