From: Marek VavruĊĦa Date: Thu, 30 Jul 2015 17:55:33 +0000 (+0200) Subject: tests/integration: fixed missing cache in config X-Git-Tag: v1.0.0-beta1~58^2~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27576ed0621dbef3fcfc2bd8060b03dd949905f0;p=thirdparty%2Fknot-resolver.git tests/integration: fixed missing cache in config --- diff --git a/tests/test_integration.py b/tests/test_integration.py index bc9537cb2..62ededf94 100755 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -192,6 +192,7 @@ def play_object(path): childaddr = testserver.get_local_addr_str(socket.AF_INET,CHILD_IFACE) fd = os.open( TMPDIR + "/config", os.O_RDWR|os.O_CREAT ) os.write(fd, "net.listen('{}',53)\n".format(childaddr) ) + os.write(fd, "cache.size = 10*MB\n") os.write(fd, "modules = {'hints'}\n") os.write(fd, "hints.root({['k.root-servers.net'] = '%s'})\n" % selfaddr) os.close(fd)