zeek/testing
Robin Sommer c6d20dbfdf Adding a few options to the ASCII writer.
module LogAscii;

export {
	# Output everything to stdout rather than into files. This is primarily
	# for testing purposes.
	const output_to_stdout = F &redef;

	# The separator between fields.
	const separator = "\t" &redef;

	# True to include a header line with column names.
	const include_header = T &redef;
}
2011-03-08 21:44:46 -08:00
..
btest Adding a few options to the ASCII writer. 2011-03-08 21:44:46 -08:00
istate Initial import of svn+ssh:://svn.icir.org/bro/trunk/bro as of r7088 2010-09-27 20:42:30 -07:00
README Initial import of svn+ssh:://svn.icir.org/bro/trunk/bro as of r7088 2010-09-27 20:42:30 -07:00

This directory contains some of the suites for testing for Bro's
correct operation:

istate/
	Tests Bro's independent state facilities.  These include persistent
	values and inter-process event/value communication.

(Note that the Bro developers maintain a separate test suite for
 Bro's trace analysis capabilities.  This is kept private as it uses
 sensitive raw traces for input.)