Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F108542206
D46581.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D46581.diff
View Options
diff --git a/tests/sys/netpfil/pf/pass_block.sh b/tests/sys/netpfil/pf/pass_block.sh
--- a/tests/sys/netpfil/pf/pass_block.sh
+++ b/tests/sys/netpfil/pf/pass_block.sh
@@ -373,6 +373,41 @@
pft_cleanup
}
+atf_test_case "optimize_any" "cleanup"
+optimize_any_head()
+{
+ atf_set descr 'Test known optimizer bug'
+ atf_set require.user root
+}
+
+optimize_any_body()
+{
+ pft_init
+
+ epair=$(vnet_mkepair)
+
+ vnet_mkjail alcatraz ${epair}a
+
+ ifconfig ${epair}b 192.0.2.2/24 up
+
+ jexec alcatraz ifconfig ${epair}a 192.0.2.1/24 up
+
+ # Sanity check
+ atf_check -s exit:0 -o ignore ping -c 1 -t 1 192.0.2.1
+
+ jexec alcatraz pfctl -e
+ pft_set_rules alcatraz \
+ "block" \
+ "pass in inet from { any, 192.0.2.3 }"
+
+ atf_check -s exit:0 -o ignore ping -c 1 -t 1 192.0.2.1
+}
+
+optimize_any_cleanup()
+{
+ pft_cleanup
+}
+
atf_init_test_cases()
{
atf_add_test_case "enable_disable"
@@ -382,4 +417,5 @@
atf_add_test_case "nested_inline"
atf_add_test_case "urpf"
atf_add_test_case "received_on"
+ atf_add_test_case "optimize_any"
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Jan 27, 3:11 AM (51 m, 34 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16185975
Default Alt Text
D46581.diff (1 KB)
Attached To
Mode
D46581: pf tests: ensure we correctly optimize { any, 192.0.2.3 }
Attached
Detach File
Event Timeline
Log In to Comment