File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -153,7 +153,8 @@ auto generic()
153153 return [] (nonius::chronometer meter)
154154 {
155155 auto n = meter.param <N>();
156- if (n > get_limit<Vektor>{}) n = 1 ;
156+ if (n > get_limit<Vektor>{})
157+ nonius::skip ();
157158
158159 auto v = Vektor{};
159160 for (auto i = 0u ; i < n; ++i)
@@ -207,7 +208,8 @@ auto generic_random()
207208 return [] (nonius::parameters params)
208209 {
209210 auto n = params.get <N>();
210- if (n > get_limit<Vektor>{}) n = 1 ;
211+ if (n > get_limit<Vektor>{})
212+ nonius::skip ();
211213
212214 auto g = make_generator (n);
213215 auto v = Vektor{};
Original file line number Diff line number Diff line change @@ -92,7 +92,8 @@ auto generic()
9292 return [] (nonius::parameters params)
9393 {
9494 auto n = params.get <N>();
95- if (n > get_limit<Vektor>{}) n = 1 ;
95+ if (n > get_limit<Vektor>{})
96+ nonius::skip ();
9697
9798 return [=] {
9899 auto v = Vektor{};
You can’t perform that action at this time.
0 commit comments