Much normalization with develop (#701)
* Brings CMake updates from develop * Brings reduction in pedantic casts from develop * Purges UFAIL from the library (#637) * Committing clang-format changes * Purges UFAIL from the library * H5HL_insert change requested in PR Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Removes gratuitous (double)x.yF casts (#632) * Committing clang-format changes * Removes gratuitous (double)x.yF casts * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Committing clang-format changes * Cleans up a const warning left over from previous constification (#633) * Committing clang-format changes * Adds consts to a few global variables * Cleans up a const warning left over from previous constification Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Formatted source * Bring over some VOL registration changes * VOL cleanup * H5VL_request_status_t substitutions * H5F.c cleanup * Minor API tweaks from develop * Moves H5G package init/teardown to H5Gint.c * H5G cleanup * H5M cleanup * H5SM cleanup * H5T cleanup * H5R cleanup * H5Lpublic.h cleanup * H5L cleanup * H5O cleanup * H5A, H5CS, and H5AC cleanup * Moved H5A init/teardown code to H5Aint.c * Moves H5D I/O functions to H5D.c * H5D cleanup * Misc minor cleanup * H5P close cleanup * H5Tpublic.h cleanup * Fixes err_compat test * H5PLpublic.h cleanup * Updates H5Ppublic.h * H5Fpublic.h updates * H5A.c cleanup * Brings over H5Aexists and related changes * Brings CMake shell testing changes from develop * Close callback changes * H5R and H5Tcommit normalization * err_compat test works now * H5O tweaks * Updates VOL registration code * Brings over H5VL_create_object * H5Tconv.c reformatting * H5T.c tweaks * Brings datatype and reference updates from develop * Brings VOL plugin loading changes from develop * Brings event sets from develop * Brings async functions over * Tools changes * Brings over many tools changes from develop * Brings VOL flags from develop * Fixes h5dump double/float tests * Updates h5repack tests * Brings h5diff test changes from develop * Last h5dump changes * Brings test changes from develop * Committing clang-format changes * Tidied h5_testing() * Brings chunk iteration code + misc from develop * Updates vds test * Enables external link parallel test * Brings updated property lists from develop * H5G changes from develop * H5MF cleanup * Brings vfd_swmr test back into CMake * Updates threadsafe test * Updates plist test * Brings recent changes from develop Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
@@ -31,7 +31,7 @@ size_t H5TOOLS_MALLOCSIZE = (128 * 1024 * 1024);
|
||||
*
|
||||
* Purpose: generate files for h5diff testing
|
||||
*
|
||||
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
|
||||
* Programmer: Pedro Vicente
|
||||
*
|
||||
* Date: November 12, 2003
|
||||
*
|
||||
@@ -465,15 +465,15 @@ test_basic(const char *fname1, const char *fname2, const char *fname3)
|
||||
float data15[6];
|
||||
float data16[6];
|
||||
|
||||
data15[0] = (float)HDsqrt(-1.0F);
|
||||
data15[0] = (float)HDsqrt(-1.0);
|
||||
data15[1] = 1.0F;
|
||||
data15[2] = (float)HDsqrt(-1.0F);
|
||||
data15[2] = (float)HDsqrt(-1.0);
|
||||
data15[3] = 1.0F;
|
||||
data15[4] = 1.0F;
|
||||
data15[5] = 1.0F;
|
||||
|
||||
data16[0] = (float)HDsqrt(-1.0F);
|
||||
data16[1] = (float)HDsqrt(-1.0F);
|
||||
data16[0] = (float)HDsqrt(-1.0);
|
||||
data16[1] = (float)HDsqrt(-1.0);
|
||||
data16[2] = 1.0F;
|
||||
data16[3] = 1.0F;
|
||||
data16[4] = 1.0F;
|
||||
@@ -492,19 +492,19 @@ test_basic(const char *fname1, const char *fname2, const char *fname3)
|
||||
double data17[6];
|
||||
double data18[6];
|
||||
|
||||
data17[0] = HDsqrt(-1.0F);
|
||||
data17[1] = 1.0F;
|
||||
data17[2] = HDsqrt(-1.0F);
|
||||
data17[3] = 1.0F;
|
||||
data17[4] = 1.0F;
|
||||
data17[5] = 1.0F;
|
||||
data17[0] = HDsqrt(-1.0);
|
||||
data17[1] = 1.0;
|
||||
data17[2] = HDsqrt(-1.0);
|
||||
data17[3] = 1.0;
|
||||
data17[4] = 1.0;
|
||||
data17[5] = 1.0;
|
||||
|
||||
data18[0] = HDsqrt(-1.0F);
|
||||
data18[1] = HDsqrt(-10000.0F);
|
||||
data18[2] = 1.0F;
|
||||
data18[3] = 1.0F;
|
||||
data18[4] = 1.0F;
|
||||
data18[5] = 1.0F;
|
||||
data18[0] = HDsqrt(-1.0);
|
||||
data18[1] = HDsqrt(-10000.0);
|
||||
data18[2] = 1.0;
|
||||
data18[3] = 1.0;
|
||||
data18[4] = 1.0;
|
||||
data18[5] = 1.0;
|
||||
|
||||
write_dset(gid1, 1, dims1, "fp17", H5T_NATIVE_DOUBLE, data17);
|
||||
write_dset(gid1, 1, dims1, "fp18", H5T_NATIVE_DOUBLE, data18);
|
||||
@@ -519,11 +519,11 @@ test_basic(const char *fname1, const char *fname2, const char *fname3)
|
||||
float data19[6];
|
||||
double data20[6];
|
||||
|
||||
data19[0] = data19[1] = data19[2] = (float)HDlog(0.0F);
|
||||
data19[3] = data19[4] = data19[5] = (float)-HDlog(0.0F);
|
||||
data19[0] = data19[1] = data19[2] = (float)HDlog(0.0);
|
||||
data19[3] = data19[4] = data19[5] = (float)-HDlog(0.0);
|
||||
|
||||
data20[0] = data20[1] = data20[2] = HDlog(0.0F);
|
||||
data20[3] = data20[4] = data20[5] = -HDlog(0.0F);
|
||||
data20[0] = data20[1] = data20[2] = HDlog(0.0);
|
||||
data20[3] = data20[4] = data20[5] = -HDlog(0.0);
|
||||
|
||||
write_dset(gid1, 1, dims1, "fp19", H5T_NATIVE_FLOAT, data19);
|
||||
write_dset(gid1, 1, dims1, "fp19_COPY", H5T_NATIVE_FLOAT, data19);
|
||||
@@ -547,13 +547,13 @@ test_basic(const char *fname1, const char *fname2, const char *fname3)
|
||||
size_t type_size;
|
||||
hid_t tid;
|
||||
|
||||
buf1[0].d = HDsqrt(-1.0F);
|
||||
buf1[0].f = (float)HDsqrt(-1.0F);
|
||||
buf2[0].d = HDsqrt(-1.0F);
|
||||
buf2[0].f = (float)HDsqrt(-1.0F);
|
||||
buf1[0].d = HDsqrt(-1.0);
|
||||
buf1[0].f = (float)HDsqrt(-1.0);
|
||||
buf2[0].d = HDsqrt(-1.0);
|
||||
buf2[0].f = (float)HDsqrt(-1.0);
|
||||
|
||||
buf1[1].d = HDsqrt(-1.0F);
|
||||
buf1[1].f = (float)HDsqrt(-1.0F);
|
||||
buf1[1].d = HDsqrt(-1.0);
|
||||
buf1[1].f = (float)HDsqrt(-1.0);
|
||||
buf2[1].d = 0.0F;
|
||||
buf2[1].f = 0.0F;
|
||||
|
||||
@@ -5009,8 +5009,6 @@ error:
|
||||
H5Tclose(tid2);
|
||||
}
|
||||
H5E_END_TRY;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
static hid_t
|
||||
@@ -8017,7 +8015,6 @@ test_double_epsilon(const char *fname1, const char *fname2)
|
||||
{
|
||||
hid_t fid1 = H5I_INVALID_HID, fid2 = H5I_INVALID_HID;
|
||||
hsize_t dims1[2] = {4, 7};
|
||||
hsize_t dims2[2] = {4, 7};
|
||||
double wdata[4][7];
|
||||
int i, j;
|
||||
|
||||
@@ -8059,8 +8056,6 @@ error:
|
||||
H5Fclose(fid2);
|
||||
}
|
||||
H5E_END_TRY;
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user