aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2014-10-15 19:10:07 +0200
committerPierre-Marie Pédrot2014-10-15 19:10:07 +0200
commitdb8e0d7ecaf233ae73705d2f57635a38f8825dad (patch)
treec6ddabb11378e5d78553e6f4728e036437e064c0
parent978ae7d9323558099efb0c4e4e39549221378d5d (diff)
Adding a timeout to bug #2447.
-rw-r--r--test-suite/bugs/opened/2447.v3
1 files changed, 2 insertions, 1 deletions
diff --git a/test-suite/bugs/opened/2447.v b/test-suite/bugs/opened/2447.v
index eeb38386b2..503a85d41c 100644
--- a/test-suite/bugs/opened/2447.v
+++ b/test-suite/bugs/opened/2447.v
@@ -2,4 +2,5 @@ Record t := {x : bool; y : bool; z : bool}.
Goal forall x1 x2 y z,
{| x := x1; y := y; z := z |} = {| x := x2; y := y; z := z |} -> x1 = x2.
-intros; congruence.
+Proof.
+Timeout 5 (intros; congruence).