From 34cf3d83d30a07be030255bdefc42dbfff1ece1e Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 24 Jun 2018 18:23:53 -0700 Subject: [PATCH] Tweaked `make test` to run both unoptimized and optimized tests. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 35688a8..cb00119 100644 --- a/Makefile +++ b/Makefile @@ -23,8 +23,10 @@ all: build optimize .PHONY: test test: build optimize - @echo "\033[1mRunning tests...\033[0m" + @echo "\033[1;4mRunning unoptimized tests...\033[0m" @$(LUA_BIN) nomsu.lua tests + @echo "\n\033[1;4mRunning optimized tests...\033[0m" + @$(LUA_BIN) nomsu.lua -O tests %.lua: %.moon @moonc $<