# Copyright 2014 The Chromium OS Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. AUTHOR = "fdeng, chromeos-lab-infrastructure" NAME = "stub_PassServer.calibration" PURPOSE = "An empty control file that does nothing." CRITERIA = "This test will always succeed." ATTRIBUTES = "suite:calibration, suite:sanity" TIME = "SHORT" TEST_CATEGORY = "General" TEST_CLASS = "stub" TEST_TYPE = "server" PY_VERSION = 3 DOC = """ It belongs to the calibration suite, which verifies provisioning. The only purpose of this test is to trigger a provision task. We explicitly make it not call job.runtest to avoid overhead of installing/uninstalling autotest packages. """ # We need to record the state, so that tko paser can still parse it # as a test. job.record('START', None, NAME) job.record('GOOD', None, None, 'completed successfully') job.record('END GOOD', None, NAME)