add huge test to default suite

This commit is contained in:
Sami Samhuri 2010-01-20 23:22:04 -08:00
parent 90bcdbf659
commit 0db6becd33

View file

@ -11,7 +11,7 @@ ifeq ($(BINFORMAT), bin)
@echo " Your platform, " $(PLATFORM) ", is unsupported."
endif
all: lt gt ge le eq neq if while until repeat for do break print big_test
all: lt gt ge le eq neq if while until repeat for do break print big huge
@true
lt: test.rb test_lt.code
@ -56,13 +56,16 @@ break: test.rb test_break.code
print: test.rb test_print.code
@./test.rb print $(BINFORMAT)
big_test: test.rb test_big.code
big: test.rb test_big.code
@./test.rb big $(BINFORMAT)
huge: test.rb test_huge.code
@./test.rb huge $(BINFORMAT)
clean:
@rm -f test*.asm test*.o
@rm -f test_big test_lt test_gt test_ge test_le test_eq test_neq
@rm -f test_while test_if test_until test_repeat test_do
@rm -f test_for test_break test_print
@rm -f test_for test_break test_print test_huge
.PHONY: clean