Skip to content

Commit a72c56b

Browse files
committed
Use credible values for starting options in test
1 parent 7ed3501 commit a72c56b

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

test/integ/ws_start_stop.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,12 +307,13 @@ LT_BEGIN_AUTO_TEST(ws_start_stop_suite, tuning_options)
307307
.max_threads(10)
308308
.memory_limit(10000)
309309
.per_IP_connection_limit(10)
310-
.max_thread_stack_size(10)
310+
.max_thread_stack_size(4*1024*1024)
311311
.nonce_nc_size(10);
312+
;
312313

313314
ok_resource* ok = new ok_resource();
314315
ws.register_resource("base", ok);
315-
ws.start(false);
316+
LT_CHECK_NOTHROW(ws.start(false));
316317

317318
curl_global_init(CURL_GLOBAL_ALL);
318319
std::string s;
@@ -363,7 +364,7 @@ LT_BEGIN_AUTO_TEST(ws_start_stop_suite, ssl_with_protocol_priorities)
363364
.use_ssl()
364365
.https_mem_key("key.pem")
365366
.https_mem_cert("cert.pem")
366-
.https_priorities("TLS1.0-AES-SHA1");
367+
.https_priorities("NONE:+VERS-TLS1.0:+AES-128-CBC:+SHA1:+RSA:+COMP-NULL");
367368

368369
ok_resource* ok = new ok_resource();
369370
ws.register_resource("base", ok);

0 commit comments

Comments
 (0)