diff --git a/regression/Makefile b/regression/Makefile index 44ef70f9f..8acc95159 100644 --- a/regression/Makefile +++ b/regression/Makefile @@ -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: diff --git a/src/Language.ml b/src/Language.ml index 29ecda5b9..77547faac 100644 --- a/src/Language.ml +++ b/src/Language.ml @@ -1085,6 +1085,7 @@ module Interface = with Sys_error _ -> None let find import paths = + (*Printf.printf "Paths to search import in: %s" (show(list) (show(string)) paths); *) let rec inner = function | [] -> None | p::paths -> diff --git a/src/version.ml b/src/version.ml index a86b61425..ade792e10 100644 --- a/src/version.ml +++ b/src/version.ml @@ -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"