summaryrefslogtreecommitdiffstats
path: root/test/dsets.c
diff options
context:
space:
mode:
authorluzpaz <luzpaz@users.noreply.github.com>2022-08-10 20:57:26 (GMT)
committerGitHub <noreply@github.com>2022-08-10 20:57:26 (GMT)
commit174505ca3c27daa30d8affd63bda07ad24f126c5 (patch)
tree8d5a1aa014056b6c05fd7ea5b5906ca2f65b5afd /test/dsets.c
parente794dc5ec44ea73c92a6d3937e86307e87d277ae (diff)
downloadhdf5-174505ca3c27daa30d8affd63bda07ad24f126c5.zip
hdf5-174505ca3c27daa30d8affd63bda07ad24f126c5.tar.gz
hdf5-174505ca3c27daa30d8affd63bda07ad24f126c5.tar.bz2
Fix typos found in the rest of the hdf5 code-base (#1985)
* Fix typos found in the rest of the hdf5 code-base * Typo in tool.cmake * Revert "Typo in tool.cmake" This reverts commit 06b8403d99757c7d20f1eed530cf317c3d84de4b. * Fix clang-format styling
Diffstat (limited to 'test/dsets.c')
-rw-r--r--test/dsets.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/dsets.c b/test/dsets.c
index 6397d3d..d26e2c7 100644
--- a/test/dsets.c
+++ b/test/dsets.c
@@ -1827,7 +1827,7 @@ filter_corrupt(unsigned int flags, size_t cd_nelmts, const unsigned int *cd_valu
TEST_ERROR;
HDmemset(data, (int)value, (size_t)length);
- if (flags & H5Z_FLAG_REVERSE) { /* Varify data is actually corrupted during read */
+ if (flags & H5Z_FLAG_REVERSE) { /* Verify data is actually corrupted during read */
dst += offset;
if (HDmemcmp(data, dst, (size_t)length) != 0)
TEST_ERROR;
@@ -7722,7 +7722,7 @@ test_missing_chunk(hid_t file)
if (H5Dread(did2, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, rdata2_bytes) < 0)
TEST_ERROR;
- /* Validata values read for the 1-D dataset */
+ /* Validate values read for the 1-D dataset */
for (u = 0; u < MISSING_CHUNK_DIM; u++) {
if ((u % 10) >= 5) {
if (rdata[u] != 911) {
@@ -7739,7 +7739,7 @@ test_missing_chunk(hid_t file)
} /* end else */
} /* end for */
- /* Validata values read for the 2-D dataset */
+ /* Validate values read for the 2-D dataset */
for (i = 0; i < MISSING_CHUNK_DIM; i++) {
for (j = 0; j < MISSING_CHUNK_DIM; j++) {