1# Copyright 2019 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5AUTHOR = 'pauletti' 6NAME = 'network_WiFiHECaps.MU_MIMO' 7ATTRIBUTES = 'suite:wifi_flaky' 8TIME = 'SHORT' 9TEST_TYPE = 'client' 10 11DOC = """ 12This test checks that a device which supports the 802.11ax WiFi also supports 13Multi-User Multi Input Multi Output (MU-MIMO) downlink (DL) and uplink (UL). 14""" 15 16from autotest_lib.client.common_lib.cros.network import iw_runner 17 18job.run_test('network_WiFiHECaps', tag=NAME.split('.')[1], 19 features=[[iw_runner.HE_PHY_FULL_BAND_UL_MU_MIMO, 20 iw_runner.HE_PHY_PART_BAND_UL_MU_MIMO], 21 [iw_runner.HE_PHY_PART_BAND_DL_MU_MIMO]]) 22 23