Skip to content
Snippets Groups Projects
Commit 56601992 authored by Libor Peltan's avatar Libor Peltan Committed by Daniel Salzman
Browse files

tests/many_nsec3: more lightweight under valgrind to prevent fail and long run

parent d3f74bd1
No related branches found
No related tags found
1 merge request!1670Fix notify rcu
Pipeline #126275 passed
......@@ -8,7 +8,12 @@ t = Test()
master = t.server("knot")
slave = t.server("knot")
zones = t.zone_rnd(1, records=12000, dnssec=False)
RECORDS = 12000
if master.valgrind:
RECORDS = 2000
zones = t.zone_rnd(1, records=RECORDS, dnssec=False)
t.link(zones, master, slave, ixfr=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment