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 5AUTHOR = "Chrome OS Team" 6NAME = "TrackpadStressServer" 7TIME = "SHORT" 8TEST_CATEGORY = "Stress" 9TEST_CLASS = "platform" 10TEST_TYPE = "server" 11 12DOC = """ 13This script performs a kernel panic while running the syndetect command on the 14CMT trackpad driver. It is designed to test if we can disable the trackpad. 15""" 16 17def 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 22parallel_simple(run_trackpad_stress, machines) 23