1 # Copyright (c) 2012 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 = "TrackpadStressServer" 7 TIME = "SHORT" 8 TEST_CATEGORY = "Stress" 9 TEST_CLASS = "platform" 10 TEST_TYPE = "server" 11 12 DOC = """ 13 This script performs a kernel panic while running the syndetect command on the 14 CMT trackpad driver. It is designed to test if we can disable the trackpad. 15 """ 16 17 def run_trackpad_stress(machine): 18 host = hosts.create_host(machine) 19 job.run_test("platform_TrackpadStressServer", host=host, iterations=1, 20 disable_sysinfo=True) 21 22 parallel_simple(run_trackpad_stress, machines) 23