summaryrefslogtreecommitdiffstats
path: root/test/chunk_info.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/chunk_info.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/chunk_info.c')
-rw-r--r--test/chunk_info.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/chunk_info.c b/test/chunk_info.c
index 3fdc77d..877a182 100644
--- a/test/chunk_info.c
+++ b/test/chunk_info.c
@@ -922,7 +922,7 @@ test_chunk_info_single_chunk(const char *filename, hid_t fapl)
if (ret != FAIL)
TEST_ERROR;
- /* Release resourse */
+ /* Release resource */
if (H5Dclose(dset) < 0)
TEST_ERROR;
if (H5Sclose(dspace) < 0)
@@ -1039,7 +1039,7 @@ test_chunk_info_implicit(char *filename, hid_t fapl)
FAIL_PUTS_ERROR("Verification of H5Dget_chunk_info_by_coord failed\n");
}
- /* Release resourse */
+ /* Release resource */
if (H5Dclose(dset) < 0)
TEST_ERROR;
if (H5Sclose(dspace) < 0)
@@ -1184,7 +1184,7 @@ test_chunk_info_fixed_array(const char *filename, hid_t fapl)
/* Read and verify values of selected chunks */
if (verify_selected_chunks(dset, H5P_DEFAULT, start, end) < 0)
- /* Release resourse */
+ /* Release resource */
if (H5Dclose(dset) < 0)
TEST_ERROR;
if (H5Sclose(dspace) < 0)
@@ -1333,7 +1333,7 @@ test_chunk_info_extensible_array(const char *filename, hid_t fapl)
/* Read and verify values of selected chunks */
if (verify_selected_chunks(dset, H5P_DEFAULT, start, end) < 0)
- /* Release resourse */
+ /* Release resource */
if (H5Dclose(dset) < 0)
TEST_ERROR;
if (H5Sclose(dspace) < 0)
@@ -1482,7 +1482,7 @@ test_chunk_info_version2_btrees(const char *filename, hid_t fapl)
/* Read and verify values of selected chunks */
if (verify_selected_chunks(dset, H5P_DEFAULT, start, end) < 0)
- /* Release resourse */
+ /* Release resource */
if (H5Dclose(dset) < 0)
TEST_ERROR;
if (H5Sclose(dspace) < 0)
@@ -1746,7 +1746,7 @@ test_basic_query(hid_t fapl)
if (cptr != &(chunk_infos[1]))
FAIL_PUTS_ERROR("Verification of halted iterator failed");
- /* Release resourse */
+ /* Release resource */
if (H5Dclose(dset) < 0)
TEST_ERROR;
if (H5Sclose(dspace) < 0)
@@ -1875,7 +1875,7 @@ test_failed_attempts(const char *filename, hid_t fapl)
if (ret != FAIL)
FAIL_PUTS_ERROR(" Attempt a chunk query function on a contiguous dataset.");
- /* Release resourse */
+ /* Release resource */
if (H5Dclose(dset) < 0)
TEST_ERROR;
if (H5Sclose(dspace) < 0)
@@ -2151,7 +2151,7 @@ test_flt_msk_with_skip_compress(hid_t fapl)
if (verify_get_chunk_info_by_coord(dset, offset, CHK_SIZE, flt_msk) == FAIL)
FAIL_PUTS_ERROR("Verification of H5Dget_chunk_info_by_coord failed\n");
- /* Release resourse */
+ /* Release resource */
if (H5Dclose(dset) < 0)
TEST_ERROR;
if (H5Sclose(mem_space) < 0)