[svn-r25953] Comment out printf statement as it caused system resource issues on Windows. Test now executes in 1/10 of time.

Tested: local linux and Windows
This commit is contained in:
Allen Byrne 2015-01-05 16:32:43 -05:00
parent 6b109315f5
commit 671006a10d

View File

@ -105,9 +105,11 @@ int main(void)
for(j=0; j<NDATAOBJECTS; j++)
{
printf("\rWriting Object #%d of %d", j+1, NDATAOBJECTS);
fflush(stdout);
/* Removed print statement as it would lock system resources on Windows */
/*
* printf("\rWriting Object #%d of %d", j+1, NDATAOBJECTS);
* fflush(stdout);
*/
floatval = (float)j;
/* Create group to hold data arrays for this object */