• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2020 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 = "asavery"
6NAME = "hardware_StorageQualBase.test_nonroot"
7TIME = "LONG"
8TEST_CATEGORY = "Functional"
9TEST_CLASS = "suite"
10TEST_TYPE = "server"
11PY_VERSION = 3
12FAST = False
13
14DOC = """
15Check the test hardware_StorageQualBase is working as expected for
16nonroot storage devices.
17"""
18
19def run_server_tests(machine):
20    job.run_test('hardware_StorageQualBase', client_ip=machine,
21                 client_tag='test', nonroot=True)
22
23parallel_simple(run_server_tests, machines)
24
25