diff --git a/testing/btest/bifs/empty_conn_weird.zeek b/testing/btest/bifs/empty_conn_weird.zeek new file mode 100644 index 0000000000..eb94cf2c3f --- /dev/null +++ b/testing/btest/bifs/empty_conn_weird.zeek @@ -0,0 +1,11 @@ +# +# @TEST-EXEC: zeek -b %INPUT + +event zeek_init() +{ + local x: connection; + x$uid = "uid"; + + Reporter::conn_weird("foo", x); + print "done"; +}