diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2019-03-20 19:03:48 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2019-03-20 19:03:48 (GMT) |
commit | 7add52ff4f2443357648d53d52add274d1b18b5f (patch) | |
tree | 7bfeb541f99b73c95288477e5fd1b84caef8bb01 /c++/test/tobject.cpp | |
parent | 55d1931dc6af168adc3804586a0da22287b29187 (diff) | |
download | hdf5-7add52ff4f2443357648d53d52add274d1b18b5f.zip hdf5-7add52ff4f2443357648d53d52add274d1b18b5f.tar.gz hdf5-7add52ff4f2443357648d53d52add274d1b18b5f.tar.bz2 |
Fixed HDFFV-10210 and HDFFV-10587
Description:
- Added parameter validation (HDFFV-10210)
- Added detection of division by zero (HDFFV-10587 - CVE-2018-17438)
- Fixed typos in various tests
Platforms tested:
Linux/64 (jelly)
Linux/64 (platypus)
Darwin (osx1011test)
Diffstat (limited to 'c++/test/tobject.cpp')
-rw-r--r-- | c++/test/tobject.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/test/tobject.cpp b/c++/test/tobject.cpp index 537716f..23c1453 100644 --- a/c++/test/tobject.cpp +++ b/c++/test/tobject.cpp @@ -609,10 +609,10 @@ static void test_getobjectinfo_same_file() catch (Exception& E) { cerr << " in Exception " << E.getCFuncName() << "detail: " << E.getCDetailMsg() << endl; - issue_fail_msg("test_file_name()", __LINE__, __FILE__, E.getCDetailMsg()); + issue_fail_msg("test_getobjectinfo_same_file()", __LINE__, __FILE__, E.getCDetailMsg()); } -} // test_h5o_getinfo_same_file +} // test_getobjectinfo_same_file /*------------------------------------------------------------------------- * Function: test_object |