diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-01-25 17:03:29 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-01-25 17:03:29 (GMT) |
commit | a319837a4fd95c29e6754593264c1429deaa506b (patch) | |
tree | 930ac1ddbc4381c1ce5ef33f00c96f9073ff3e9a /test/dsets.c | |
parent | 51bd03c8a5e3c1ffbf46edb9feee1f8776e4e462 (diff) | |
download | hdf5-a319837a4fd95c29e6754593264c1429deaa506b.zip hdf5-a319837a4fd95c29e6754593264c1429deaa506b.tar.gz hdf5-a319837a4fd95c29e6754593264c1429deaa506b.tar.bz2 |
[svn-r3326] Purpose:
Clean up warnings
Description:
The "FAILED" macro is defined by Windows and is causing warnings and
potential errors when compiled on that platform.
Solution:
Change our macro from FAILED to H5_FAILED.
Platforms tested:
FreeBSD 4.2 (hawkwind)
Diffstat (limited to 'test/dsets.c')
-rw-r--r-- | test/dsets.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/test/dsets.c b/test/dsets.c index 824e000..8653718 100644 --- a/test/dsets.c +++ b/test/dsets.c @@ -82,7 +82,7 @@ test_create(hid_t file) H5P_DEFAULT); } H5E_END_TRY; if (dataset >= 0) { - FAILED(); + H5_FAILED(); puts(" Library allowed overwrite of existing dataset."); goto error; } @@ -103,7 +103,7 @@ test_create(hid_t file) dataset = H5Dopen(file, "does_not_exist"); } H5E_END_TRY; if (dataset >= 0) { - FAILED(); + H5_FAILED(); puts(" Opened a non-existent dataset."); goto error; } @@ -125,7 +125,7 @@ test_create(hid_t file) create_parms); } H5E_END_TRY; if (dataset >= 0) { - FAILED(); + H5_FAILED(); puts(" Opened a dataset with incorrect chunking parameters."); goto error; } @@ -216,7 +216,7 @@ test_simple_io(hid_t file) for (i = 0; i < 100; i++) { for (j = 0; j < 200; j++) { if (points[i][j] != check[i][j]) { - FAILED(); + H5_FAILED(); printf(" Read different values than written.\n"); printf(" At index %d,%d\n", i, j); goto error; @@ -295,7 +295,7 @@ test_tconv(hid_t file) in[4*i+1]!=out[4*i+2] || in[4*i+2]!=out[4*i+1] || in[4*i+3]!=out[4*i+0]) { - FAILED(); + H5_FAILED(); puts(" Read with byte order conversion failed."); goto error; } @@ -413,7 +413,7 @@ test_compression(hid_t file) for (i=0; i<size[0]; i++) { for (j=0; j<size[1]; j++) { if (0!=check[i][j]) { - FAILED(); + H5_FAILED(); printf(" Read a non-zero value.\n"); printf(" At index %lu,%lu\n", (unsigned long)i, (unsigned long)j); @@ -464,7 +464,7 @@ test_compression(hid_t file) for (i=0; i<size[0]; i++) { for (j=0; j<size[1]; j++) { if (points[i][j] != check[i][j]) { - FAILED(); + H5_FAILED(); printf(" Read different values than written.\n"); printf(" At index %lu,%lu\n", (unsigned long)i, (unsigned long)j); @@ -504,7 +504,7 @@ test_compression(hid_t file) for (i=0; i<size[0]; i++) { for (j=0; j<size[1]; j++) { if (points[i][j] != check[i][j]) { - FAILED(); + H5_FAILED(); printf(" Read different values than written.\n"); printf(" At index %lu,%lu\n", (unsigned long)i, (unsigned long)j); @@ -536,7 +536,7 @@ test_compression(hid_t file) for (i=0; i<size[0]; i++) { for (j=0; j<size[1]; j++) { if (points[i][j] != check[i][j]) { - FAILED(); + H5_FAILED(); printf(" Read different values than written.\n"); printf(" At index %lu,%lu\n", (unsigned long)i, (unsigned long)j); @@ -577,7 +577,7 @@ test_compression(hid_t file) for (j=0; j<hs_size[1]; j++) { if (points[hs_offset[0]+i][hs_offset[1]+j] != check[hs_offset[0]+i][hs_offset[1]+j]) { - FAILED(); + H5_FAILED(); printf(" Read different values than written.\n"); printf(" At index %lu,%lu\n", (unsigned long)(hs_offset[0]+i), @@ -620,7 +620,7 @@ test_compression(hid_t file) for (i=0; i<size[0]; i++) { for (j=0; j<size[1]; j++) { if (points[i][j] != check[i][j]) { - FAILED(); + H5_FAILED(); printf(" Read different values than written.\n"); printf(" At index %lu,%lu\n", (unsigned long)i, (unsigned long)j); @@ -693,7 +693,7 @@ test_multiopen (hid_t file) if ((space = H5Dget_space (dset2))<0) goto error; if (H5Sget_simple_extent_dims (space, tmp_size, NULL)<0) goto error; if (cur_size[0]!=tmp_size[0]) { - FAILED(); + H5_FAILED(); printf (" Got %d instead of %d!\n", (int)tmp_size[0], (int)cur_size[0]); goto error; |