mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00

This also installs symlinks from "zeek" and "bro-config" to a wrapper script that prints a deprecation warning. The btests pass, but this is still WIP. broctl renaming is still missing. #239
16 lines
317 B
Text
16 lines
317 B
Text
# @TEST-EXEC: zeek -b foo
|
|
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff .stderr
|
|
|
|
@TEST-START-FILE foo.zeek
|
|
@deprecated
|
|
@load bar
|
|
@load baz
|
|
@TEST-END-FILE
|
|
|
|
@TEST-START-FILE bar.zeek
|
|
@deprecated "Use '@load qux' instead"
|
|
@TEST-END-FILE
|
|
|
|
@TEST-START-FILE baz.zeek
|
|
@deprecated
|
|
@TEST-END-FILE
|