1# Copyright 2014 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 = 'avakulenko, wiley, keybuk' 6NAME = 'buffet_PrivetInfo' 7TIME = 'FAST' 8TEST_TYPE = 'Server' 9ATTRIBUTES = "suite:tendo_experimental" 10SUITE = 'tendo_experimental' 11 12DOC = """ 13This test verifies that the buffet responds to /privet/info request and returns 14the expected JSON response object. 15 16""" 17 18def run(machine): 19 job.run_test('buffet_PrivetInfo', 20 host=hosts.create_host(machine)) 21 22 23parallel_simple(run, machines) 24