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 $(TESTS): %: %.lama
@echo $@ @echo $@
cat $@.input | $(LAMAC) -i $< > $@.log && diff $@.log orig/$@.log cat $@.input | LAMA=../runtime $(LAMAC) -i $< > $@.log && diff $@.log orig/$@.log
cat $@.input | $(LAMAC) -s $< > $@.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 LAMA=../runtime $(LAMAC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log
clean: clean:

View file

@ -1085,6 +1085,7 @@ module Interface =
with Sys_error _ -> None with Sys_error _ -> None
let find import paths = let find import paths =
(*Printf.printf "Paths to search import in: %s" (show(list) (show(string)) paths); *)
let rec inner = function let rec inner = function
| [] -> None | [] -> None
| p::paths -> | p::paths ->

View file

@ -1 +1 @@
let version = "Version 1.00, 7fd85f27, Wed Feb 19 21:21:18 2020 +0300" let version = "Version 1.00, 5933f4c3, Thu Feb 20 12:43:52 2020 +0300"