svn commit: r368743 - head/tests/sys/net

Kristof Provost kp at FreeBSD.org
Thu Dec 17 21:54:26 UTC 2020


Author: kp
Date: Thu Dec 17 21:54:25 2020
New Revision: 368743
URL: https://svnweb.freebsd.org/changeset/base/368743

Log:
  net tests: Re-enable most if_clone tests
  
  All but one of these (tap_ipv6_up_stress) currently pass, so we should enable
  them so we don't regress.

Modified:
  head/tests/sys/net/if_clone_test.sh

Modified: head/tests/sys/net/if_clone_test.sh
==============================================================================
--- head/tests/sys/net/if_clone_test.sh	Thu Dec 17 21:02:58 2020	(r368742)
+++ head/tests/sys/net/if_clone_test.sh	Thu Dec 17 21:54:25 2020	(r368743)
@@ -47,9 +47,6 @@ epair_stress_head()
 }
 epair_stress_body()
 {
-	if [ "$(atf_config_get ci false)" = "true" ]; then
-		atf_skip "https://bugs.freebsd.org/246443"
-	fi
 	do_stress "epair"
 }
 epair_stress_cleanup()
@@ -80,7 +77,6 @@ epair_ipv6_up_stress_head()
 }
 epair_ipv6_up_stress_body()
 {
-	atf_skip "Quickly panics: page fault in in6_unlink_ifa (PR 225438)"
 	do_up_stress "epair" "6" ""
 }
 epair_ipv6_up_stress_cleanup()
@@ -111,7 +107,6 @@ faith_up_stress_head()
 }
 faith_up_stress_body()
 {
-	atf_skip "Quickly panics: if_freemulti: protospec not NULL"
 	do_up_stress "faith" "" ""
 }
 faith_up_stress_cleanup()
@@ -127,7 +122,6 @@ faith_ipv6_up_stress_head()
 }
 faith_ipv6_up_stress_body()
 {
-	atf_skip "Quickly panics: if_freemulti: protospec not NULL"
 	do_up_stress "faith" "6" ""
 }
 faith_ipv6_up_stress_cleanup()
@@ -158,7 +152,6 @@ gif_up_stress_head()
 }
 gif_up_stress_body()
 {
-	atf_skip "Quickly panics: if_freemulti: protospec not NULL"
 	do_up_stress "gif" "" "p2p"
 }
 gif_up_stress_cleanup()
@@ -174,7 +167,6 @@ gif_ipv6_up_stress_head()
 }
 gif_ipv6_up_stress_body()
 {
-	atf_skip "Quickly panics: rt_tables_get_rnh_ptr: fam out of bounds."
 	do_up_stress "gif" "6" "p2p"
 }
 gif_ipv6_up_stress_cleanup()
@@ -205,7 +197,6 @@ lo_up_stress_head()
 }
 lo_up_stress_body()
 {
-	atf_skip "Quickly panics: GPF in rtsock_routemsg"
 	do_up_stress "lo" "" ""
 }
 lo_up_stress_cleanup()
@@ -221,7 +212,6 @@ lo_ipv6_up_stress_head()
 }
 lo_ipv6_up_stress_body()
 {
-	atf_skip "Quickly panics: page fault in rtsock_addrmsg"
 	do_up_stress "lo" "6" ""
 }
 lo_ipv6_up_stress_cleanup()
@@ -252,7 +242,6 @@ tap_up_stress_head()
 }
 tap_up_stress_body()
 {
-	atf_skip "Quickly panics: if_freemulti: protospec not NULL"
 	do_up_stress "tap" "" ""
 }
 tap_up_stress_cleanup()
@@ -299,7 +288,6 @@ tun_up_stress_head()
 }
 tun_up_stress_body()
 {
-	atf_skip "Quickly panics: if_freemulti: protospec not NULL"
 	do_up_stress "tun" "" "p2p"
 }
 tun_up_stress_cleanup()
@@ -315,7 +303,6 @@ tun_ipv6_up_stress_head()
 }
 tun_ipv6_up_stress_body()
 {
-	atf_skip "Quickly panics: if_freemulti: protospec not NULL"
 	do_up_stress "tun" "6" "p2p"
 }
 tun_ipv6_up_stress_cleanup()
@@ -346,7 +333,6 @@ vlan_up_stress_head()
 }
 vlan_up_stress_body()
 {
-	atf_skip "Quickly panics: if_freemulti: protospec not NULL"
 	do_up_stress "vlan" "" ""
 }
 vlan_up_stress_cleanup()
@@ -362,7 +348,6 @@ vlan_ipv6_up_stress_head()
 }
 vlan_ipv6_up_stress_body()
 {
-	atf_skip "Quickly panics: if_freemulti: protospec not NULL"
 	do_up_stress "vlan" "6" ""
 }
 vlan_ipv6_up_stress_cleanup()
@@ -408,7 +393,6 @@ vmnet_ipv6_up_stress_head()
 }
 vmnet_ipv6_up_stress_body()
 {
-	atf_skip "Quickly panics: if_freemulti: protospec not NULL"
 	do_up_stress "vmnet" "6" ""
 }
 vmnet_ipv6_up_stress_cleanup()


More information about the svn-src-head mailing list