| # Copyright 2019 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("//build/test/test_package.gni") |
| import("//build/testing/environments.gni") |
| |
| test_package("wlan-hw-sim-test") { |
| deps = [ |
| "configure_legacy_privacy_off", |
| "configure_legacy_privacy_on", |
| "connect_to_open_network", |
| "connect_to_wpa2_network", |
| "ethernet_tx_rx", |
| "multi_ifaces", |
| "multiple_clients_ap", |
| "open_ap_connect", |
| "rate_selection", |
| "set_country", |
| "sim_client_vs_sim_ap", |
| "simulate_scan", |
| "verify_ethernet", |
| "//src/connectivity/wlan/testing/hw-sim:wlan-hw-sim", |
| ] |
| |
| tests = [ |
| { |
| name = "configure_legacy_privacy_on" |
| environments = basic_envs |
| }, |
| { |
| name = "configure_legacy_privacy_off" |
| environments = basic_envs |
| }, |
| { |
| name = "connect_to_open_network" |
| environments = basic_envs |
| }, |
| { |
| name = "connect_to_wpa2_network" |
| environments = basic_envs |
| }, |
| { |
| name = "ethernet_tx_rx" |
| environments = basic_envs |
| }, |
| { |
| name = "multiple_clients_ap" |
| environments = basic_envs |
| }, |
| { |
| name = "open_ap_connect" |
| environments = basic_envs |
| }, |
| { |
| name = "rate_selection" |
| environments = [ nuc_env ] |
| }, |
| { |
| name = "set_country" |
| environments = basic_envs |
| }, |
| { |
| name = "sim_client_vs_sim_ap" |
| environments = basic_envs |
| }, |
| { |
| name = "simulate_scan" |
| environments = basic_envs |
| }, |
| { |
| name = "multi_ifaces" |
| environments = basic_envs |
| }, |
| { |
| name = "verify_ethernet" |
| environments = basic_envs |
| }, |
| ] |
| } |