aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2019-11-29 14:56:01 +0100
committerEmilio Jesus Gallego Arias2019-11-29 14:56:01 +0100
commit09eea7a192744ad171c83621561c8edf12b31578 (patch)
treea422399984dfa4bf789b64d6a66a2cb07d7291aa
parent59656b1380a1feba954d1f32e02bb70cd548ca75 (diff)
parent59ca9ed0f53b0c0e67a44135fbbf5f9fff616aa4 (diff)
Merge PR #11204: Relax the pattern complexity test
Reviewed-by: ejgallego
-rw-r--r--test-suite/complexity/pattern.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/complexity/pattern.v b/test-suite/complexity/pattern.v
index fb5bf5a00b..2101535be7 100644
--- a/test-suite/complexity/pattern.v
+++ b/test-suite/complexity/pattern.v
@@ -1,5 +1,5 @@
(** Testing the performance of [pattern]. For not regressing on COQBUG(https://github.com/coq/coq/issues/11150) and COQBUG(https://github.com/coq/coq/issues/6502) *)
-(* Expected time < 0.75s *)
+(* Expected time < 1.65s *)
(* reference: 0.673s after adjustment *)
Definition Let_In {A P} (v : A) (f : forall x : A, P x) : P v
:= let x := v in f x.