mirror of
https://github.com/samsonjs/compiler.git
synced 2026-04-27 14:57:45 +00:00
add huge test to default suite
This commit is contained in:
parent
90bcdbf659
commit
0db6becd33
1 changed files with 6 additions and 3 deletions
|
|
@ -11,7 +11,7 @@ ifeq ($(BINFORMAT), bin)
|
||||||
@echo " Your platform, " $(PLATFORM) ", is unsupported."
|
@echo " Your platform, " $(PLATFORM) ", is unsupported."
|
||||||
endif
|
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
|
@true
|
||||||
|
|
||||||
lt: test.rb test_lt.code
|
lt: test.rb test_lt.code
|
||||||
|
|
@ -56,13 +56,16 @@ break: test.rb test_break.code
|
||||||
print: test.rb test_print.code
|
print: test.rb test_print.code
|
||||||
@./test.rb print $(BINFORMAT)
|
@./test.rb print $(BINFORMAT)
|
||||||
|
|
||||||
big_test: test.rb test_big.code
|
big: test.rb test_big.code
|
||||||
@./test.rb big $(BINFORMAT)
|
@./test.rb big $(BINFORMAT)
|
||||||
|
|
||||||
|
huge: test.rb test_huge.code
|
||||||
|
@./test.rb huge $(BINFORMAT)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@rm -f test*.asm test*.o
|
@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_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_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
|
.PHONY: clean
|
||||||
Loading…
Reference in a new issue