From: Bart Polot Date: Thu, 16 May 2013 14:54:36 +0000 (+0000) Subject: - config files for test, ignore X-Git-Tag: initial-import-from-subversion-38251~9009 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=57cefe03acd24c41827df00b567f72bd5900c4fe;p=oweals%2Fgnunet.git - config files for test, ignore --- diff --git a/src/mesh/test_mesh2.conf b/src/mesh/test_mesh2.conf new file mode 100644 index 000000000..2f0f525da --- /dev/null +++ b/src/mesh/test_mesh2.conf @@ -0,0 +1,83 @@ +[fs] +AUTOSTART = NO + +[resolver] +AUTOSTART = NO + +[mesh] +BINARY = gnunet-service-mesh-new +AUTOSTART = YES +ACCEPT_FROM = 127.0.0.1; +HOSTNAME = localhost +PORT = 10511 +# PREFIX = valgrind --leak-check=full +# PREFIX = xterm -geometry 100x85 -T peer1 -e gdb --args +REFRESH_PATH_TIME = 3 s +APP_ANNOUNCE_TIME = 5 s +ID_ANNOUNCE_TIME = 5 s +CONNECT_TIMEOUT = 30 s +DEFAULT_TTL = 16 +DHT_REPLICATION_LEVEL = 3 +MAX_TUNNELS = 10 +MAX_MSGS_QUEUE = 20 + +[vpn] +AUTOSTART = NO +PORT = 10012 + +[dht] +AUTOSTART = YES +ACCEPT_FROM6 = ::1; +ACCEPT_FROM = 127.0.0.1; +HOSTNAME = localhost +PORT = 12100 + +[block] +plugins = dht test + +[dhtcache] +QUOTA = 1 MB +DATABASE = sqlite + +[transport] +PLUGINS = tcp +ACCEPT_FROM6 = ::1; +ACCEPT_FROM = 127.0.0.1; +NEIGHBOUR_LIMIT = 50 +PORT = 12365 + +[ats] +WAN_QUOTA_OUT = 3932160 +WAN_QUOTA_IN = 3932160 + +[core] +PORT = 12092 + +[arm] +DEFAULTSERVICES = core +PORT = 12366 + +[transport-tcp] +TIMEOUT = 300 s +PORT = 12368 + +[TESTING] +WEAKRANDOM = YES + +[gnunetd] +HOSTKEY = $SERVICEHOME/.hostkey + +[PATHS] +SERVICEHOME = /tmp/test-mesh/ + +[dns] +AUTOSTART = NO + +[nse] +AUTOSTART = NO + +[namestore] +AUTOSTART = NO + +[consensus] +AUTOSTART = NO diff --git a/src/mesh/test_mesh2_local.c b/src/mesh/test_mesh2_local.c index 49ea791e2..1e06d12ab 100644 --- a/src/mesh/test_mesh2_local.c +++ b/src/mesh/test_mesh2_local.c @@ -251,7 +251,7 @@ int main (int argc, char *argv[]) { if (0 != GNUNET_TESTING_peer_run ("test-mesh-local-1", - "test_mesh.conf", + "test_mesh2.conf", &run, NULL)) return 1; return (result == GNUNET_OK) ? 0 : 1;