Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris-coq
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
Michael Sammler
iris-coq
Commits
52c96f45
Commit
52c96f45
authored
6 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
don't check output on testsuite at all when running against 8.9
parent
1244bcfb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+0
-1
0 additions, 1 deletion
.gitlab-ci.yml
Makefile.coq.local
+8
-4
8 additions, 4 deletions
Makefile.coq.local
with
8 additions
and
5 deletions
.gitlab-ci.yml
+
0
−
1
View file @
52c96f45
...
...
@@ -29,7 +29,6 @@ variables:
build-coq.dev
:
<<
:
*template
variables
:
MAKE_REF
:
"
1"
# don't check test output
OPAM_PINS
:
"
coq
version
dev"
VALIDATE
:
"
1"
...
...
This diff is collapsed.
Click to expand it.
Makefile.coq.local
+
8
−
4
View file @
52c96f45
...
...
@@ -8,6 +8,7 @@ test: $(TESTFILES:.v=.vo)
.PHONY
:
test
COQ_TEST
=
$(
COQTOP
)
$(
COQDEBUG
)
-batch
-test-mode
COQ_BROKEN
=
$(
shell
echo
"
$(
COQ_VERSION
)
"
| egrep
"^8
\.
9"
>
/dev/null
&&
echo
1
)
# Can't use pipes because that discards error codes and dash provides no way to control that.
# Also egrep errors if it doesn't match anything, we have to ignore that.
...
...
@@ -20,13 +21,16 @@ tests/.coqdeps.d: $(TESTFILES)
-include
tests/.coqdeps.d
$(TESTFILES
:
.v=.vo): %.vo: %.v $(if $(MAKE_REF)
,,
%.ref)
$(
SHOW
)$(
if
$(
MAKE_REF
)
,COQTEST
[
ref],COQTEST
)
$<
$(
SHOW
)$(
if
$(
COQ_BROKEN
)
,COQTEST
[
ignore],
$(
if
$(
MAKE_REF
)
,COQTEST
[
ref],COQTEST
)
)
$<
$(
HIDE
)
TEST
=
"
$$(
basename -s .v
$<
)
"
&&
\
TMPFILE
=
"
$$(
mktemp
)
"
&&
\
$(
TIMER
)
$(
COQ_TEST
)
$(
TIMING_ARG
)
$(
COQFLAGS
)
$(
COQLIBS
)
-load-vernac-source
$<
$(
TIMING_EXTRA
)
>
"
$$
TMPFILE"
&&
\
(
$(
REF_FILTER
)
<
"
$$
TMPFILE"
>
"
$$
TMPFILE.filtered"
||
true
)
&&
\
$(
if
$(
MAKE_REF
)
,
\
mv
"
$$
TMPFILE.filtered"
"tests/
$$
TEST.ref"
,
\
diff
-u
"tests/
$$
TEST.ref"
"
$$
TMPFILE.filtered"
)
&&
\
$(
if
$(
COQ_BROKEN
)
,
true
,
\
$(
if
$(
MAKE_REF
)
,
\
mv
"
$$
TMPFILE.filtered"
"tests/
$$
TEST.ref"
,
\
diff
-u
"tests/
$$
TEST.ref"
"
$$
TMPFILE.filtered"
\
)
\
)
&&
\
rm
-f
"
$$
TMPFILE"
"
$$
TMPFILE.filtered"
&&
\
touch
$@
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