@@ -14,11 +14,11 @@ use crate::integration_tests::common;
1414use crate :: integration_tests:: common:: prelude:: * ;
1515use :: common:: network:: MacAddr ;
1616use anyhow:: anyhow;
17- use dpd_client:: { Error , types } ;
17+ use dpd_client:: { types , Error } ;
1818use dpd_types:: mcast:: ADMIN_LOCAL_PREFIX ;
1919use futures:: TryStreamExt ;
2020use oxnet:: MulticastMac ;
21- use packet:: { Endpoint , eth, geneve, ipv4, ipv6, udp} ;
21+ use packet:: { eth, geneve, ipv4, ipv6, udp, Endpoint } ;
2222
2323const MULTICAST_TEST_IPV4 : Ipv4Addr = Ipv4Addr :: new ( 224 , 0 , 1 , 0 ) ;
2424const MULTICAST_TEST_IPV6 : Ipv6Addr =
@@ -1914,8 +1914,8 @@ async fn test_ipv4_multicast_basic_replication_nat_ingress() -> TestResult {
19141914
19151915#[ tokio:: test]
19161916#[ ignore]
1917- async fn test_encapped_multicast_geneve_mcast_tag_to_external_members ( )
1918- -> TestResult {
1917+ async fn test_encapped_multicast_geneve_mcast_tag_to_external_members (
1918+ ) -> TestResult {
19191919 let switch = & * get_switch ( ) . await ;
19201920
19211921 // Define test ports
@@ -2056,8 +2056,8 @@ async fn test_encapped_multicast_geneve_mcast_tag_to_external_members()
20562056
20572057#[ tokio:: test]
20582058#[ ignore]
2059- async fn test_encapped_multicast_geneve_mcast_tag_to_underlay_members ( )
2060- -> TestResult {
2059+ async fn test_encapped_multicast_geneve_mcast_tag_to_underlay_members (
2060+ ) -> TestResult {
20612061 let switch = & * get_switch ( ) . await ;
20622062
20632063 // Define test ports
@@ -2195,8 +2195,8 @@ async fn test_encapped_multicast_geneve_mcast_tag_to_underlay_members()
21952195
21962196#[ tokio:: test]
21972197#[ ignore]
2198- async fn test_encapped_multicast_geneve_mcast_tag_to_underlay_and_external_members ( )
2199- -> TestResult {
2198+ async fn test_encapped_multicast_geneve_mcast_tag_to_underlay_and_external_members (
2199+ ) -> TestResult {
22002200 let switch = & * get_switch ( ) . await ;
22012201
22022202 // Define test ports
@@ -3900,6 +3900,10 @@ async fn test_multicast_reset_all_tables() -> TestResult {
39003900 Ok ( ( ) )
39013901}
39023902
3903+ /*
3904+ * Commented out untl https://github.com/oxidecomputer/dendrite/issues/107 is
3905+ * fixed
3906+ *
39033907#[tokio::test]
39043908#[ignore]
39053909async fn test_multicast_vlan_translation_not_possible() -> TestResult {
@@ -3976,6 +3980,7 @@ async fn test_multicast_vlan_translation_not_possible() -> TestResult {
39763980 .unwrap();
39773981 cleanup_test_group(switch, internal_multicast_ip, TEST_TAG).await
39783982}
3983+ */
39793984
39803985#[ tokio:: test]
39813986#[ ignore]
0 commit comments