COMP: fix test, in some cases stdout from bar was not captured correctly,

probably because the process was killed before the fflush() worked because
the busy loop blocked the processor (failing midworld test)

Alex
This commit is contained in:
Alexander Neundorf
2007-06-13 16:26:50 -04:00
parent 698ca6e956
commit 92270d5bf8
2 changed files with 32 additions and 13 deletions

View File

@@ -3,7 +3,7 @@
#include <regen.h>
#include <noregen.h>
int main()
int main(int argc, char** argv)
{
/* Make sure the noregen header was not regenerated. */
if(strcmp("foo", noregen_string) != 0)
@@ -15,6 +15,11 @@ int main()
/* Print out the string that should have been regenerated. */
printf("%s\n", regen_string);
fflush(stdout);
for(;;);
// if any argument is used, wait forever
if (argc>1)
{
// wait that we get killed...
for(;;);
}
return 0;
}