diff maketests.py @ 2444:ab577e2ed66a

Update some 68K test harness scripts to Python 3
author Michael Pavone <pavone@retrodev.com>
date Tue, 13 Feb 2024 21:18:31 -0800
parents f7ff02eeec2f
children
line wrap: on
line diff
--- a/maketests.py	Mon Feb 12 07:42:32 2024 -0800
+++ b/maketests.py	Tue Feb 13 21:18:31 2024 -0800
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 from glob import glob
 import subprocess
 from sys import exit
@@ -14,9 +14,9 @@
 for path in sources:
 	binpath = path.replace('.s68', '.bin')
 	if not binpath in bins:
-		print binpath
+		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
+			print('vasmm68k_mot returned non-zero status code', res)
 			exit(1)