| 
									
										
										
										
											2020-01-28 14:48:54 +01:00
										 |  |  | #! /usr/bin/env python3 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Create Makefile targets to run tests, from Meson's test introspection data. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Author: Paolo Bonzini <pbonzini@redhat.com> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from collections import defaultdict | 
					
						
							| 
									
										
										
										
											2020-09-04 10:06:06 -04:00
										 |  |  | import itertools | 
					
						
							| 
									
										
										
										
											2020-01-28 14:48:54 +01:00
										 |  |  | import json | 
					
						
							|  |  |  | import os | 
					
						
							|  |  |  | import shlex | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Suite(object): | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							| 
									
										
										
										
											2021-02-11 06:15:12 -05:00
										 |  |  |         self.deps = set() | 
					
						
							|  |  |  |         self.speeds = ['quick'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def names(self, base): | 
					
						
							|  |  |  |         return [base if speed == 'quick' else f'{base}-{speed}' for speed in self.speeds] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-28 14:48:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | print('''
 | 
					
						
							|  |  |  | SPEED = quick | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-09 14:13:00 +01:00
										 |  |  | .speed.quick = $(foreach s,$(sort $(filter-out %-slow %-thorough, $1)), --suite $s) | 
					
						
							|  |  |  | .speed.slow = $(foreach s,$(sort $(filter-out %-thorough, $1)), --suite $s) | 
					
						
							|  |  |  | .speed.thorough = $(foreach s,$(sort $1), --suite $s) | 
					
						
							| 
									
										
										
										
											2020-01-28 14:48:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-13 12:43:40 +03:00
										 |  |  | TIMEOUT_MULTIPLIER ?= 1 | 
					
						
							| 
									
										
										
										
											2023-12-15 08:03:57 +01:00
										 |  |  | .mtestargs = --no-rebuild -t $(TIMEOUT_MULTIPLIER) | 
					
						
							| 
									
										
										
										
											2021-02-11 06:15:12 -05:00
										 |  |  | ifneq ($(SPEED), quick) | 
					
						
							|  |  |  | .mtestargs += --setup $(SPEED) | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | .mtestargs += $(subst -j,--num-processes , $(filter-out -j, $(lastword -j1 $(filter -j%, $(MAKEFLAGS))))) | 
					
						
							| 
									
										
										
										
											2020-01-28 14:48:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-11 06:15:12 -05:00
										 |  |  | .check.mtestargs = $(MTESTARGS) $(.mtestargs) $(if $(V),--verbose,--print-errorlogs) | 
					
						
							|  |  |  | .bench.mtestargs = $(MTESTARGS) $(.mtestargs) --benchmark --verbose''')
 | 
					
						
							| 
									
										
										
										
											2020-01-28 14:48:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-02 07:19:43 -04:00
										 |  |  | introspect = json.load(sys.stdin) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-04 10:06:06 -04:00
										 |  |  | def process_tests(test, targets, suites): | 
					
						
							| 
									
										
										
										
											2020-08-26 23:10:02 +08:00
										 |  |  |     executable = test['cmd'][0] | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         executable = os.path.relpath(executable) | 
					
						
							|  |  |  |     except: | 
					
						
							|  |  |  |         pass | 
					
						
							| 
									
										
										
										
											2020-09-04 10:06:06 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-09 14:59:26 +01:00
										 |  |  |     deps = (targets.get(x, []) for x in test['depends']) | 
					
						
							|  |  |  |     deps = itertools.chain.from_iterable(deps) | 
					
						
							| 
									
										
										
										
											2021-02-11 06:15:12 -05:00
										 |  |  |     deps = list(deps) | 
					
						
							| 
									
										
										
										
											2020-01-28 14:48:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     test_suites = test['suite'] or ['default'] | 
					
						
							|  |  |  |     for s in test_suites: | 
					
						
							| 
									
										
										
										
											2023-03-02 17:18:45 +04:00
										 |  |  |         # The suite name in the introspection info is "PROJECT" or "PROJECT:SUITE" | 
					
						
							|  |  |  |         if ':' in s: | 
					
						
							|  |  |  |             s = s.split(':')[1] | 
					
						
							|  |  |  |             if s == 'slow' or s == 'thorough': | 
					
						
							|  |  |  |                 continue | 
					
						
							| 
									
										
										
										
											2020-01-28 14:48:54 +01:00
										 |  |  |         if s.endswith('-slow'): | 
					
						
							|  |  |  |             s = s[:-5] | 
					
						
							| 
									
										
										
										
											2021-02-11 06:15:12 -05:00
										 |  |  |             suites[s].speeds.append('slow') | 
					
						
							| 
									
										
										
										
											2021-11-09 14:13:00 +01:00
										 |  |  |         if s.endswith('-thorough'): | 
					
						
							|  |  |  |             s = s[:-9] | 
					
						
							|  |  |  |             suites[s].speeds.append('thorough') | 
					
						
							| 
									
										
										
										
											2021-02-11 06:15:12 -05:00
										 |  |  |         suites[s].deps.update(deps) | 
					
						
							| 
									
										
										
										
											2020-01-28 14:48:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-02 07:19:43 -04:00
										 |  |  | def emit_prolog(suites, prefix): | 
					
						
							| 
									
										
										
										
											2021-02-11 06:15:12 -05:00
										 |  |  |     all_targets = ' '.join((f'{prefix}-{k}' for k in suites.keys())) | 
					
						
							|  |  |  |     all_xml = ' '.join((f'{prefix}-report-{k}.junit.xml' for k in suites.keys())) | 
					
						
							|  |  |  |     print() | 
					
						
							|  |  |  |     print(f'all-{prefix}-targets = {all_targets}') | 
					
						
							|  |  |  |     print(f'all-{prefix}-xml = {all_xml}') | 
					
						
							|  |  |  |     print(f'.PHONY: {prefix} do-meson-{prefix} {prefix}-report.junit.xml $(all-{prefix}-targets) $(all-{prefix}-xml)') | 
					
						
							|  |  |  |     print(f'ifeq ($(filter {prefix}, $(MAKECMDGOALS)),)') | 
					
						
							|  |  |  |     print(f'.{prefix}.mtestargs += $(call .speed.$(SPEED), $(.{prefix}.mtest-suites))') | 
					
						
							|  |  |  |     print(f'endif') | 
					
						
							|  |  |  |     print(f'{prefix}-build: run-ninja') | 
					
						
							|  |  |  |     print(f'{prefix} $(all-{prefix}-targets): do-meson-{prefix}') | 
					
						
							|  |  |  |     print(f'do-meson-{prefix}: run-ninja; $(if $(MAKE.n),,+)$(MESON) test $(.{prefix}.mtestargs)') | 
					
						
							|  |  |  |     print(f'{prefix}-report.junit.xml $(all-{prefix}-xml): {prefix}-report%.junit.xml: run-ninja') | 
					
						
							|  |  |  |     print(f'\t$(MAKE) {prefix}$* MTESTARGS="$(MTESTARGS) --logbase {prefix}-report$*" && ln -f meson-logs/$@ .') | 
					
						
							| 
									
										
										
										
											2020-09-02 07:19:43 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-06 11:27:47 +02:00
										 |  |  | def emit_suite_deps(name, suite, prefix): | 
					
						
							| 
									
										
										
										
											2021-02-11 06:15:12 -05:00
										 |  |  |     deps = ' '.join(suite.deps) | 
					
						
							| 
									
										
										
										
											2022-05-27 16:35:44 +01:00
										 |  |  |     targets = [f'{prefix}-{name}', f'{prefix}-report-{name}.junit.xml', f'{prefix}', f'{prefix}-report.junit.xml', | 
					
						
							|  |  |  |                f'{prefix}-build'] | 
					
						
							| 
									
										
										
										
											2021-02-11 06:15:12 -05:00
										 |  |  |     print() | 
					
						
							|  |  |  |     print(f'.{prefix}-{name}.deps = {deps}') | 
					
						
							| 
									
										
										
										
											2022-05-27 16:35:44 +01:00
										 |  |  |     for t in targets: | 
					
						
							|  |  |  |         print(f'.ninja-goals.{t} += $(.{prefix}-{name}.deps)') | 
					
						
							| 
									
										
										
										
											2021-10-06 11:27:47 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | def emit_suite(name, suite, prefix): | 
					
						
							|  |  |  |     emit_suite_deps(name, suite, prefix) | 
					
						
							|  |  |  |     targets = f'{prefix}-{name} {prefix}-report-{name}.junit.xml {prefix} {prefix}-report.junit.xml' | 
					
						
							| 
									
										
										
										
											2021-02-11 06:15:12 -05:00
										 |  |  |     print(f'ifneq ($(filter {targets}, $(MAKECMDGOALS)),)') | 
					
						
							|  |  |  |     print(f'.{prefix}.mtest-suites += ' + ' '.join(suite.names(name))) | 
					
						
							|  |  |  |     print(f'endif') | 
					
						
							| 
									
										
										
										
											2020-09-02 07:19:43 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-04 10:06:06 -04:00
										 |  |  | targets = {t['id']: [os.path.relpath(f) for f in t['filename']] | 
					
						
							|  |  |  |            for t in introspect['targets']} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-02 07:19:43 -04:00
										 |  |  | testsuites = defaultdict(Suite) | 
					
						
							| 
									
										
										
										
											2020-09-02 07:25:19 -04:00
										 |  |  | for test in introspect['tests']: | 
					
						
							| 
									
										
										
										
											2020-09-04 10:06:06 -04:00
										 |  |  |     process_tests(test, targets, testsuites) | 
					
						
							| 
									
										
										
										
											2020-09-02 07:19:43 -04:00
										 |  |  | emit_prolog(testsuites, 'check') | 
					
						
							|  |  |  | for name, suite in testsuites.items(): | 
					
						
							|  |  |  |     emit_suite(name, suite, 'check') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-02 07:25:19 -04:00
										 |  |  | benchsuites = defaultdict(Suite) | 
					
						
							|  |  |  | for test in introspect['benchmarks']: | 
					
						
							| 
									
										
										
										
											2020-09-04 10:06:06 -04:00
										 |  |  |     process_tests(test, targets, benchsuites) | 
					
						
							| 
									
										
										
										
											2020-09-02 07:25:19 -04:00
										 |  |  | emit_prolog(benchsuites, 'bench') | 
					
						
							|  |  |  | for name, suite in benchsuites.items(): | 
					
						
							|  |  |  |     emit_suite(name, suite, 'bench') |