Bug 543438 - TestBlockingProcess relies on stdin to "block". r=dtownsend

This commit is contained in:
Mike Hommey 2010-03-05 13:02:22 +01:00
parent 16730171a2
commit 8c175d347f

View File

@ -1,9 +1,8 @@
#include <stdio.h>
#include <unistd.h>
int main()
{
char text[20];
fgets(text, sizeof text, stdin);
while(1) sleep(10);
return 0;
}