pf tests: test ALTQ CBQ on top of if_vlanThe main purpose of this test is to verify that we can use ALTQ on topof if_vlan, but while we're here we also exercise the CBQ code. There'salready a bas
pf tests: test ALTQ CBQ on top of if_vlanThe main purpose of this test is to verify that we can use ALTQ on topof if_vlan, but while we're here we also exercise the CBQ code. There'salready a basis test for HFSC, so it makes sense to test anotheralgorithm while we test if_vlan.Reviewed by: donnerMFC after: 1 weekSponsored by: Rubicon Communications, LLC ("Netgate")Differential Revision: https://reviews.freebsd.org/D31649(cherry picked from commit e62175df4ec2c8fe2aa2e372f683ddb933768e62)
show more ...
tests: Only log critical errors from scapySince 2.4.5 scapy started issuing warnings about a few differentconfigurations during our tests. These are harmless, but they generatestderr output, whic
tests: Only log critical errors from scapySince 2.4.5 scapy started issuing warnings about a few differentconfigurations during our tests. These are harmless, but they generatestderr output, which upsets atf_check.Configure scapy to only log critical errors (and thus not warnings) tofix these tests.MFC after: 1 weekSponsored by: Rubicon Communications, LLC ("Netgate")(cherry picked from commit a26e895f3d803cc1f4ee1c2b33c61330998808b9)
Add tests verifying IPv4/IPv6 output for TCP/UDP/raw paths.Reviewed by: kpMFC after: 2 weeksDifferential Revision: https://reviews.freebsd.org/D24138
Add basic IPv4/IPv6 forwarding tests.MFC after: 2 weeksDifferential Revision: https://reviews.freebsd.org/D24002
bridge: Basic test caseVery basic bridge test: Set up two jails and test that they can pass IPv4traffic over the bridge.Reviewed by: melifaro, philipSponsored by: The FreeBSD FoundationDiffere
bridge: Basic test caseVery basic bridge test: Set up two jails and test that they can pass IPv4traffic over the bridge.Reviewed by: melifaro, philipSponsored by: The FreeBSD FoundationDifferential Revision: https://reviews.freebsd.org/D23697
Add basic IPDIVERT tests.Reviewed by: lwhsu,kpDifferential Revision: https://reviews.freebsd.org/D23316
pkgbase: Put the sys/common test into the tests packageEvery other test is there so do the same for those.Reviewed by: bapt, gjbDifferential Revision: https://reviews.freebsd.org/D21504
tests: Move common (vnet) test functions into a common fileThe netipsec and pf tests have a number of common test functions. Theseused to be duplicated, but it makes more sense for them to re-use
tests: Move common (vnet) test functions into a common fileThe netipsec and pf tests have a number of common test functions. Theseused to be duplicated, but it makes more sense for them to re-use thecommon functions.PR: 236223