• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5AUTHOR = "Chrome OS Team"
6NAME = "dummy_PassServer_nossp"
7PURPOSE = "Demonstrate success methods of autotests."
8CRITERIA = "This test will always succeed."
9ATTRIBUTES = "suite:dummy_server"
10SUITE = "dummy_server"
11TIME = "SHORT"
12TEST_CATEGORY = "General"
13TEST_CLASS = "dummy"
14TEST_TYPE = "server"
15# Force not to use server side package for this test.
16REQUIRE_SSP = False
17
18DOC = """
19This is a helper test that will succeed and force not to use server side
20packaging.
21"""
22
23def run(machine):
24    job.run_test('dummy_PassServer',
25                 host=hosts.create_host(machine))
26
27parallel_simple(run, machines)