aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite/bugs/opened/HoTT_coq_052.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2014-04-08 01:42:49 -0400
committerGravatar Matthieu Sozeau <mattam@mattam.org>2014-05-10 15:39:55 +0200
commit8cc25de5e1c07fe93bba85c3792e5c4153066e5c (patch)
tree52c53213b1b3dfa13155feb752aaa5d257f84e66 /test-suite/bugs/opened/HoTT_coq_052.v
parentc7284415e4bdd3315c84c7d15d140d3fee000bc5 (diff)
Add appropriate Fail(s) to opened bugs
The contract is that a file in bugs/opened should not raise errors if the bug is still open. Some of them fail for different reasons than they used to; I'm not sure what to do about these.
Diffstat (limited to 'test-suite/bugs/opened/HoTT_coq_052.v')
-rw-r--r--test-suite/bugs/opened/HoTT_coq_052.v9
1 files changed, 6 insertions, 3 deletions
diff --git a/test-suite/bugs/opened/HoTT_coq_052.v b/test-suite/bugs/opened/HoTT_coq_052.v
index dac575b54..886dbad9e 100644
--- a/test-suite/bugs/opened/HoTT_coq_052.v
+++ b/test-suite/bugs/opened/HoTT_coq_052.v
@@ -7,13 +7,16 @@ Goal Prop.
Abort.
Goal Prop = Set.
- Fail match goal with |- ?x = ?x => idtac end.
+ (* This should fail *)
+ Fail Fail match goal with |- ?x = ?x => idtac end.
Abort.
Goal Type = Prop.
- Fail match goal with |- ?x = ?x => idtac end.
+ (* This should fail *)
+ Fail Fail match goal with |- ?x = ?x => idtac end.
Abort.
Goal Type = Set.
- Fail match goal with |- ?x = ?x => idtac end.
+ (* This should fail *)
+ Fail Fail match goal with |- ?x = ?x => idtac end.
Abort.