• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2016 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.ssp"
7PURPOSE = "Demonstrate success methods of autotests."
8CRITERIA = "This test will always succeed when running in a container."
9ATTRIBUTES = "suite:push_to_prod, suite:dummy_server"
10TIME = "SHORT"
11TEST_CATEGORY = "General"
12TEST_CLASS = "dummy"
13TEST_TYPE = "server"
14
15DOC = """
16This is a helper test that will succeed and force to use server-side packaging.
17"""
18
19def run(machine):
20    job.run_test('dummy_PassServer', host=hosts.create_host(machine),
21                 force_ssp=True)
22
23parallel_simple(run, machines)