[nexus] clean up test labels and sorting in CMakeLists (#13152)

This commit refactors the Nexus tests configuration in CMakeLists.txt
by properly classifying and sorting test cases:

- Moved `inform_previous_parent_on_reattach` from the "Cert tests"
  section to the "Misc tests" section, and changed its label from
  "cert;nexus" to "core;nexus".
- Moved `retransmission_security` from the "Cert tests" section
  to the "Misc tests" section where it belongs (retaining its
  "core;nexus" label) and sorted it alphabetically.

These changes ensure the CMake file remains clean and the tests are
properly categorized.
This commit is contained in:
Jonathan Hui
2026-05-27 10:17:22 -07:00
committed by GitHub
parent 9431d3a77e
commit a18123b349
+2 -2
View File
@@ -393,8 +393,6 @@ ot_nexus_test(1_4_PIC_TC_1 "cert;nexus")
ot_nexus_test(1_4_PIC_TC_3 "cert;nexus")
ot_nexus_test(1_4_PIC_TC_4 "cert;nexus")
ot_nexus_test(1_4_CS_TC_3 "cert;nexus")
ot_nexus_test(inform_previous_parent_on_reattach "cert;nexus")
ot_nexus_test(retransmission_security "core;nexus")
# Misc tests
ot_nexus_test(anycast "core;nexus")
@@ -417,6 +415,7 @@ ot_nexus_test(dtls "core;nexus")
ot_nexus_test(fed_rx_only_link_establishment "core;nexus")
ot_nexus_test(form_join "core;nexus")
ot_nexus_test(history_tracker "core;nexus")
ot_nexus_test(inform_previous_parent_on_reattach "core;nexus")
ot_nexus_test(ipv6_fragmentation "core;nexus")
ot_nexus_test(ipv6_recursion "core;nexus")
ot_nexus_test(ipv6_source_selection "core;nexus")
@@ -436,6 +435,7 @@ ot_nexus_test(ping_lla_src "core;nexus")
ot_nexus_test(radio_filter "core;nexus")
ot_nexus_test(reed_address_solicit_rejected "core;nexus")
ot_nexus_test(reset "core;nexus")
ot_nexus_test(retransmission_security "core;nexus")
ot_nexus_test(router_downgrade_on_sec_policy_change "core;nexus")
ot_nexus_test(router_multicast_link_request "core;nexus")
ot_nexus_test(router_reattach "core;nexus")