summaryrefslogtreecommitdiffstats
path: root/test/h5test.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2017-02-08 19:49:25 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2017-02-08 19:49:25 (GMT)
commit46ede7f0399d4adf2696193ea083bffdfcc69f7e (patch)
tree208fb2be0621fada8970fc3826409fd314b7e863 /test/h5test.c
parent9fbb672eb4d926539010d4216886cfc640af6fa9 (diff)
downloadhdf5-46ede7f0399d4adf2696193ea083bffdfcc69f7e.zip
hdf5-46ede7f0399d4adf2696193ea083bffdfcc69f7e.tar.gz
hdf5-46ede7f0399d4adf2696193ea083bffdfcc69f7e.tar.bz2
Deleted an extraneous remove() call from a test function
that might be causing the flushrefresh test to fail.
Diffstat (limited to 'test/h5test.c')
-rw-r--r--test/h5test.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/h5test.c b/test/h5test.c
index 9759fa8..a36d580 100644
--- a/test/h5test.c
+++ b/test/h5test.c
@@ -1744,9 +1744,7 @@ error:
void
h5_send_message(const char *send, const char *arg1, const char *arg2)
{
- FILE *signalfile;
-
- HDremove(TMP_SIGNAL_FILE);
+ FILE *signalfile = NULL;
/* Create signal file (which will send signal to some other process) */
signalfile = HDfopen(TMP_SIGNAL_FILE, "w+");