shithub: MicroHs

Download patch

ref: 019086e932dd150fbdb1826b8d55b813191e6e93
parent: 52c588b17814c7d0f5dde27402750294fa4417ca
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Mon Nov 27 08:27:36 EST 2023

More testing

--- a/Makefile
+++ b/Makefile
@@ -105,7 +105,7 @@
 	@echo "*** Set environment variable MHSDIR to $(PREFIX)/lib/mhs"
 	@echo "***"
 
-everytest:	runtest bootcombtest exampletest
+everytest:	runtest bootcombtest exampletest cachetest
 
 bootcombtest:	bin/gmhs bin/mhseval
 	bin/gmhs -ilib -isrc -ogmhs.comb  MicroHs.Main
@@ -116,3 +116,9 @@
 	bin/mhs -r Example
 	bin/mhs Example && bin/mhseval
 	bin/mhs Example -oEx && ./Ex && rm Ex
+
+cachetest:	bin/mhs bin/mhseval Example.hs
+	rm -f .mhscache
+	bin/mhs -c AllOfLib
+	bin/mhs -c Example && bin/mhseval
+	rm -f .mhscache
--