Remove sleep on unittest 63/308063/1
authorYonggoo Kang <ygace.kang@samsung.com>
Fri, 15 Mar 2024 12:09:40 +0000 (21:09 +0900)
committerYonggoo Kang <ygace.kang@samsung.com>
Fri, 15 Mar 2024 12:09:45 +0000 (21:09 +0900)
- The webauthn-server need to be stopped by manual or script before pull gcda files

Change-Id: I8c49b8233d638ecee18bc69b0134bc5c33286f81

tests/unittests.cpp

index 84965df73ca6155c2ef0e14f36472726b3638ce4..954fa9e6fd5d90d599ea1f487e608f062798a929 100644 (file)
@@ -48,10 +48,9 @@ int main(int argc, char *argv[])
         ret = true;
     }
 #ifdef GCOV_BUILD
-    LogDebug("Waiting 2 mins for terminating webauthn-server process to flush gcov");
-    std::cout << "Waiting 2 mins for terminating webauthn-server process to flush gcov"
+    LogDebug("The webauthn-server process need to be stopped to flush gcov");
+    std::cout << "The webauthn-server process need to be stopped to flush gcov"
               << std::endl;
-    sleep(120);
 #endif
     return ret;
 }