mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	Convert buildman to Python 3 and make it use that, to meet the 2020 deadline. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			69 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python3
 | 
						|
# SPDX-License-Identifier: GPL-2.0+
 | 
						|
#
 | 
						|
# Copyright (c) 2012 The Chromium OS Authors.
 | 
						|
#
 | 
						|
 | 
						|
"""See README for more information"""
 | 
						|
 | 
						|
from __future__ import print_function
 | 
						|
 | 
						|
import multiprocessing
 | 
						|
import os
 | 
						|
import re
 | 
						|
import sys
 | 
						|
import unittest
 | 
						|
 | 
						|
# Bring in the patman libraries
 | 
						|
our_path = os.path.dirname(os.path.realpath(__file__))
 | 
						|
sys.path.insert(1, os.path.join(our_path, '../patman'))
 | 
						|
 | 
						|
# Our modules
 | 
						|
import board
 | 
						|
import bsettings
 | 
						|
import builder
 | 
						|
import checkpatch
 | 
						|
import cmdline
 | 
						|
import control
 | 
						|
import doctest
 | 
						|
import gitutil
 | 
						|
import patchstream
 | 
						|
import terminal
 | 
						|
import toolchain
 | 
						|
 | 
						|
def RunTests(skip_net_tests):
 | 
						|
    import func_test
 | 
						|
    import test
 | 
						|
    import doctest
 | 
						|
 | 
						|
    result = unittest.TestResult()
 | 
						|
    for module in ['toolchain', 'gitutil']:
 | 
						|
        suite = doctest.DocTestSuite(module)
 | 
						|
        suite.run(result)
 | 
						|
 | 
						|
    sys.argv = [sys.argv[0]]
 | 
						|
    if skip_net_tests:
 | 
						|
        test.use_network = False
 | 
						|
    for module in (test.TestBuild, func_test.TestFunctional):
 | 
						|
        suite = unittest.TestLoader().loadTestsFromTestCase(module)
 | 
						|
        suite.run(result)
 | 
						|
 | 
						|
    print(result)
 | 
						|
    for test, err in result.errors:
 | 
						|
        print(err)
 | 
						|
    for test, err in result.failures:
 | 
						|
        print(err)
 | 
						|
 | 
						|
 | 
						|
options, args = cmdline.ParseArgs()
 | 
						|
 | 
						|
# Run our meagre tests
 | 
						|
if options.test:
 | 
						|
    RunTests(options.skip_net_tests)
 | 
						|
 | 
						|
# Build selected commits for selected boards
 | 
						|
else:
 | 
						|
    bsettings.Setup(options.config_file)
 | 
						|
    ret_code = control.DoBuildman(options, args)
 | 
						|
    sys.exit(ret_code)
 |