logcat: timed tests fail under load

Change-Id: Ic1cdf0509617720eef7a3ad0b17a3b6f88c9d87e
This commit is contained in:
Mark Salyzyn 2014-03-18 17:10:47 -07:00
parent e148b7ebd0
commit 5fef7b6e31
1 changed files with 0 additions and 3 deletions

View File

@ -343,7 +343,6 @@ TEST(logcat, blocking) {
signal(SIGALRM, caught_blocking);
alarm(2);
while (fgets(buffer, sizeof(buffer), fp)) {
alarm(2);
if (!strncmp(buffer, "DONE", 4)) {
break;
@ -413,7 +412,6 @@ TEST(logcat, blocking_tail) {
signal(SIGALRM, caught_blocking_tail);
alarm(2);
while (fgets(buffer, sizeof(buffer), fp)) {
alarm(2);
if (!strncmp(buffer, "DONE", 4)) {
break;
@ -484,7 +482,6 @@ TEST(logcat, blocking_clear) {
signal(SIGALRM, caught_blocking_clear);
alarm(2);
while (fgets(buffer, sizeof(buffer), fp)) {
alarm(2);
if (!strncmp(buffer, "clearLog: ", 10)) {
fprintf(stderr, "WARNING: Test lacks permission to run :-(\n");