]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Disable checks on children of structs until UNION data types are done
authorNick Porter <nick@portercomputing.co.uk>
Mon, 17 Nov 2025 14:15:33 +0000 (14:15 +0000)
committerNick Porter <nick@portercomputing.co.uk>
Mon, 17 Nov 2025 17:00:55 +0000 (17:00 +0000)
src/tests/process/dhcpv6/Request

index a240bc51bdfb584049f7d435d969a1af9f596f6a..518a86a1ee1db21ea89dce73a60ae94b8b1a6da7 100644 (file)
@@ -37,17 +37,20 @@ subrequest @DHCPv6::Request {
 
                test_dhcpv6_reply_matches_request
 
-               # ... Server-ID must be inside reply
-               if (!reply.Server-ID.DUID.LLT.Hardware-Type) {
-                       test_fail
-               }
-
-               if (!reply.Server-ID.DUID.LLT.Time) {
-                       test_fail
-               }
-
-               if (!reply.Server-ID.DUID.LLT.Hardware-Type.Ethernet.Address) {
-                       test_fail
-               }
+#
+#  Disabled at present pending UNION data types
+#
+#              # ... Server-ID must be inside reply
+#              if (!reply.Server-ID.DUID.LLT.Hardware-Type) {
+#                      test_fail
+#              }
+
+#              if (!reply.Server-ID.DUID.LLT.Time) {
+#                      test_fail
+#              }
+
+#              if (!reply.Server-ID.DUID.LLT.Hardware-Type.Ethernet.Address) {
+#                      test_fail
+#              }
        }
 }