1# Copyright 2015 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 = "ssp_PackageInstall" 7PURPOSE = "Demonstrate SSP supports installation of packages inside test." 8CRITERIA = "This test will always succeed if running with SSP." 9ATTRIBUTES = 'suite:dummy_server' 10TIME = "SHORT" 11TEST_CATEGORY = "General" 12TEST_CLASS = "ssp" 13TEST_TYPE = "server" 14 15DOC = """ 16The test installs OS packages and python packages. If the test is not running 17in container, or it fails to install any package it will fail. 18""" 19 20def run(machine): 21 job.run_test('ssp_PackageInstall', host=hosts.create_host(machine)) 22 23parallel_simple(run, machines) 24