Move regulatory test to manual test group

The RegulatoryComplianceTest is usually only necessary when verifying
new WLAN firmware patches. Take it out of automation; it takes too long
otherwise.

Change-Id: I6122efdc89135475a0559da20360e866aa123b5c
Reviewed-on: https://fuchsia-review.googlesource.com/c/antlion/+/918065
Fuchsia-Auto-Submit: Sam Balana <sbalana@google.com>
Commit-Queue: Auto-Submit <auto-submit@fuchsia-infra.iam.gserviceaccount.com>
Reviewed-by: Jonathan Chang <jnchang@google.com>
diff --git a/tests/wlan/BUILD.gn b/tests/wlan/BUILD.gn
index 65c2b08..a79ca51 100644
--- a/tests/wlan/BUILD.gn
+++ b/tests/wlan/BUILD.gn
@@ -27,6 +27,7 @@
 group("e2e_tests_manual") {
   testonly = true
   public_deps = [
+    "compliance:e2e_tests_manual",
     "functional:e2e_tests_manual",
     "performance:e2e_tests_manual",
   ]
diff --git a/tests/wlan/compliance/BUILD.gn b/tests/wlan/compliance/BUILD.gn
index 709a0d8..98551aa 100644
--- a/tests/wlan/compliance/BUILD.gn
+++ b/tests/wlan/compliance/BUILD.gn
@@ -57,7 +57,6 @@
 group("e2e_tests") {
   testonly = true
   public_deps = [
-    ":regulatory_compliance_test($host_toolchain)",
     ":vape_interop_test($host_toolchain)",
     ":wlan_phy_compliance_11ac_test($host_toolchain)",
     ":wlan_phy_compliance_11n_test($host_toolchain)",
@@ -72,3 +71,13 @@
     ":wlan_security_compliance_abg_test_quick($host_toolchain)",
   ]
 }
+
+group("e2e_tests_manual") {
+  testonly = true
+  public_deps = [
+    # Running RegulatoryComplianceTest is usually only necessary when verifying
+    # new WLAN firmware patches. Take it out of automation; it takes too long
+    # otherwise.
+    ":regulatory_compliance_test($host_toolchain)",
+  ]
+}