Merge "Increase sleep time in sigwait64_SIGRTMIN test"

This commit is contained in:
Evgeny Eltsin 2019-12-16 17:35:29 +00:00 committed by Gerrit Code Review
commit 403b99d44a
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ TEST(signal, sigwait64_SIGRTMIN) {
pid_t pid = getpid();
std::thread thread([&pid]() {
usleep(5000);
sleep(1);
kill(pid, SIGRTMIN);
});