summaryrefslogtreecommitdiffstats
path: root/tools/test/perform/iopipe.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2021-06-23 03:31:32 (GMT)
committerGitHub <noreply@github.com>2021-06-23 03:31:32 (GMT)
commit3d4481c2920b7b983a8d791a266cd2bc9c96e846 (patch)
tree04b1d2b8eb1d3c61a4e07a9a149ffc8391ef8895 /tools/test/perform/iopipe.c
parent82c8013a2db4d9a105b5079542526c0bb6c001bf (diff)
downloadhdf5-3d4481c2920b7b983a8d791a266cd2bc9c96e846.zip
hdf5-3d4481c2920b7b983a8d791a266cd2bc9c96e846.tar.gz
hdf5-3d4481c2920b7b983a8d791a266cd2bc9c96e846.tar.bz2
Removes checks for system(), which is C89/90 (#782)
Diffstat (limited to 'tools/test/perform/iopipe.c')
-rw-r--r--tools/test/perform/iopipe.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/test/perform/iopipe.c b/tools/test/perform/iopipe.c
index d0db06a..2aa9e25 100644
--- a/tools/test/perform/iopipe.c
+++ b/tools/test/perform/iopipe.c
@@ -95,7 +95,6 @@ print_stats(const char *prefix,
static void
synchronize(void)
{
-#ifdef H5_HAVE_SYSTEM
#if defined(H5_HAVE_WIN32_API) && !defined(__CYGWIN__)
_flushall();
#else
@@ -107,7 +106,6 @@ synchronize(void)
status = HDsystem("df >/dev/null");
HDassert(status >= 0);
#endif
-#endif
}
/*-------------------------------------------------------------------------