aboutsummaryrefslogtreecommitdiff
path: root/ci/test1.v
diff options
context:
space:
mode:
authorErik Martin-Dorel2020-04-29 01:19:52 +0200
committerErik Martin-Dorel2020-04-29 01:59:50 +0200
commit94c6da5c8c9db07f406cd28ca9d6532d09b9df15 (patch)
treefb2fec91d14f0321f6f771fa493fc1fe3d49ebfc /ci/test1.v
parentb3fb85c3da48e61bea57aacdd2d0a9468cea9d72 (diff)
fix: coq-tests.el and related files
* The "./test1.v" relative filename triggered an issue => use (coq-test-full-path "test1.v") * The (coq-test-cmd "...") was not optimal for coq-test-print => use (progn (coq-test-goto-before "(*some-unique-identifier*)") (proof-goto-point) (proof-shell-wait)) * The (string-trim "...") function was not defined in batch mode => use (require 'subr-x) & Remove forgotten "(setq temp" snippet.
Diffstat (limited to 'ci/test1.v')
-rw-r--r--ci/test1.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/test1.v b/ci/test1.v
index 0c4b77fe..0a9ef963 100644
--- a/ci/test1.v
+++ b/ci/test1.v
@@ -1,10 +1,10 @@
-Definition trois := 3.
+Definition trois := 3. (*test-definition*)
Print trois.
Eval compute in 10 * trois * trois.
-Lemma easy_proof : (forall A : Prop, A -> A).
+Lemma easy_proof : forall A : Prop, A -> A.
Proof using .
intros A.
intros proof_of_A.