From: Markus Lehtonen Date: Thu, 11 Aug 2016 13:50:55 +0000 (+0300) Subject: oe-build-perf-test: implement --run-tests option X-Git-Tag: uninative-1.4~426 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=be4373be54e5b84f951771b0e75140f212838020;p=openembedded-core.git oe-build-perf-test: implement --run-tests option Makes it possible to run only a subset of tests. NOTE: The tests currently have (unwritten) dependencies on each other so use this option with care. Mainly for debugging. Signed-off-by: Markus Lehtonen Signed-off-by: Ross Burton --- diff --git a/scripts/oe-build-perf-test b/scripts/oe-build-perf-test index 88af40ab76..808531efff 100755 --- a/scripts/oe-build-perf-test +++ b/scripts/oe-build-perf-test @@ -105,6 +105,8 @@ def parse_args(argv): help="Lock file to use") parser.add_argument('-o', '--out-dir', default='results-{date}', help="Output directory for test results") + parser.add_argument('--run-tests', nargs='+', metavar='TEST', + help="List of tests to run") return parser.parse_args(argv) @@ -133,7 +135,10 @@ def main(argv=None): # Load build perf tests loader = BuildPerfTestLoader() - suite = loader.discover(start_dir=os.path.dirname(oeqa.buildperf.__file__)) + if args.run_tests: + suite = loader.loadTestsFromNames(args.run_tests, oeqa.buildperf) + else: + suite = loader.loadTestsFromModule(oeqa.buildperf) archive_build_conf(out_dir) runner = BuildPerfTestRunner(out_dir, verbosity=2)