Home | History | Annotate | Download | only in platform_GCC
      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 
      5 AUTHOR = "Chrome OS Team"
      6 NAME = "GCC"
      7 TIME = "LONG"
      8 TEST_CATEGORY = "Functional"
      9 TEST_CLASS = "platform"
     10 TEST_TYPE = "server"
     11 
     12 DOC = """
     13 This 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 
     16 def run_server_tests(machine):
     17   client = hosts.create_host(machine)
     18   job.run_test("platform_GCC", host=client, args=args)
     19 
     20 job.parallel_on_machines(run_server_tests, machines)
     21