diff options
| -rw-r--r-- | netfs/unittests/testCore.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/netfs/unittests/testCore.cpp b/netfs/unittests/testCore.cpp index a8431ff..acd3f91 100644 --- a/netfs/unittests/testCore.cpp +++ b/netfs/unittests/testCore.cpp @@ -34,9 +34,15 @@ class Core {  	public:  		Core(const std::string & daemonConfig = "defaultDaemon.xml", const std::string & fuseConfig = "defaultFuse.xml") :  			daemonHost(testEndpoint, { +					"--Ice.ThreadPool.Client.Size=4", +					"--Ice.ThreadPool.Client.SizeMax=20", +					"--Ice.ThreadPool.Server.Size=5", +					"--Ice.ThreadPool.Server.SizeMax=20",  					"--NetFSD.ConfigPath=" + (rootDir / daemonConfig).string()  				}),  			fuseHost(testEndpoint, { +					"--Ice.ThreadPool.Client.Size=6", +					"--Ice.ThreadPool.Client.SizeMax=20",  					(rootDir / fuseConfig).string() + ":testvol",  					(binDir / "test").string()  				}),  | 
