Enable build targets to run tests at stage0

This allows quicker turnaround for testing the standard library, since you
don't have to wait for the stage1 compiler every time.
This commit is contained in:
Brian Anderson 2011-07-29 18:35:32 -07:00
parent 9a995b0d25
commit 4e6bb137fe
1 changed files with 2 additions and 1 deletions

View File

@ -204,8 +204,9 @@ test/bench.stage$(2).out.tmp: test/compiletest.stage$(2)$$(X) \
endef
# Instantiate the template for stage 1, 2, 3
# Instantiate the template for stage 0, 1, 2, 3
$(eval $(call TEST_STAGEN,0,0))
$(eval $(call TEST_STAGEN,0,1))
$(eval $(call TEST_STAGEN,1,2))
$(eval $(call TEST_STAGEN,2,3))