218c4e68c1
Rather than using linuxapp and bsdapp everywhere, we can change things to use the, more readable, terms "linux" and "freebsd" in our build configs. Rather than renaming the configs we can just duplicate the existing ones with the new names using symlinks, and use the new names exclusively internally. ["make showconfigs" also only shows the new names to keep the list short] The result is that backward compatibility is kept fully but any new builds or development can be done using the newer names, i.e. both "make config T=x86_64-native-linuxapp-gcc" and "T=x86_64-native-linux-gcc" work. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
52 lines
1.4 KiB
Python
52 lines
1.4 KiB
Python
#!/usr/bin/env python
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
|
|
|
# Script that uses either test app or qemu controlled by python-pexpect
|
|
from __future__ import print_function
|
|
import autotest_data
|
|
import autotest_runner
|
|
import sys
|
|
|
|
|
|
def usage():
|
|
print("Usage: autotest.py [test app|test iso image] ",
|
|
"[target] [whitelist|-blacklist]")
|
|
|
|
if len(sys.argv) < 3:
|
|
usage()
|
|
sys.exit(1)
|
|
|
|
target = sys.argv[2]
|
|
|
|
test_whitelist = None
|
|
test_blacklist = None
|
|
|
|
# get blacklist/whitelist
|
|
if len(sys.argv) > 3:
|
|
testlist = sys.argv[3].split(',')
|
|
testlist = [test.lower() for test in testlist]
|
|
if testlist[0].startswith('-'):
|
|
testlist[0] = testlist[0].lstrip('-')
|
|
test_blacklist = testlist
|
|
else:
|
|
test_whitelist = testlist
|
|
|
|
cmdline = "%s -c f -n 4" % (sys.argv[1])
|
|
|
|
print(cmdline)
|
|
|
|
# how many workers to run tests with. FreeBSD doesn't support multiple primary
|
|
# processes, so make it 1, otherwise make it 4. ignored for non-parallel tests
|
|
n_processes = 1 if "bsd" in target else 4
|
|
|
|
runner = autotest_runner.AutotestRunner(cmdline, target, test_blacklist,
|
|
test_whitelist, n_processes)
|
|
|
|
runner.parallel_tests = autotest_data.parallel_test_list[:]
|
|
runner.non_parallel_tests = autotest_data.non_parallel_test_list[:]
|
|
|
|
num_fails = runner.run_all_tests()
|
|
|
|
sys.exit(num_fails)
|