OSDN Git Service

テストコード修正
authoryamada <yamada@1ed66053-1c2d-0410-8867-f7571e6e31d3>
Sun, 13 Dec 2009 07:22:34 +0000 (07:22 +0000)
committeryamada <yamada@1ed66053-1c2d-0410-8867-f7571e6e31d3>
Sun, 13 Dec 2009 07:22:34 +0000 (07:22 +0000)
git-svn-id: http://10.144.169.20/repos/um/branches/l7vsd-3.x-ramiel@9082 1ed66053-1c2d-0410-8867-f7571e6e31d3

l7vsd/unit_tests/session_test/tcp_session/tcp_session_test.cpp

index 23f5d2f..aeb9b1e 100644 (file)
@@ -13010,23 +13010,23 @@ void up_thread_client_accept_test(){
     // after 1 second
     sleep(1);
     std::cout << "1 sec" << std::endl;
-    BOOST_CHECK( test_obj.get_ssl_handshake_time_out_flag() == false );
+    BOOST_CHECK( test_obj.handle_ssl_handshake_timer_call_chk == false );
     // after 2 second
     sleep(1);
     std::cout << "2 sec" << std::endl;
-    BOOST_CHECK( test_obj.get_ssl_handshake_time_out_flag() == false );
+    BOOST_CHECK( test_obj.handle_ssl_handshake_timer_call_chk == false );
     // after 3 second
     sleep(1);
     std::cout << "3 sec" << std::endl;
-    BOOST_CHECK( test_obj.get_ssl_handshake_time_out_flag() == false );
+    BOOST_CHECK( test_obj.handle_ssl_handshake_timer_call_chk == false );
     // after 4 second
     sleep(1);
     std::cout << "4 sec" << std::endl;
-    BOOST_CHECK( test_obj.get_ssl_handshake_time_out_flag() == false );
+    BOOST_CHECK( test_obj.handle_ssl_handshake_timer_call_chk == false );
     // after 5 second
     sleep(1);
     std::cout << "5 sec" << std::endl;
-    BOOST_CHECK( test_obj.get_ssl_handshake_time_out_flag() == false );
+    BOOST_CHECK( test_obj.handle_ssl_handshake_timer_call_chk == false );
 
 
     timer_thread.join();