mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 03:28:19 +00:00

* origin/topic/robin/gh-239: Undo a change to btest.cfg from a recent commit Updating submodule. Fix zeek-wrapper Update for renaming BroControl to ZeekControl. Updating submodule. GH-239: Rename bro to zeek, bro-config to zeek-config, and bro-path-dev to zeek-path-dev.
24 lines
607 B
Text
24 lines
607 B
Text
# @TEST-EXEC: unset BRO_DISABLE_BROXYGEN; zeek -b -X zeekygen.config %INPUT
|
|
# @TEST-EXEC: btest-diff autogen-reST-func-params.rst
|
|
|
|
@TEST-START-FILE zeekygen.config
|
|
identifier test_func_params* autogen-reST-func-params.rst
|
|
@TEST-END-FILE
|
|
|
|
## This is a global function declaration.
|
|
##
|
|
## i: First param.
|
|
## j: Second param.
|
|
##
|
|
## Returns: A string.
|
|
global test_func_params_func: function(i: int, j: int): string;
|
|
|
|
type test_func_params_rec: record {
|
|
## This is a record field function.
|
|
##
|
|
## i: First param.
|
|
## j: Second param.
|
|
##
|
|
## Returns: A string.
|
|
field_func: function(i: int, j: int): string;
|
|
};
|