Modify waiting information log 86/315886/3
authorYonggoo Kang <ygace.kang@samsung.com>
Fri, 9 Aug 2024 01:33:35 +0000 (10:33 +0900)
committerYonggoo Kang <ygace.kang@samsung.com>
Fri, 9 Aug 2024 01:38:26 +0000 (10:38 +0900)
Change-Id: I07caef28e3efa1134d15753edd37e3fc7c6b3220

tests/manual/man_tests.cpp

index be6a61cc6c36ed6c0009f9fbb0112f84f076c8e8..3587bfdb7c2493e9735b91aa6d98583aaa7bdd65 100644 (file)
@@ -358,7 +358,7 @@ bool Test(struct TestContents &testContents)
         return false;
 
     int timeCount = 120;
-    std::cout << "[MC] Waiting 60 seconds for response.." << std::endl;
+    std::cout << "[MC] Waiting maximum 1 minute for response.." << std::endl;
     while (testContents.statusMC == 0 && timeCount != 0) // exit after called Response CB
     {
         sleep(1);
@@ -443,7 +443,7 @@ bool Test(struct TestContents &testContents)
     std::cout << "[GA] Request: " << get_error_message(ret) << std::endl;
 
     timeCount = 120;
-    std::cout << "[GA] Waiting 60 seconds for response.." << std::endl;
+    std::cout << "[GA] Waiting maximum 1 minute for response.." << std::endl;
     while (testContents.statusGA == 0 && timeCount != 0) // exit after called Response CB
     {
         sleep(1);
@@ -456,8 +456,8 @@ bool Test(struct TestContents &testContents)
 
     CloseQR();
 
-    timeCount = 300;
-    std::cout << "Waiting 300 seconds for UpdateLinkedData CBs.." << std::endl;
+    timeCount = 180;
+    std::cout << "Waiting maximum 3 minutes for UpdateLinkedData CBs.." << std::endl;
     while (((testContents.statusMC == 1 && testContents.updateMCRet == WAUTHN_ERROR_NONE)
             || (testContents.statusMC == 2 && testContents.updateMCRet != WAUTHN_ERROR_NONE)
             || (testContents.statusGA == 1 && testContents.updateGARet == WAUTHN_ERROR_NONE)