Tweaked make test to run both unoptimized and optimized tests.

This commit is contained in:
Bruce Hill 2018-06-24 18:23:53 -07:00
parent 45a7c9a8da
commit 34cf3d83d3

View File

@ -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 $<