zeek/testing/btest/opt/infinite-empty-loop.zeek

14 lines
451 B
Text

# @TEST-DOC: Regression tests for past ZAM bugs handling empty infinite loops
# @TEST-REQUIRES: test "${ZEEK_USE_CPP}" != "1"
#
# @TEST-EXEC-FAIL: zeek -b -O ZAM %INPUT
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff .stderr
event zeek_init()
{
# It used to be that ZAM would fault doing control-flow propagation
# when compiling empty infinite loops. Now it should generate a
# compile-time error.
while ( T )
;
}