From 850a4987c7c4478497afd68b099d96aced65e6cb Mon Sep 17 00:00:00 2001 From: Laura Casswell Date: Thu, 5 Aug 2004 19:58:57 +0000 Subject: [PATCH] forgot to close files This commit was SVN r1911. --- test/class/ompi_bitmap.c | 3 +++ test/class/ompi_hash_table.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/test/class/ompi_bitmap.c b/test/class/ompi_bitmap.c index a07a81d285..9934598606 100644 --- a/test/class/ompi_bitmap.c +++ b/test/class/ompi_bitmap.c @@ -94,6 +94,9 @@ int main(int argc, char *argv[]) fprintf(error_out, "\n~~~~~~ Testing complete ~~~~~~ \n\n"); test_finalize(); +#ifndef STANDALONE + fclose(error_out); +#endif return 0; } diff --git a/test/class/ompi_hash_table.c b/test/class/ompi_hash_table.c index 02aca55352..9b6f0e411e 100644 --- a/test/class/ompi_hash_table.c +++ b/test/class/ompi_hash_table.c @@ -147,6 +147,9 @@ int main(int argc, char **argv) test_dynamic(); test_static(); +#ifndef STANDALONE + fclose( error_out ); +#endif return test_finalize(); }