blob: a4c83c78477c2c7b67fd7448a0f183efb440cb53 [file] [log] [blame]
# Copyright 2023 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//third_party/antlion/antlion_host_test.gni")
import("//third_party/antlion/environments.gni")
assert(is_host, "antlion tests only supported for host testing")
antlion_host_test("wlan_reboot_ap_test") {
main_source = "WlanRebootApTest.py"
sources = [
"base_test.py",
]
environments = display_ap_iperf_envs
}
antlion_host_test("wlan_reboot_dut_test") {
main_source = "WlanRebootDutTest.py"
sources = [
"base_test.py",
]
environments = display_ap_iperf_envs
}
group("e2e_tests") {
testonly = true
public_deps = [
":wlan_reboot_ap_test($host_toolchain)",
":wlan_reboot_dut_test($host_toolchain)",
]
}