aboutsummaryrefslogtreecommitdiff
path: root/test-suite/complexity
diff options
context:
space:
mode:
authorJason Gross2019-11-28 01:23:36 -0500
committerJason Gross2019-11-28 01:23:36 -0500
commit59ca9ed0f53b0c0e67a44135fbbf5f9fff616aa4 (patch)
tree40584212708745d2c516d775be5e22468bcda47c /test-suite/complexity
parentd2a995927ccb01dae73960780c7fa0fed0a37e6d (diff)
Relax the pattern complexity test
c.f. discussion at https://github.com/coq/coq/pull/11177#issuecomment-559139477
Diffstat (limited to 'test-suite/complexity')
-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.