aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/Makefile
diff options
context:
space:
mode:
authorGravatar Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net>2018-06-18 14:26:23 +0200
committerGravatar Gaëtan Gilbert <gaetan.gilbert@skyskimmer.net>2018-06-22 15:15:02 +0200
commitde90280aa0895d5b302a3137a3fa1a171a9f127c (patch)
tree7519e8b4c202c08367c25fa14b67a0a1997cda31 /test-suite/Makefile
parent0daf6af5949dbc7304e9fc3adf063519d5a60c4b (diff)
Fix #7704: get_toplevel_path needs normalised argv.(0)
When launched through PATH argv.(0) is just the command name. eg "coqtop -compile foo.v" -> argv.(0) = "coqtop" Using executable_name also follows symlinks but this isn't tested to avoid messing with windows. Running Coq through a symlink is not as important as PATH anyways.
Diffstat (limited to 'test-suite/Makefile')
-rw-r--r--test-suite/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/test-suite/Makefile b/test-suite/Makefile
index 32e245e36..33b402327 100644
--- a/test-suite/Makefile
+++ b/test-suite/Makefile
@@ -519,6 +519,7 @@ $(patsubst %.sh,%.log,$(wildcard misc/*.sh)): %.log: %.sh $(PREREQUISITELOG)
@echo "TEST $<"
$(HIDE){ \
echo $(call log_intro,$<); \
+ export BIN="$(BIN)"; \
export coqc="$(coqc)"; \
export coqtop="$(coqtop)"; \
export coqdep="$(coqdep)"; \