From 1c8e50028e15facaa4d31992bfc6cab9d10832e6 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Sun, 4 Aug 2019 00:32:38 +1200 Subject: Remove `POST-` from emul test names This is unnecessary, leaving it out leaves plenty enough information. --- test/emul/run-emul.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/emul/run-emul.sh b/test/emul/run-emul.sh index 3b5ae69..496f13d 100755 --- a/test/emul/run-emul.sh +++ b/test/emul/run-emul.sh @@ -45,7 +45,7 @@ for asmfile in *.asm ; do grep '^;\s\+POST\s\+' "$asmfile" ) | while read line ; do reg=$(awk -F= '{print $1}' <<< "$line" | awk '{print $(NF)}') val=$(awk -F= '{print $2}' <<< "$line"| awk '{print $1}') - subtest="${asmfile}:POST-${reg}" + subtest="${asmfile}:${reg}" # Scrape output of emulator for register value actual=$(grep "$reg" "$outfile" | awk '{print $2}') if [[ "$actual" -eq "$val" ]]; then -- cgit v1.1