Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tej Chajed
iris
Commits
a0e020ca
Commit
a0e020ca
authored
4 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
ensure that all Instance/Argument/Hint are qualified
parent
79a11082
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile.coq.local
+3
-2
3 additions, 2 deletions
Makefile.coq.local
with
3 additions
and
2 deletions
Makefile.coq.local
+
3
−
2
View file @
a0e020ca
...
...
@@ -12,9 +12,10 @@ TESTFILES:=$(shell find tests -name "*.v")
NORMALIZER
:=
test-normalizer.sed
test
:
$(TESTFILES:.v=.vo)
# Make sure everything imports the options.
# Make sure everything imports the options
, and all Instance/Argument/Hint are qualified
.
$(HIDE)for
FILE
in
$(VFILES);
do
\
if ! fgrep -q 'From iris.prelude Require Import options.' "$$FILE"; then echo "ERROR
:
$$FILE does not import 'options'."; echo; exit 1; fi
\
if ! fgrep -q 'From iris.prelude Require Import options.' "$$FILE"; then echo "ERROR
:
$$FILE does not import 'options'."; echo; exit 1; fi ;
\
if egrep '^
\s
*(Instance|Arguments|Hint (Extern|Constructors|Resolve|Immediate|Mode|Opaque|Transparent|Unfold))
\s
' "$$FILE"; then echo "ERROR: $$FILE contains unqualified 'Instance'/'Arguments'/'Hint'."; echo; exit 1; fi
\
done
.PHONY
:
test
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment