25 lines
		
	
	
		
			779 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			779 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
| # Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
 | |
| # Use of this source code is governed by a BSD-style license that can be
 | |
| # found in the LICENSE file.
 | |
| 
 | |
| from autotest_lib.client.common_lib import utils
 | |
| 
 | |
| AUTHOR = "drinkcat,dnschneid"
 | |
| NAME = "platform_Crouton"
 | |
| TIME = "LENGTHY"
 | |
| TEST_TYPE = "client"
 | |
| 
 | |
| DOC = """
 | |
| This test fetches a specific branch of crouton, and runs crouton tests.
 | |
| 
 | |
| @param repo: (dnschneid/crouton) github repository to fetch from
 | |
| @param branch: (master) github branch
 | |
| @param runargs: (-R precise 00) parameters to pass to run.sh
 | |
| @param env: () Environment variables to set, semicolon-separated key=val pairs.
 | |
|             Only CROUTON_MIRROR_* can be set
 | |
| """
 | |
| 
 | |
| args_dict = utils.args_to_dict(args)
 | |
| 
 | |
| job.run_test('platform_Crouton', args=args_dict)
 |