Fixed regression Makefile

This commit is contained in:
Dmitry Boulytchev 2020-02-20 13:25:11 +03:00
parent 5933f4c3b1
commit 6cf2b15d40
3 changed files with 4 additions and 3 deletions

View file

@ -8,8 +8,8 @@ check: $(TESTS)
$(TESTS): %: %.lama
@echo $@
cat $@.input | $(LAMAC) -i $< > $@.log && diff $@.log orig/$@.log
cat $@.input | $(LAMAC) -s $< > $@.log && diff $@.log orig/$@.log
cat $@.input | LAMA=../runtime $(LAMAC) -i $< > $@.log && diff $@.log orig/$@.log
cat $@.input | LAMA=../runtime $(LAMAC) -s $< > $@.log && diff $@.log orig/$@.log
LAMA=../runtime $(LAMAC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log
clean: