diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2024-02-08 15:53:33 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2024-02-14 22:08:37 (GMT) |
commit | 7e47f893140f0700ca6a0f77cb5c0a42f5bad21d (patch) | |
tree | ad1781f9743cc5297587c70448c128a3684aa0a1 | |
parent | fed6e095e517d1c1b0a82ec7f6b5a4dc04f523e8 (diff) | |
download | hdf5-7e47f893140f0700ca6a0f77cb5c0a42f5bad21d.zip hdf5-7e47f893140f0700ca6a0f77cb5c0a42f5bad21d.tar.gz hdf5-7e47f893140f0700ca6a0f77cb5c0a42f5bad21d.tar.bz2 |
Fix h5watch test failures to ignore system warnings on ppc64le. (#3997)
-rw-r--r-- | hl/tools/h5watch/CMakeTests.cmake | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hl/tools/h5watch/CMakeTests.cmake b/hl/tools/h5watch/CMakeTests.cmake index aa4c41a..ce0e10e 100644 --- a/hl/tools/h5watch/CMakeTests.cmake +++ b/hl/tools/h5watch/CMakeTests.cmake @@ -105,8 +105,9 @@ add_custom_target(H5WATCH_files ALL COMMENT "Copying files needed by H5WATCH tes -D "TEST_OUTPUT=${resultfile}.out" -D "TEST_EXPECT=${resultcode}" -D "TEST_REFERENCE=${resultfile}.mty" - -D "TEST_ERRREF=${resultfile}.err" - -P "${HDF_RESOURCES_DIR}/runTest.cmake" + -D "TEST_ERRREF=h5watch error" + -D "TEST_SKIP_COMPARE=true" + -P "${HDF_RESOURCES_DIR}/grepTest.cmake" ) set_tests_properties (H5WATCH_ARGS-h5watch-${resultfile} PROPERTIES DEPENDS ${last_test} |