rsyslog/tests/improg-multiline-test.py
Rainer Gerhards 618f743299
testbench: fix final issues for python 3 transition
Thanks to Michael Biebl for his help on this issue.

This patch also contains some slight test modernization and
a "name fix" for a non-valgrind test.

closes https://github.com/rsyslog/rsyslog/issues/3853
2020-01-23 12:38:03 +01:00

7 lines
130 B
Python
Executable File

# call this via "python[3] script name"
import sys
for _ in range(10):
mystr = 'multi-line-string\n'
sys.stdout.write(mystr)