From 11e30bbb89d76e47c1132d1c5719136586bbfe70 Mon Sep 17 00:00:00 2001 From: lganzzzo Date: Thu, 19 Sep 2019 03:55:41 +0300 Subject: [PATCH] uncomment tests --- test/oatpp/AllTestsMain.cpp | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/test/oatpp/AllTestsMain.cpp b/test/oatpp/AllTestsMain.cpp index ac80e633..d569bcef 100644 --- a/test/oatpp/AllTestsMain.cpp +++ b/test/oatpp/AllTestsMain.cpp @@ -53,10 +53,6 @@ void runTests() { oatpp::base::Environment::printCompilationConfig(); - OATPP_LOGI("aaa", "size_of(Coroutine)=%d", sizeof(oatpp::async::AbstractCoroutine)); - OATPP_LOGI("aaa", "size_of(Action)=%d", sizeof(oatpp::async::Action)); - -/* OATPP_RUN_TEST(oatpp::test::base::RegRuleTest); OATPP_RUN_TEST(oatpp::test::base::CommandLineArgumentsTest); @@ -88,17 +84,16 @@ void runTests() { OATPP_RUN_TEST(oatpp::test::web::server::api::ApiControllerTest); OATPP_RUN_TEST(oatpp::test::web::server::handler::AuthorizationHandlerTest); -*/ -// { -// -// oatpp::test::web::PipelineTest test_virtual(0, 3000); -// test_virtual.run(); -// -// oatpp::test::web::PipelineTest test_port(8000, 3000); -// test_port.run(); -// -// } + { + + oatpp::test::web::PipelineTest test_virtual(0, 3000); + test_virtual.run(); + + oatpp::test::web::PipelineTest test_port(8000, 3000); + test_port.run(); + + } { @@ -110,7 +105,6 @@ void runTests() { } -/* { oatpp::test::web::FullTest test_virtual(0, 1000); @@ -140,7 +134,7 @@ void runTests() { test_port.run(1); } -*/ + } }