testing/btest/*zeek: Comment all @TEST lines

This commit is contained in:
Arne Welzel 2025-04-17 15:32:11 +02:00
parent 2f0be32f5f
commit 85b8c8866b
311 changed files with 1272 additions and 1272 deletions

View file

@ -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";