4d7709ddf6
Copy the most important test cases from OpenBSD's corresponding src/regress/sbin/pfctl, those that run pfctl on a test input file and check correctness of its output. We have also added some new tests using the same format. The tests consist of a collection of input files (pf*.in) and corresponding output files (pf*.ok). We run pfctl -nv on the input files and check that the output matches the output files. If any discrepancy is discovered during future development in the source tree, we know that a regression bug has been introduced into the tree. Submitted by: paggas Sponsored by: Google, Inc (GSoC 2017) Differential Revision: https://reviews.freebsd.org/D11322
26 lines
694 B
Plaintext
26 lines
694 B
Plaintext
#test random ordered opts
|
|
|
|
body1="pass in log quick on lo0 inet proto icmp all "
|
|
body2="pass in log quick on lo0 inet proto tcp all "
|
|
o_user="user root "
|
|
o_user2="user bin "
|
|
o_group="group wheel "
|
|
o_group2="group nobody "
|
|
o_flags="flags S/SA "
|
|
o_icmpspec="icmp-type 0 code 0 "
|
|
o_tos="tos 0x08 "
|
|
o_keep="keep state "
|
|
o_fragment="fragment "
|
|
o_allowopts="allow-opts "
|
|
o_label="label blah"
|
|
o_prio="set prio 2"
|
|
|
|
$body2 $o_fragment $o_keep $o_label $o_tos
|
|
$body2 $o_user $o_prio $o_tos $o_keep $o_group $o_label $o_allowopts \
|
|
$o_user2 $o_group2
|
|
$body1 $o_icmpspec $o_keep $o_label $o_prio
|
|
$body2 $o_keep
|
|
$body2 $o_label $o_keep $o_prio $o_tos
|
|
$body1 $o_icmpspec $o_tos
|
|
$body2 $o_flags $o_allowopts
|