view maketests.py @ 2446:18555c44a5e7

Update comparetests to python3 and change it to use a "clean" build of a core from blatem for comparison
author Michael Pavone <pavone@retrodev.com>
date Thu, 15 Feb 2024 21:47:14 -0800
parents ab577e2ed66a
children
line wrap: on
line source

#!/usr/bin/env python3
from glob import glob
import subprocess
from sys import exit

sources = set()
for path in glob('generated_tests/*/*.s68'):
	sources.add(path)

bins = set()
for path in glob('generated_tests/*/*.bin'):
	bins.add(path)

for path in sources:
	binpath = path.replace('.s68', '.bin')
	if not binpath in bins:
		print(binpath)
		res = subprocess.call(['vasmm68k_mot', '-Fbin', '-m68000', '-no-opt', '-spaces', '-o', binpath, path])
		if res != 0:
			print('vasmm68k_mot returned non-zero status code', res)
			exit(1)