ref: c733f47863a47eeb9d2ef9b591501e7d0b01a9ae
parent: c4afc52929251f46552f59b7740d563d1dc5c65e
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Fri Nov 17 12:30:00 EST 2023
Fix errtest
--- a/tests/errtester.sh
+++ b/tests/errtester.sh
@@ -5,7 +5,7 @@
err=$tmp/err
terr=$tmp/terr
cerr=$tmp/cerr
-comp=../bin/mhs
+comp=../bin/gmhs
read -r line
while [ "$line" != "END" ]; do
echo > $out
@@ -34,6 +34,6 @@
#echo "==="
#echo "next: $line"
sed -e '/^ *$/d' $terr > $err
- $comp -i../lib -i../tmp E 2>&1 | sed -e '/CallStack/,$d' -e '/^XX/d' > $cerr
+ $comp -i../lib -i../tmp E 2>&1 | sed -e 's/^gmhs/mhs/' -e '/CallStack/,$d' -e '/^XX/d' > $cerr
diff $err $cerr || exit 1
done
--
⑨