zeek/testing/btest/Baseline
Robin Sommer 8bacb6eb3d New BiF record_field_vals() that returns the fields of a record in a
table with meta-information.

Example:

type r: record {
	a: count;
	b: string &default="Foo";
	c: double &optional;
	d: string &log;
};

event bro_init()
{
    local x: r = [$a=42, $d="Bar"];
    print record_fields(x);
}

This prints:

  {
  [a] = [type_name=record, log=F, value=42, default_val=<uninitialized>]
  [b] = [type_name=record, log=F, value=<uninitialized>, default_val=Foo],
  [c] = [type_name=record, log=F, value=<uninitialized>, default_val=<uninitialized>],
  [d] = [type_name=record, log=T, value=Bar, default_val=<uninitialized>],
  }

This is one more step in Seth's quest for full inspection support. :-)
2011-07-07 19:56:48 -07:00
..
analyzers.conn-size Merge of Gregor's conn-size branch. 2011-05-09 17:14:31 -07:00
analyzers.conn-size-cc Merge of Gregor's conn-size branch. 2011-05-09 17:14:31 -07:00
BiFs.count_to_addr count_to_addr function 2011-04-18 15:22:48 -04:00
bifs.count_to_addr Updating test baselines. 2011-07-01 15:59:48 -07:00
bifs.netbios-functions Updating baselines. 2011-04-23 10:47:14 -07:00
bifs.records_fields New BiF record_field_vals() that returns the fields of a record in a 2011-07-07 19:56:48 -07:00
bifs.string_splitting Updating baselines. 2011-04-23 10:47:14 -07:00
bifs.unique_id A new bif unique_id(prefix) that returns a string that's unique across 2011-06-07 17:57:22 -07:00
bifs.unique_id-rnd A new bif unique_id(prefix) that returns a string that's unique across 2011-06-07 17:57:22 -07:00
core.conn-uid Updating test baselines. 2011-07-01 15:59:48 -07:00
core.load-pkg Update baseline for core.load-pkg test 2011-06-20 14:10:02 -05:00
core.load-unload Fixing tests / updating baselines. 2011-06-29 12:34:14 -05:00
core.nop Fixing bug causing crash when running without arguments. 2011-07-07 19:56:48 -07:00
core.print-bpf-filters-ipv4 Updating the packet filter tests to use new policy scripts. 2011-06-20 15:56:16 -05:00
core.print-bpf-filters-ipv6 Updating the packet filter tests to use new policy scripts. 2011-06-20 15:56:16 -05:00
core.reporter Renaming reporter_message to report_info. 2011-07-07 19:56:25 -07:00
core.reporter-error-in-handler Updating test baselines. 2011-07-01 15:59:48 -07:00
core.reporter-parse-error Merge remote branch 'origin/topic/robin/reporting' 2011-07-01 13:59:21 -07:00
core.reporter-runtime-error Merge remote branch 'origin/topic/robin/reporting' 2011-07-01 13:59:21 -07:00
core.reporter-type-mismatch Merge remote branch 'origin/topic/robin/reporting' 2011-07-01 13:59:21 -07:00
core.vlan-mpls Merge remote branch 'origin/topic/robin/reporting' 2011-07-01 13:59:21 -07:00
doc.autogen-reST-enums Add tests for auto-generating reST from bro scripts. 2011-04-08 12:02:03 -05:00
doc.autogen-reST-example Update the generated script doc organization. 2011-06-30 16:58:20 -05:00
doc.autogen-reST-records Add tests for auto-generating reST from bro scripts. 2011-04-08 12:02:03 -05:00
doc.autogen-reST-type-aliases Small typo fix. 2011-05-06 18:24:38 -05:00
istate.base Porting the istate tests to btest. 2011-03-29 21:46:06 -07:00
istate.broccoli Updating istate tests. 2011-04-17 19:53:56 -07:00
istate.events Updating tests. 2011-07-01 18:57:03 -07:00
istate.events-ssl Updating tests. 2011-07-01 18:57:03 -07:00
istate.persistence Updating tests. 2011-05-02 08:43:39 -07:00
istate.pybroccoli Update istate.pybroccoli test. 2011-06-16 16:35:10 -05:00
istate.sync Updating tests. 2011-05-02 08:43:39 -07:00
language.cross-product-init Moving the test-scripts from the old test-suite over to btest. 2011-05-10 17:28:09 -07:00
language.delete-field Delete operator for record fields. 2011-04-22 18:40:14 -07:00
language.delete-field-set Fixing bug with deleting still unset record fields of table type. 2011-04-23 10:40:07 -07:00
language.enum-scope Moving the test-scripts from the old test-suite over to btest. 2011-05-10 17:28:09 -07:00
language.match-test Moving the test-scripts from the old test-suite over to btest. 2011-05-10 17:28:09 -07:00
language.match-test2 Moving the test-scripts from the old test-suite over to btest. 2011-05-10 17:28:09 -07:00
language.next-test Moving the test-scripts from the old test-suite over to btest. 2011-05-10 17:28:09 -07:00
language.rare-events Removing language.rare-events test which is no longer meaningful. 2011-06-25 18:10:40 -07:00
language.rec-comp-init Bugfix: vectors in records were not initalized. 2011-05-10 18:19:27 -07:00
language.rec-nested-opt Fixing problem with optional fields. 2011-04-19 16:22:40 -07:00
language.rec-of-tbl Moving the test-scripts from the old test-suite over to btest. 2011-05-10 17:28:09 -07:00
language.rec-table-default Updating baselines. 2011-04-23 10:47:14 -07:00
language.record-extension Merge remote branch 'origin/topic/robin/logging-internals' 2011-04-20 21:30:41 -07:00
language.record-recursive-coercion Fixing bug with nested record coercions. 2011-04-22 18:07:29 -07:00
language.record-ref-assign Fixing bug with records sometimes unnecessarily coerced on assignment. 2011-04-17 10:42:51 -07:00
language.sizeof Moving the test-scripts from the old test-suite over to btest. 2011-05-10 17:28:09 -07:00
language.smith-waterman-test Moving the test-scripts from the old test-suite over to btest. 2011-05-10 17:28:09 -07:00
language.strings Moving the test-scripts from the old test-suite over to btest. 2011-05-10 17:28:09 -07:00
language.vector-coerce-expr Implementing a VectorCoerceExpr. 2011-04-19 16:58:18 -07:00
language.wrong-delete-field Merge remote branch 'origin/topic/robin/reporting' 2011-07-01 13:59:21 -07:00
language.wrong-record-extension Merge remote branch 'origin/topic/robin/reporting' 2011-07-01 13:59:21 -07:00
policy.frameworks.intel.insert-and-matcher Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.adapt-filter Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.ascii-binary Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.ascii-empty Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.ascii-escape Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.ascii-options Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.attr Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.attr-extend Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.empty-event Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.events Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.exclude Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.file Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.include Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.path-func Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.pred Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.remote Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.remote-types Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.remove Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.rotate Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.rotate-custom Fixing tests / updating baselines. 2011-06-29 12:34:14 -05:00
policy.frameworks.logging.stdout Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.test-logging Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.types Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.unset-record Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.logging.vec Reorganized some of the tests for consistency. 2011-06-24 15:40:56 -04:00
policy.frameworks.software.version-parsing Updating software version parsing test. 2011-06-24 13:27:35 -05:00
policy.misc.check-test-all Adding new policy file test-all.bro that loads all other policies. 2011-06-30 17:47:23 -07:00
policy.misc.loaded-scripts A new event bro_script_loaded() raised for each policy script loaded. 2011-07-07 19:56:26 -07:00
policy.protocols.conn.known-hosts Tweak known-hosts test to explicitly do local asset tracking 2011-06-24 11:22:18 -05:00
policy.protocols.conn.known-services Update/improve known-services test. 2011-06-24 11:18:25 -05:00
policy.protocols.dns.event-priority Fixing bug with even priorities potentially being ignored for the 2011-07-01 15:40:42 -07:00
policy.protocols.http.http-pipelining-and-md5 Reorganize where HTTP pipelining test lives. 2011-06-24 11:25:16 -05:00