Home | History | Annotate | Download | only in kernel_LTP
      1 # Copyright (c) 2013 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 NAME = "kernel_ltp"
      6 AUTHOR = "The Chromium OS Authors,chromeos-kernel-test (a] google.com"
      7 TIME = "MEDIUM"
      8 # TODO (jimishs) - crbug.com/354547.
      9 # Uncomment the suite line below once the test can be properly ran in the lab.
     10 #ATTRIBUTES = "suite:kernel_weekly_regression"
     11 TEST_CATEGORY = "FUNCTIONAL"
     12 TEST_CLASS = "KERNEL"
     13 TEST_TYPE = "CLIENT"
     14 DOC = """
     15 Invokes custom ChromeOS kernel unittests LTP cmdfile.
     16 Runs the sequence of all tests in the LTP cmdfile.
     17 """
     18 
     19 cmd_file_list = ['cros_kernel_unittests']
     20 ltp_args = '-f "%s"' % ','.join(cmd_file_list)
     21 
     22 job.run_test('kernel_LTP', args=ltp_args)
     23