mirror of
https://github.com/zeek/zeek.git
synced 2025-10-01 22:28:20 +00:00
11 lines
311 B
Text
11 lines
311 B
Text
# We once had a bug where DNS lookups at init time lead to an immediate crash.
|
|
#
|
|
# @TEST-EXEC: zeek -b %INPUT
|
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff .stderr
|
|
# @TEST-EXEC: btest-diff .stdout
|
|
|
|
const foo: set[addr] = {
|
|
blocking_lookup_hostname("google.com")
|
|
};
|
|
|
|
print foo;
|