1# Copyright (c) 2009 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 = "Chrome OS Team" 6NAME = "GCC" 7TIME = "LONG" 8TEST_CATEGORY = "Functional" 9TEST_CLASS = "platform" 10TEST_TYPE = "server" 11 12DOC = """ 13This test runs the GCC test suite which uses the DejaGNU unittest framework. This test requires that DejaGNU be installed and that setup_board is run with FEATURES=noclean so that the toolchain files are available for testing. 14""" 15 16def run_server_tests(machine): 17 client = hosts.create_host(machine) 18 job.run_test("platform_GCC", host=client, args=args) 19 20job.parallel_on_machines(run_server_tests, machines) 21