Skip to content

Commit

Permalink
Tests: indefinitely wait for shm buffers to be unlinked
Browse files Browse the repository at this point in the history
Signed-off-by: Jérémie Galarneau <[email protected]>
  • Loading branch information
jgalar committed Sep 17, 2015
1 parent dec59c1 commit 751dc78
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions tests/regression/tools/crash/test_crash
Original file line number Diff line number Diff line change
Expand Up @@ -87,19 +87,11 @@ function stop_test_app()
function verify_path_dont_exists()
{
local path=$1
local timeout_try_limit=100
local timeout_try_count=0
local timeout_flag=0

while find $path -mindepth 1 -maxdepth 1 &>/dev/null ; do
if [[ $timeout_try_count -gt $timeout_try_limit ]]; then
timeout_flag=1
break
fi
timeout_try_count=$((timeout_try_count+1))
sleep 0.1
sleep 2
done
return $timeout_flag
return 0
}

function test_shm_path_per_pid()
Expand Down

0 comments on commit 751dc78

Please sign in to comment.