Skip to content
Snippets Groups Projects
Commit 892dfbb6 authored by Ralf Jung's avatar Ralf Jung
Browse files

make options-import error stand out a bit more

parent 51aec602
No related branches found
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ NORMALIZER:=test-normalizer.sed ...@@ -14,7 +14,7 @@ NORMALIZER:=test-normalizer.sed
test: $(TESTFILES:.v=.vo) test: $(TESTFILES:.v=.vo)
# Make sure everything imports the options. # Make sure everything imports the options.
$(HIDE)for FILE in $(VFILES); do \ $(HIDE)for FILE in $(VFILES); do \
if ! fgrep -q 'From iris Require Import options.' "$$FILE"; then echo "ERROR: $$FILE does not import 'options'."; exit 1; fi \ if ! fgrep -q 'From iris Require Import options.' "$$FILE"; then echo "ERROR: $$FILE does not import 'options'."; echo; exit 1; fi \
done done
.PHONY: test .PHONY: test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment