aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2019-01-29 00:42:52 +0100
committerEmilio Jesus Gallego Arias2019-01-29 01:06:42 +0100
commit67d0d038d1a2fba80a086c1c2096cfa3166ef362 (patch)
tree8cdc9a698fbb4807f218f0e7e40deb5ff9f0319e
parent0a75fb2209643cb35285f584f3ee313242c6d3e7 (diff)
[test-suite] Fix display of check.
After #8655
-rw-r--r--test-suite/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/test-suite/Makefile b/test-suite/Makefile
index 37091a49e5..d33ae57ae2 100644
--- a/test-suite/Makefile
+++ b/test-suite/Makefile
@@ -307,7 +307,7 @@ $(addsuffix .log,$(wildcard prerequisite/*.v)): %.v.log: %.v
echo " $<...correctly prepared" ; \
fi; \
} > "$@"
- @echo "CHK $(shell basename $< .v)"
+ @echo "CHECK $(shell basename $< .v)"
$(HIDE)$(coqchk) -norec TestSuite.$(shell basename $< .v) > $(shell dirname $<)/$(shell basename $< .v).chk.log 2>&1
ssr: $(wildcard ssr/*.v:%.v=%.v.log)
@@ -326,7 +326,7 @@ $(addsuffix .log,$(wildcard ssr/*.v success/*.v micromega/*.v modules/*.v)): %.v
$(FAIL); \
fi; \
} > "$@"
- @echo "CHK $(shell basename $< .v)"
+ @echo "CHECK $(shell basename $< .v)"
$(HIDE){ \
opts="$(if $(findstring modules/,$<),-R modules Mods -norec Mods.$(shell basename $< .v),-I $(shell dirname $<) -norec $(shell basename $< .v))"; \
$(coqchk) -silent $(call get_set_impredicativity,$<) $$opts 2>&1; R=$$?; \
@@ -353,7 +353,7 @@ $(addsuffix .log,$(wildcard stm/*.v)): %.v.log: %.v
$(FAIL); \
fi; \
} > "$@"
- @echo "CHK $(shell basename $< .v)"
+ @echo "CHECK $(shell basename $< .v)"
$(HIDE){ \
$(coqchk) -silent -I $(shell dirname $<) -norec $(shell basename $< .v) 2>&1; R=$$?; \
if [ $$R != 0 ]; then \
@@ -377,7 +377,7 @@ $(addsuffix .log,$(wildcard failure/*.v)): %.v.log: %.v $(PREREQUISITELOG)
$(FAIL); \
fi; \
} > "$@"
- @echo "CHK $(shell basename $< .v)"
+ @echo "CHECK $(shell basename $< .v)"
$(HIDE){ \
$(coqchk) -silent -I $(shell dirname $<) -norec $(shell basename $< .v) 2>&1; R=$$?; \
if [ $$R != 0 ]; then \