Add smoke tests to e2e_tests_quick

Add what was previously used as smoke tests to the e2e_tests_quick
group, which runs in CI regularly on release builds. This aims to bridge
the gap between our old and new infrastructures, starting with smoke
tests.

Bug: b/296130128
Change-Id: If0c849a3ce14b3f3eabbd070ae13a370f0f09126
Reviewed-on: https://fuchsia-review.googlesource.com/c/antlion/+/902364
Reviewed-by: Patrick Lu <patricklu@google.com>
Fuchsia-Auto-Submit: Sam Balana <sbalana@google.com>
Commit-Queue: Auto-Submit <auto-submit@fuchsia-infra.iam.gserviceaccount.com>
diff --git a/tests/wlan/BUILD.gn b/tests/wlan/BUILD.gn
index 717fed9..65c2b08 100644
--- a/tests/wlan/BUILD.gn
+++ b/tests/wlan/BUILD.gn
@@ -18,7 +18,9 @@
 group("e2e_tests_quick") {
   testonly = true
   public_deps = [
+    "compliance:e2e_tests_quick",
     "functional:e2e_tests_quick",
+    "performance:e2e_tests_quick",
   ]
 }
 
diff --git a/tests/wlan/compliance/BUILD.gn b/tests/wlan/compliance/BUILD.gn
index 98e290e..709a0d8 100644
--- a/tests/wlan/compliance/BUILD.gn
+++ b/tests/wlan/compliance/BUILD.gn
@@ -37,6 +37,23 @@
   environments = display_ap_envs
 }
 
+antlion_host_test("wlan_security_compliance_abg_test_quick") {
+  main_source = "WlanSecurityComplianceABGTest.py"
+  environments = display_ap_envs
+  test_cases = [
+    "test_associate_11bg_sec_open_wep_26_hex_ptk_none",
+    "test_associate_11bg_sec_wpa_psk_ptk_tkip",
+    "test_associate_11bg_sec_wpa_psk_ptk_ccmp",
+    "test_associate_11bg_sec_wpa2_psk_ptk_tkip",
+    "test_associate_11bg_sec_wpa2_psk_ptk_ccmp",
+    "test_associate_11bg_pmf_sec_wpa2_psk_ptk_ccmp",
+    "test_associate_11bg_sec_wpa_wpa2_psk_ptk_tkip",
+    "test_associate_11bg_sec_wpa_wpa2_psk_ptk_ccmp",
+    "test_associate_11bg_sec_wpa3_sae_ptk_ccmp",
+    "test_associate_11bg_sec_wpa2_wpa3_psk_sae_ptk_ccmp",
+  ]
+}
+
 group("e2e_tests") {
   testonly = true
   public_deps = [
@@ -48,3 +65,10 @@
     ":wlan_security_compliance_abg_test($host_toolchain)",
   ]
 }
+
+group("e2e_tests_quick") {
+  testonly = true
+  public_deps = [
+    ":wlan_security_compliance_abg_test_quick($host_toolchain)",
+  ]
+}
diff --git a/tests/wlan/functional/BUILD.gn b/tests/wlan/functional/BUILD.gn
index ddfea05..29acd0c 100644
--- a/tests/wlan/functional/BUILD.gn
+++ b/tests/wlan/functional/BUILD.gn
@@ -78,6 +78,7 @@
   testonly = true
   public_deps = [
     ":ping_stress_test($host_toolchain)",
+    "reboot:e2e_tests_quick",
   ]
 }
 
diff --git a/tests/wlan/functional/reboot/BUILD.gn b/tests/wlan/functional/reboot/BUILD.gn
index a4c83c7..01e754b 100644
--- a/tests/wlan/functional/reboot/BUILD.gn
+++ b/tests/wlan/functional/reboot/BUILD.gn
@@ -15,6 +15,17 @@
   environments = display_ap_iperf_envs
 }
 
+antlion_host_test("wlan_reboot_ap_test_quick") {
+  main_source = "WlanRebootApTest.py"
+  sources = [
+    "base_test.py",
+  ]
+  environments = display_ap_iperf_envs
+  test_cases = [
+    "test_soft_reboot_dut_5g_open_ipv4",
+  ]
+}
+
 antlion_host_test("wlan_reboot_dut_test") {
   main_source = "WlanRebootDutTest.py"
   sources = [
@@ -23,6 +34,17 @@
   environments = display_ap_iperf_envs
 }
 
+antlion_host_test("wlan_reboot_dut_test_quick") {
+  main_source = "WlanRebootDutTest.py"
+  sources = [
+    "base_test.py",
+  ]
+  environments = display_ap_iperf_envs
+  test_cases = [
+    "test_soft_reboot_ap_5g_open_ipv4",
+  ]
+}
+
 group("e2e_tests") {
   testonly = true
   public_deps = [
@@ -30,3 +52,11 @@
     ":wlan_reboot_dut_test($host_toolchain)",
   ]
 }
+
+group("e2e_tests_quick") {
+  testonly = true
+  public_deps = [
+    ":wlan_reboot_ap_test_quick($host_toolchain)",
+    ":wlan_reboot_dut_test_quick($host_toolchain)",
+  ]
+}
diff --git a/tests/wlan/performance/BUILD.gn b/tests/wlan/performance/BUILD.gn
index 4cf391a..7adc144 100644
--- a/tests/wlan/performance/BUILD.gn
+++ b/tests/wlan/performance/BUILD.gn
@@ -12,6 +12,17 @@
   environments = display_ap_iperf_envs
 }
 
+antlion_host_test("channel_sweep_test_quick") {
+  main_source = "ChannelSweepTest.py"
+  environments = display_ap_iperf_envs
+  test_cases = [
+    "test_us_wpa2_channel_8_20mhz",
+    "test_us_wpa2_channel_40_80mhz", # non-DFS 5GHz channel
+    "test_us_wpa2_channel_100_80mhz", # DFS 5GHz channel
+    "test_us_wpa2_channel_165_20mhz",
+  ]
+}
+
 antlion_host_test("wlan_rvr_test_2g_open") {
   main_source = "WlanRvrTest.py"
   test_params = "rvr_settings.yaml"
@@ -59,6 +70,13 @@
   ]
 }
 
+group("e2e_tests_quick") {
+  testonly = true
+  public_deps = [
+    ":channel_sweep_test_quick($host_toolchain)",
+  ]
+}
+
 group("e2e_tests_manual") {
   testonly = true
   public_deps = [