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