From 2acece9c60d90bd1e9135e383fb5d3cbd46472a1 Mon Sep 17 00:00:00 2001 From: marcobaye Date: Tue, 28 Jul 2020 12:57:26 +0000 Subject: [PATCH] added test script git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@284 4df02467-bbd4-4a76-a152-e7ce94205b78 --- testing/cpus/check-all-cpus.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 testing/cpus/check-all-cpus.sh diff --git a/testing/cpus/check-all-cpus.sh b/testing/cpus/check-all-cpus.sh new file mode 100755 index 0000000..05f3353 --- /dev/null +++ b/testing/cpus/check-all-cpus.sh @@ -0,0 +1,8 @@ +#!/bin/bash +for CPU in 6502 65c02 r65c02 w65c02 nmos6502 c64dtv2 65ce02 4502 m65 65816 ; do + acme -v0 test-"$CPU".a || exit + cmp out-"$CPU".o expected-"$CPU".o || exit +done +echo +echo "All CPU tests passed successfully." +echo