1# Copyright 2015 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 = 'sbasi' 6NAME = 'brillo_WhitelistedGtests' 7TIME = 'MEDIUM' 8TEST_TYPE = 'Server' 9ATTRIBUTES = 'suite:brillo-bvt,suite:brillo-smoke' 10SUITE = 'brillo-bvt,brillo-smoke' 11 12DOC = """ 13This test runs all the whitelisted native gTests found on a Brillo DUT. 14 15""" 16 17def run(machine): 18 job.run_test('brillo_Gtests', host=hosts.create_host(machine), 19 use_whitelist=True) 20 21 22parallel_simple(run, machines) 23