SM (no closures yet); some ugly hacks yet to fix

This commit is contained in:
Dmitry Boulytchev 2019-10-05 00:16:50 +03:00
parent 36685d1592
commit 89e0d04f3d
4 changed files with 275 additions and 134 deletions

View file

@ -9,8 +9,8 @@ check: $(TESTS)
$(TESTS): %: %.expr
@echo $@
# @$(RC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log
cat $@.input | $(RC) -i $< > $@.log && diff $@.log orig/$@.log; true
# @cat $@.input | $(RC) -s $< > $@.log && diff $@.log orig/$@.log
cat $@.input | $(RC) -i $< > $@.log && diff $@.log orig/$@.log
@cat $@.input | $(RC) -s $< 2> /dev/null > $@.log && diff $@.log orig/$@.log; true
clean:
$(RM) test*.log *.s *~ $(TESTS)