Fixed an ugly bug in FCF support. Now for real?

This commit is contained in:
Dmitry Boulytchev 2019-12-29 02:12:50 +03:00
parent 39437712c7
commit 49250b0216
3 changed files with 57 additions and 71 deletions

View file

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