summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Warren <Richard.Warren@hdfgroup.org>2019-12-06 15:58:59 (GMT)
committerRichard Warren <Richard.Warren@hdfgroup.org>2019-12-06 15:58:59 (GMT)
commit7dfeab4863a25a79999fa1e5ede12a1aa685ca97 (patch)
treecb7ad757e9dcf67e687335a9cb6726d6e2a873f2
parentc62aaaff46415c04a898ce90dcd841bdca97ca58 (diff)
downloadhdf5-7dfeab4863a25a79999fa1e5ede12a1aa685ca97.zip
hdf5-7dfeab4863a25a79999fa1e5ede12a1aa685ca97.tar.gz
hdf5-7dfeab4863a25a79999fa1e5ede12a1aa685ca97.tar.bz2
Fixed PR issues pointed out by Allen
-rw-r--r--testpar/Makefile.am2
-rw-r--r--tools/src/h5diff/ph5diff_main.c1
2 files changed, 1 insertions, 2 deletions
diff --git a/testpar/Makefile.am b/testpar/Makefile.am
index 0e7898e..0cdba24 100644
--- a/testpar/Makefile.am
+++ b/testpar/Makefile.am
@@ -30,7 +30,7 @@ check_SCRIPTS = $(TEST_SCRIPT_PARA)
# Test programs. These are our main targets.
#
-TEST_PROG_PARA=t_mpi t_bigio testphdf5 t_cache t_cache_image t_pread t_pshutdown t_prestart t_init_term t_shapesame t_filters_parallel
+TEST_PROG_PARA=t_mpi t_bigio testphdf5 t_cache t_cache_image t_pread t_pshutdown t_prestart t_init_term t_shapesame t_filters_parallel t_2Gio
# t_pflush1 and t_pflush2 are used by testpflush.sh
check_PROGRAMS = $(TEST_PROG_PARA) t_pflush1 t_pflush2
diff --git a/tools/src/h5diff/ph5diff_main.c b/tools/src/h5diff/ph5diff_main.c
index f61322c..380ab3b 100644
--- a/tools/src/h5diff/ph5diff_main.c
+++ b/tools/src/h5diff/ph5diff_main.c
@@ -176,7 +176,6 @@ ph5diff_worker(int nID)
/* Recv parameters for diff from manager task */
MPI_Recv(&args, sizeof(args), MPI_BYTE, 0, MPI_TAG_ARGS, MPI_COMM_WORLD, &Status);
- HDprintf("[%d] Recv complete: diff'ing object - %s\n", nID, args.name1);
/* Do the diff */
diffs.nfound = diff(file1_id, args.name1, file2_id, args.name2, &(args.opts), &(args.argdata));