diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2015-01-05 21:32:43 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2015-01-05 21:32:43 (GMT) |
commit | 671006a10da51ff3e174065fdf853af5a661788c (patch) | |
tree | c394baf46ab73272b4fdb45c416b594c7a76ffb3 /test | |
parent | 6b109315f560f388b07078a19be6bc96e2812886 (diff) | |
download | hdf5-671006a10da51ff3e174065fdf853af5a661788c.zip hdf5-671006a10da51ff3e174065fdf853af5a661788c.tar.gz hdf5-671006a10da51ff3e174065fdf853af5a661788c.tar.bz2 |
[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
Diffstat (limited to 'test')
-rw-r--r-- | test/testmeta.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/testmeta.c b/test/testmeta.c index a008cc7..e1d12e6 100644 --- a/test/testmeta.c +++ b/test/testmeta.c @@ -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 */ |