mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
testing/btest/*zeek: Comment all @TEST lines
This commit is contained in:
parent
2f0be32f5f
commit
85b8c8866b
311 changed files with 1272 additions and 1272 deletions
|
@ -8,29 +8,29 @@ type R: record {
|
|||
a: string &default_insert="a";
|
||||
};
|
||||
|
||||
@TEST-START-NEXT
|
||||
# @TEST-START-NEXT
|
||||
# Not applicable to sets.
|
||||
global s: set[string] &default_insert="a";
|
||||
|
||||
@TEST-START-NEXT
|
||||
# @TEST-START-NEXT
|
||||
# Wrong expression type
|
||||
global tbl: table[count] of string &default_insert=1;
|
||||
|
||||
@TEST-START-NEXT
|
||||
# @TEST-START-NEXT
|
||||
|
||||
# default function has wrong type
|
||||
global tbl: table[count] of string &default_insert=function(c: count): count { return c; };
|
||||
|
||||
@TEST-START-NEXT
|
||||
# @TEST-START-NEXT
|
||||
|
||||
# default function has wrong type for inferred type
|
||||
global tbl = table([1] = "a") &default_insert=function(c: count): count { return c; };
|
||||
|
||||
@TEST-START-NEXT
|
||||
# @TEST-START-NEXT
|
||||
|
||||
# Using &default and &default_insert together does not work.
|
||||
global tbl: table[count] of string &default="a" &default_insert="b";
|
||||
|
||||
@TEST-START-NEXT
|
||||
# @TEST-START-NEXT
|
||||
# Using &default and &default_insert together does not work, reversed order.
|
||||
global tbl: table[count] of string &default_insert="a" &default="b";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue