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 = 'Chromium OS team' 6NAME = 'tast.wificell-func-unstable' 7TIME = 'MEDIUM' 8TEST_TYPE = 'Server' 9ATTRIBUTES = 'suite:wifi_func_tast' 10MAX_RESULT_SIZE_KB = 1024 * 1024 11PY_VERSION = 3 12 13DOC = ''' 14Run the unstable Tast tests which verify basic WiFi functions using wificell fixture. 15 16"group:wificell" indicates that the test runs on a wificell fixture. Its 17sub-attributes: 18 * "wificell_func": the test is used to verify basic WiFi functionality. 19 * "wificell_unstable": the test is unstable or yet to be verified as stable. 20 21Tast is an integration-testing framework analagous to the test-running portion 22of Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ for 23more information. 24 25See http://go/tast-failures for information about investigating failures. 26''' 27 28def run(machine): 29 job.run_test('tast', 30 host=hosts.create_host(machine), 31 test_exprs=['("group:wificell" && wificell_func && ' 32 'wificell_unstable)'], 33 ignore_test_failures=True, max_run_sec=10800, 34 command_args=args) 35 36parallel_simple(run, machines) 37