2003-02-17 23:54:15 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2003-02-17 23:54:15 +08:00
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
2017-04-18 03:32:16 +08:00
|
|
|
* the COPYING file, which can be found at the root of the source code *
|
2021-02-17 22:52:04 +08:00
|
|
|
* distribution tree, or in https://www.hdfgroup.org/licenses. *
|
2017-04-18 03:32:16 +08:00
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
* help@hdfgroup.org. *
|
2003-02-17 23:54:15 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
2023-06-29 21:33:49 +08:00
|
|
|
/*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Purpose: Tests various aspects of indexed raw data storage.
|
1997-10-21 07:14:35 +08:00
|
|
|
*/
|
2003-02-17 23:54:15 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define H5F_FRIEND /*suppress error about including H5Fpkg */
|
2000-10-10 15:44:33 +08:00
|
|
|
|
2001-04-04 02:09:16 +08:00
|
|
|
#include "h5test.h"
|
2018-02-15 00:08:09 +08:00
|
|
|
|
2001-04-04 02:09:16 +08:00
|
|
|
#include "H5Dprivate.h"
|
|
|
|
#include "H5Iprivate.h"
|
|
|
|
#include "H5Pprivate.h"
|
|
|
|
#include "H5Fpkg.h"
|
|
|
|
#include "H5Gprivate.h"
|
|
|
|
#include "H5Oprivate.h"
|
2014-02-14 06:12:46 +08:00
|
|
|
#include "H5VMprivate.h"
|
1997-10-21 07:14:35 +08:00
|
|
|
|
2023-06-19 13:13:38 +08:00
|
|
|
static const char *FILENAME[] = {"istore", NULL};
|
1998-11-25 22:58:22 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define TEST_SMALL 0x0001
|
|
|
|
#define TEST_MEDIUM 0x0002
|
|
|
|
#define TEST_LARGE 0x0004
|
1997-10-23 06:08:14 +08:00
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
/* The datatype of the dataset operated on by this test */
|
2020-09-30 22:27:10 +08:00
|
|
|
#define TEST_DATATYPE H5T_NATIVE_UCHAR
|
2003-05-08 05:52:24 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
#define TEST_CHUNK_SIZE 50
|
2003-05-08 05:52:24 +08:00
|
|
|
#define TEST_SPARSE_SIZE 1000000
|
|
|
|
|
|
|
|
hsize_t chunk_dims[H5O_LAYOUT_NDIMS];
|
2004-12-29 22:26:20 +08:00
|
|
|
hsize_t zero[H5O_LAYOUT_NDIMS];
|
1998-01-21 03:10:08 +08:00
|
|
|
|
2012-03-21 05:42:38 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
2018-02-15 00:08:09 +08:00
|
|
|
* Function: is_sparse
|
2012-03-21 05:42:38 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Purpose: Determines if the file system of the current working
|
|
|
|
* directory supports holes.
|
2012-03-21 05:42:38 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Return: Success: Non-zero if holes are supported; zero
|
|
|
|
* otherwise.
|
2012-03-21 05:42:38 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Failure: zero
|
2012-03-21 05:42:38 +08:00
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
is_sparse(void)
|
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
int fd;
|
|
|
|
h5_stat_t sb;
|
|
|
|
|
|
|
|
if ((fd = HDopen("x.h5", O_RDWR | O_TRUNC | O_CREAT, H5_POSIX_CREATE_MODE_RW)) < 0)
|
|
|
|
return 0;
|
2024-03-10 01:06:10 +08:00
|
|
|
if (HDlseek(fd, (1024 * 1024), SEEK_SET) != 1024 * 1024)
|
2020-09-30 22:27:10 +08:00
|
|
|
return 0;
|
|
|
|
if (5 != HDwrite(fd, "hello", (size_t)5))
|
|
|
|
return 0;
|
|
|
|
if (HDclose(fd) < 0)
|
|
|
|
return 0;
|
2024-03-21 20:31:30 +08:00
|
|
|
memset(&sb, 0, sizeof(h5_stat_t));
|
2020-09-30 22:27:10 +08:00
|
|
|
if (HDstat("x.h5", &sb) < 0)
|
|
|
|
return 0;
|
|
|
|
if (HDremove("x.h5") < 0)
|
|
|
|
return 0;
|
2012-03-21 05:42:38 +08:00
|
|
|
#ifdef H5_HAVE_STAT_ST_BLOCKS
|
2020-09-30 22:27:10 +08:00
|
|
|
return ((unsigned long)sb.st_blocks * 512 < (unsigned long)sb.st_size);
|
2012-03-21 05:42:38 +08:00
|
|
|
#else
|
|
|
|
return (0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1997-10-21 07:14:35 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
2018-02-15 00:08:09 +08:00
|
|
|
* Function: print_array
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Purpose: Prints the values in an array
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Return: void
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
static void
|
1998-11-19 02:40:09 +08:00
|
|
|
print_array(uint8_t *array, size_t nx, size_t ny, size_t nz)
|
1997-10-21 07:14:35 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
size_t i, j, k;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
|
|
for (i = 0; i < nx; i++) {
|
2020-09-30 22:27:10 +08:00
|
|
|
if (nz > 1) {
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, "i=%lu:\n", (unsigned long)i);
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
|
|
|
else {
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, "%03lu:", (unsigned long)i);
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
2018-02-15 00:08:09 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
for (j = 0; j < ny; j++) {
|
|
|
|
if (nz > 1)
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, "%03lu:", (unsigned long)j);
|
2020-09-30 22:27:10 +08:00
|
|
|
for (k = 0; k < nz; k++) {
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, " %3d", *array++);
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
|
|
|
if (nz > 1)
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, "\n");
|
2018-02-15 00:08:09 +08:00
|
|
|
}
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, "\n");
|
1998-01-17 06:23:43 +08:00
|
|
|
}
|
1997-10-21 07:14:35 +08:00
|
|
|
}
|
1998-11-25 22:58:22 +08:00
|
|
|
|
1997-10-21 07:14:35 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
2018-02-15 00:08:09 +08:00
|
|
|
* Function: new_object
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Purpose: Creates a new object that refers to a indexed storage of raw
|
|
|
|
* data. No raw data is stored.
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Return: Success: ID of dataset
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Failure: -1
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
2003-05-08 05:52:24 +08:00
|
|
|
static hid_t
|
|
|
|
new_object(hid_t f, const char *name, int ndims, hsize_t dims[], hsize_t cdims[])
|
1997-10-21 07:14:35 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
hid_t dataset; /* Dataset ID */
|
|
|
|
hid_t space; /* Dataspace ID */
|
|
|
|
hid_t dcpl; /* Dataset creation property list ID */
|
1998-01-17 06:23:43 +08:00
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
/* Create the dataset creation property list */
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((dcpl = H5Pcreate(H5P_DATASET_CREATE)) < 0)
|
|
|
|
TEST_ERROR;
|
1998-11-25 22:58:22 +08:00
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
/* Set the chunk dimensions */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Pset_chunk(dcpl, ndims, cdims) < 0)
|
|
|
|
TEST_ERROR;
|
1998-11-25 22:58:22 +08:00
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
/* Create the dataspace */
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((space = H5Screate_simple(ndims, dims, NULL)) < 0)
|
|
|
|
TEST_ERROR;
|
1998-11-25 22:58:22 +08:00
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
/* Create the dataset */
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((dataset = H5Dcreate2(f, name, TEST_DATATYPE, space, H5P_DEFAULT, dcpl, H5P_DEFAULT)) < 0)
|
|
|
|
TEST_ERROR;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
/* Clean up */
|
1998-11-25 22:58:22 +08:00
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
/* Close property lists */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Pclose(dcpl) < 0)
|
|
|
|
TEST_ERROR;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
/* Close dataspace */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Sclose(space) < 0)
|
|
|
|
TEST_ERROR;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
return dataset;
|
|
|
|
|
|
|
|
error:
|
1998-11-25 22:58:22 +08:00
|
|
|
return -1;
|
1997-10-21 07:14:35 +08:00
|
|
|
}
|
1998-11-25 22:58:22 +08:00
|
|
|
|
1997-10-21 07:14:35 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
2018-02-15 00:08:09 +08:00
|
|
|
* Function: test_create
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Purpose: Creates a named object that refers to indexed storage of raw
|
|
|
|
* data. No raw data is stored.
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Return: Success: SUCCEED
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Failure: FAIL
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
static herr_t
|
2003-05-08 05:52:24 +08:00
|
|
|
test_create(hid_t f, const char *prefix)
|
1997-10-21 07:14:35 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
hid_t dataset; /* Dataset ID */
|
|
|
|
hsize_t dims[H5O_LAYOUT_NDIMS + 1]; /* Dimensions of dataset */
|
|
|
|
hsize_t my_chunk_dims[H5O_LAYOUT_NDIMS + 1]; /* Dimensions of chunks */
|
|
|
|
char name[256]; /* Dataset name */
|
|
|
|
unsigned u; /* Local index variable */
|
1997-10-21 07:14:35 +08:00
|
|
|
|
1998-11-25 22:58:22 +08:00
|
|
|
TESTING("istore create");
|
1997-10-21 07:14:35 +08:00
|
|
|
|
2008-05-16 11:04:56 +08:00
|
|
|
dims[0] = my_chunk_dims[0] = 1;
|
2003-05-08 05:52:24 +08:00
|
|
|
for (u = 1; u <= H5S_MAX_RANK; u++) {
|
|
|
|
/* Initialize the dimension size in this new dimension */
|
2008-05-16 11:04:56 +08:00
|
|
|
dims[u] = my_chunk_dims[u] = 2;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
/* Create chunked dataset of this dimensionality */
|
2023-09-16 06:13:18 +08:00
|
|
|
snprintf(name, sizeof name, "%s_%02u", prefix, u);
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((dataset = new_object(f, name, (int)u, dims, my_chunk_dims)) < 0)
|
2018-03-19 07:36:49 +08:00
|
|
|
return FAIL;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
/* Close dataset created */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Dclose(dataset) < 0)
|
2003-05-08 05:52:24 +08:00
|
|
|
return FAIL;
|
1998-01-17 06:23:43 +08:00
|
|
|
}
|
|
|
|
|
1998-11-25 22:58:22 +08:00
|
|
|
PASSED();
|
1998-01-17 06:23:43 +08:00
|
|
|
return SUCCEED;
|
|
|
|
}
|
1998-11-25 22:58:22 +08:00
|
|
|
|
1997-10-21 07:14:35 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
2018-02-15 00:08:09 +08:00
|
|
|
* Function: test_extend
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Purpose: Creates an empty object and then writes to it in such a way
|
|
|
|
* as to always extend the object's domain without creating
|
|
|
|
* holes and without causing the object to become concave.
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Return: Success: SUCCEED
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Failure: FAIL
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
static herr_t
|
2020-09-30 22:27:10 +08:00
|
|
|
test_extend(hid_t f, const char *prefix, size_t nx, size_t ny, size_t nz)
|
1997-10-21 07:14:35 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
hid_t dataset; /* Dataset ID */
|
|
|
|
hid_t fspace; /* Dataset's file dataspace */
|
|
|
|
hid_t mspace; /* Dataset's memory dataspace */
|
|
|
|
size_t i, j, k, ctr;
|
|
|
|
int ndims;
|
|
|
|
uint8_t *buf = NULL, *check = NULL, *whole = NULL;
|
|
|
|
char dims[64], s[256], name[256];
|
|
|
|
hsize_t offset[3];
|
|
|
|
hsize_t max_corner[3];
|
|
|
|
hsize_t size[3];
|
|
|
|
hsize_t whole_size[3];
|
|
|
|
hsize_t nelmts;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
|
|
if (!nz) {
|
2020-09-30 22:27:10 +08:00
|
|
|
if (!ny) {
|
|
|
|
ndims = 1;
|
|
|
|
ny = nz = 1;
|
2023-09-16 06:13:18 +08:00
|
|
|
snprintf(dims, sizeof(dims), "%lu", (unsigned long)nx);
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
ndims = 2;
|
|
|
|
nz = 1;
|
2023-09-16 06:13:18 +08:00
|
|
|
snprintf(dims, sizeof(dims), "%lux%lu", (unsigned long)nx, (unsigned long)ny);
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
2018-02-15 00:08:09 +08:00
|
|
|
}
|
2020-09-30 22:27:10 +08:00
|
|
|
else {
|
|
|
|
ndims = 3;
|
2023-09-16 06:13:18 +08:00
|
|
|
snprintf(dims, sizeof(dims), "%lux%lux%lu", (unsigned long)nx, (unsigned long)ny, (unsigned long)nz);
|
1998-01-17 06:23:43 +08:00
|
|
|
}
|
|
|
|
|
2023-09-16 06:13:18 +08:00
|
|
|
snprintf(s, sizeof(s), "istore extend: %s", dims);
|
2003-05-08 05:52:24 +08:00
|
|
|
TESTING(s);
|
2023-06-29 06:48:12 +08:00
|
|
|
buf = (uint8_t *)malloc(nx * ny * nz);
|
|
|
|
check = (uint8_t *)malloc(nx * ny * nz);
|
|
|
|
whole = (uint8_t *)calloc((size_t)1, nx * ny * nz);
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
|
|
whole_size[0] = nx;
|
|
|
|
whole_size[1] = ny;
|
|
|
|
whole_size[2] = nz;
|
|
|
|
max_corner[0] = 0;
|
|
|
|
max_corner[1] = 0;
|
|
|
|
max_corner[2] = 0;
|
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
/* Build the new empty object */
|
2023-09-16 06:13:18 +08:00
|
|
|
snprintf(name, sizeof(name), "%s_%s", prefix, dims);
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((dataset = new_object(f, name, ndims, whole_size, whole_size)) < 0) {
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, " Cannot create %u-d object `%s'\n", ndims, name);
|
2019-08-16 05:46:00 +08:00
|
|
|
goto error;
|
2003-05-08 05:52:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get dataset's dataspace */
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((fspace = H5Dget_space(dataset)) < 0)
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
for (ctr = 0; H5VM_vector_lt_u((unsigned)ndims, max_corner, whole_size); ctr++) {
|
|
|
|
|
|
|
|
/* Size and location */
|
|
|
|
if (0 == ctr) {
|
|
|
|
offset[0] = offset[1] = offset[2] = 0;
|
|
|
|
size[0] = size[1] = size[2] = 1;
|
|
|
|
nelmts = 1;
|
2018-02-15 00:08:09 +08:00
|
|
|
}
|
2020-09-30 22:27:10 +08:00
|
|
|
else {
|
|
|
|
for (i = 0, nelmts = 1; i < (size_t)ndims; i++) {
|
|
|
|
if (ctr % (size_t)ndims == i) {
|
|
|
|
offset[i] = max_corner[i];
|
|
|
|
size[i] = MIN(1, whole_size[i] - offset[i]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
offset[i] = 0;
|
|
|
|
size[i] = max_corner[i];
|
|
|
|
}
|
|
|
|
nelmts *= size[i];
|
|
|
|
}
|
2018-02-15 00:08:09 +08:00
|
|
|
}
|
1997-10-21 07:14:35 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* Fill the source array */
|
|
|
|
if (0 == nelmts)
|
|
|
|
continue;
|
2023-06-30 03:33:46 +08:00
|
|
|
memset(buf, (signed)(128 + ctr), (size_t)nelmts);
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
/* Create dataspace for selection in memory */
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((mspace = H5Screate_simple(1, &nelmts, NULL)) < 0)
|
|
|
|
TEST_ERROR;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
/* Select region in file dataspace */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Sselect_hyperslab(fspace, H5S_SELECT_SET, offset, NULL, size, NULL) < 0)
|
|
|
|
TEST_ERROR;
|
1998-04-09 05:43:02 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* Write to disk */
|
|
|
|
if (H5Dwrite(dataset, TEST_DATATYPE, mspace, fspace, H5P_DEFAULT, buf) < 0) {
|
|
|
|
H5_FAILED();
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, " Write failed: ctr=%lu\n", (unsigned long)ctr);
|
2020-09-30 22:27:10 +08:00
|
|
|
goto error;
|
|
|
|
}
|
2018-02-15 00:08:09 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* Read from disk */
|
2023-06-30 03:33:46 +08:00
|
|
|
memset(check, 0xff, (size_t)nelmts);
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Dread(dataset, TEST_DATATYPE, mspace, fspace, H5P_DEFAULT, check) < 0) {
|
|
|
|
H5_FAILED();
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, " Read failed: ctr=%lu\n", (unsigned long)ctr);
|
2020-09-30 22:27:10 +08:00
|
|
|
goto error;
|
|
|
|
}
|
2023-06-30 03:33:46 +08:00
|
|
|
if (memcmp(buf, check, (size_t)nelmts) != 0) {
|
2020-09-30 22:27:10 +08:00
|
|
|
H5_FAILED();
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, " Read check failed: ctr=%lu\n", (unsigned long)ctr);
|
|
|
|
fprintf(stderr, " Wrote:\n");
|
2020-09-30 22:27:10 +08:00
|
|
|
print_array(buf, (size_t)size[0], (size_t)size[1], (size_t)size[2]);
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, " Read:\n");
|
2020-09-30 22:27:10 +08:00
|
|
|
print_array(check, (size_t)size[0], (size_t)size[1], (size_t)size[2]);
|
|
|
|
goto error;
|
|
|
|
}
|
1998-11-25 22:58:22 +08:00
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
/* Close memory dataspace */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Sclose(mspace) < 0)
|
|
|
|
TEST_ERROR;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* Write to `whole' buffer for later checking */
|
|
|
|
H5VM_hyper_copy((unsigned)ndims, size, whole_size, offset, whole, /*dst*/
|
|
|
|
size, H5VM_ZERO, buf); /*src*/
|
1998-04-09 05:43:02 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* Update max corner */
|
|
|
|
for (i = 0; i < (size_t)ndims; i++)
|
|
|
|
max_corner[i] = MAX(max_corner[i], offset[i] + size[i]);
|
1998-01-17 06:23:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Now read the entire array back out and check it */
|
2023-06-30 03:33:46 +08:00
|
|
|
memset(buf, 0xff, nx * ny * nz);
|
[svn-r14199] Description:
Add H5Dcreate to API versioned routines, replacing internal usage with
H5Dcreate2
Fix thread-safe error stack initialization for API versioned error
stack printing routines.
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-12 00:24:11 +08:00
|
|
|
if (H5Dread(dataset, TEST_DATATYPE, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf) < 0) {
|
2020-09-30 22:27:10 +08:00
|
|
|
H5_FAILED();
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, " Read failed for whole array.\n");
|
2020-09-30 22:27:10 +08:00
|
|
|
goto error;
|
1998-01-17 06:23:43 +08:00
|
|
|
}
|
2020-09-30 22:27:10 +08:00
|
|
|
for (i = 0; i < nx; i++) {
|
|
|
|
for (j = 0; j < ny; j++) {
|
|
|
|
for (k = 0; k < nz; k++) {
|
|
|
|
if (whole[i * ny * nz + j * nz + k] != buf[i * ny * nz + j * nz + k]) {
|
|
|
|
H5_FAILED();
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, " Check failed at i=%lu", (unsigned long)i);
|
2020-09-30 22:27:10 +08:00
|
|
|
if (ndims > 1) {
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, ", j=%lu", (unsigned long)j);
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
|
|
|
if (ndims > 2) {
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, ", k=%lu", (unsigned long)k);
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, "\n Check array is:\n");
|
2020-09-30 22:27:10 +08:00
|
|
|
print_array(whole, nx, ny, nz);
|
2023-06-28 23:31:32 +08:00
|
|
|
fprintf(stderr, " Value read is:\n");
|
2020-09-30 22:27:10 +08:00
|
|
|
print_array(buf, nx, ny, nz);
|
|
|
|
goto error;
|
|
|
|
}
|
2018-02-15 00:08:09 +08:00
|
|
|
}
|
|
|
|
}
|
1998-01-17 06:23:43 +08:00
|
|
|
}
|
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
/* Close dataset's dataspace */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Sclose(fspace) < 0)
|
|
|
|
TEST_ERROR;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
/* Close dataset */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Dclose(dataset) < 0)
|
|
|
|
TEST_ERROR;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
/* Free memory used */
|
2023-06-29 06:48:12 +08:00
|
|
|
free(buf);
|
|
|
|
free(check);
|
|
|
|
free(whole);
|
2003-05-08 05:52:24 +08:00
|
|
|
|
1998-11-25 22:58:22 +08:00
|
|
|
PASSED();
|
1998-01-17 06:23:43 +08:00
|
|
|
return SUCCEED;
|
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
error:
|
2023-06-29 06:48:12 +08:00
|
|
|
free(buf);
|
|
|
|
free(check);
|
|
|
|
free(whole);
|
1998-01-17 06:23:43 +08:00
|
|
|
return FAIL;
|
|
|
|
}
|
1998-11-25 22:58:22 +08:00
|
|
|
|
1997-10-23 06:08:14 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
2018-02-15 00:08:09 +08:00
|
|
|
* Function: test_sparse
|
1997-10-23 06:08:14 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Purpose: Creates a sparse matrix consisting of NBLOCKS randomly placed
|
|
|
|
* blocks each of size NX,NY,NZ.
|
1997-10-23 06:08:14 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Return: Success: SUCCEED
|
1997-10-23 06:08:14 +08:00
|
|
|
*
|
2018-02-15 00:08:09 +08:00
|
|
|
* Failure: FAIL
|
1997-10-23 06:08:14 +08:00
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
static herr_t
|
2020-09-30 22:27:10 +08:00
|
|
|
test_sparse(hid_t f, const char *prefix, size_t nblocks, size_t nx, size_t ny, size_t nz, int skip_test)
|
1997-10-23 06:08:14 +08:00
|
|
|
{
|
2020-09-30 22:27:10 +08:00
|
|
|
hid_t dataset; /* Dataset ID */
|
|
|
|
hid_t fspace; /* Dataset's file dataspace */
|
|
|
|
hid_t mspace; /* Dataset's memory dataspace */
|
|
|
|
int ndims;
|
|
|
|
hsize_t ctr;
|
|
|
|
char dims[64], s[256], name[256];
|
|
|
|
hsize_t offset[3];
|
2022-05-03 08:25:57 +08:00
|
|
|
hsize_t size[3];
|
2020-09-30 22:27:10 +08:00
|
|
|
uint8_t *buf = NULL;
|
|
|
|
hsize_t whole_size[3]; /* Size of dataset's dataspace */
|
|
|
|
size_t u; /* Local index variable */
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
|
|
if (!nz) {
|
2020-09-30 22:27:10 +08:00
|
|
|
if (!ny) {
|
|
|
|
ndims = 1;
|
|
|
|
ny = nz = 1;
|
2023-09-16 06:13:18 +08:00
|
|
|
snprintf(dims, sizeof(dims), "%lu", (unsigned long)nx);
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
ndims = 2;
|
|
|
|
nz = 1;
|
2023-09-16 06:13:18 +08:00
|
|
|
snprintf(dims, sizeof(dims), "%lux%lu", (unsigned long)nx, (unsigned long)ny);
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
2018-02-15 00:08:09 +08:00
|
|
|
}
|
2020-09-30 22:27:10 +08:00
|
|
|
else {
|
|
|
|
ndims = 3;
|
2023-09-16 06:13:18 +08:00
|
|
|
snprintf(dims, sizeof(dims), "%lux%lux%lu", (unsigned long)nx, (unsigned long)ny, (unsigned long)nz);
|
1998-01-17 06:23:43 +08:00
|
|
|
}
|
|
|
|
|
2023-09-16 06:13:18 +08:00
|
|
|
snprintf(s, sizeof(s), "istore sparse: %s", dims);
|
2003-05-08 05:52:24 +08:00
|
|
|
TESTING(s);
|
2020-09-30 22:27:10 +08:00
|
|
|
if (skip_test) {
|
2022-05-04 23:49:01 +08:00
|
|
|
SKIPPED();
|
2012-03-27 05:11:50 +08:00
|
|
|
return SUCCEED;
|
|
|
|
}
|
2023-06-29 06:48:12 +08:00
|
|
|
buf = (uint8_t *)malloc(nx * ny * nz);
|
2023-06-30 03:33:46 +08:00
|
|
|
memset(buf, 128, nx * ny * nz);
|
1998-01-17 06:23:43 +08:00
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
/* Set dimensions of dataset */
|
2020-09-30 22:27:10 +08:00
|
|
|
for (u = 0; u < (size_t)ndims; u++)
|
|
|
|
whole_size[u] = TEST_SPARSE_SIZE;
|
2002-04-26 02:02:17 +08:00
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
/* Set dimensions of selection */
|
|
|
|
size[0] = nx;
|
|
|
|
size[1] = ny;
|
|
|
|
size[2] = nz;
|
2002-04-26 02:02:17 +08:00
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
/* Build the new empty object */
|
2023-09-16 06:13:18 +08:00
|
|
|
snprintf(name, sizeof(name), "%s_%s", prefix, dims);
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((dataset = new_object(f, name, ndims, whole_size, chunk_dims)) < 0) {
|
2023-06-28 23:31:32 +08:00
|
|
|
printf(" Cannot create %u-d object `%s'\n", ndims, name);
|
2019-08-16 05:46:00 +08:00
|
|
|
goto error;
|
1998-01-17 06:23:43 +08:00
|
|
|
}
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
/* Get dataset's dataspace */
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((fspace = H5Dget_space(dataset)) < 0)
|
|
|
|
TEST_ERROR;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
/* Create dataspace for memory buffer */
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((mspace = H5Screate_simple(ndims, size, NULL)) < 0)
|
|
|
|
TEST_ERROR;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
for (ctr = 0; ctr < nblocks; ctr++) {
|
2024-04-08 06:15:25 +08:00
|
|
|
offset[0] = (hsize_t)(rand() % (int)(TEST_SPARSE_SIZE - nx));
|
|
|
|
offset[1] = (hsize_t)(rand() % (int)(TEST_SPARSE_SIZE - ny));
|
|
|
|
offset[2] = (hsize_t)(rand() % (int)(TEST_SPARSE_SIZE - nz));
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
/* Select region in file dataspace */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Sselect_hyperslab(fspace, H5S_SELECT_SET, offset, NULL, size, NULL) < 0)
|
|
|
|
TEST_ERROR;
|
1998-04-09 05:43:02 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* write to disk */
|
|
|
|
if (H5Dwrite(dataset, TEST_DATATYPE, mspace, fspace, H5P_DEFAULT, buf) < 0) {
|
|
|
|
H5_FAILED();
|
2023-06-28 23:31:32 +08:00
|
|
|
printf(" Write failed: ctr=%lu\n", (unsigned long)ctr);
|
|
|
|
printf(" offset=(%lu", (unsigned long)(offset[0]));
|
2020-09-30 22:27:10 +08:00
|
|
|
if (ndims > 1)
|
2023-06-28 23:31:32 +08:00
|
|
|
printf(",%lu", (unsigned long)(offset[1]));
|
2020-09-30 22:27:10 +08:00
|
|
|
if (ndims > 2)
|
2023-06-28 23:31:32 +08:00
|
|
|
printf(",%lu", (unsigned long)(offset[2]));
|
|
|
|
printf("), size=(%lu", (unsigned long)(size[0]));
|
2020-09-30 22:27:10 +08:00
|
|
|
if (ndims > 1)
|
2023-06-28 23:31:32 +08:00
|
|
|
printf(",%lu", (unsigned long)(size[1]));
|
2020-09-30 22:27:10 +08:00
|
|
|
if (ndims > 2)
|
2023-06-28 23:31:32 +08:00
|
|
|
printf(",%lu", (unsigned long)(size[2]));
|
|
|
|
printf(")\n");
|
2020-09-30 22:27:10 +08:00
|
|
|
goto error;
|
|
|
|
}
|
1997-10-23 06:08:14 +08:00
|
|
|
|
2020-09-30 22:27:10 +08:00
|
|
|
/* We don't test reading yet.... */
|
1998-01-17 06:23:43 +08:00
|
|
|
}
|
1997-10-23 06:08:14 +08:00
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
/* Close memory dataspace */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Sclose(mspace) < 0)
|
|
|
|
TEST_ERROR;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
/* Close dataset's dataspace */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Sclose(fspace) < 0)
|
|
|
|
TEST_ERROR;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
|
|
|
/* Close dataset */
|
2020-09-30 22:27:10 +08:00
|
|
|
if (H5Dclose(dataset) < 0)
|
|
|
|
TEST_ERROR;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
2023-06-29 06:48:12 +08:00
|
|
|
free(buf);
|
1998-11-25 22:58:22 +08:00
|
|
|
PASSED();
|
1998-01-17 06:23:43 +08:00
|
|
|
return SUCCEED;
|
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
error:
|
2023-06-29 06:48:12 +08:00
|
|
|
free(buf);
|
1998-01-17 06:23:43 +08:00
|
|
|
return FAIL;
|
|
|
|
}
|
1998-06-06 05:03:49 +08:00
|
|
|
|
1997-10-21 07:14:35 +08:00
|
|
|
/*-------------------------------------------------------------------------
|
2018-02-15 00:08:09 +08:00
|
|
|
* Function: main
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
2019-09-07 09:06:26 +08:00
|
|
|
* Purpose: Tests indexed storage
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
2019-09-07 09:06:26 +08:00
|
|
|
* Return: EXIT_SUCCESS/EXIT_FAILURE
|
1997-10-21 07:14:35 +08:00
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
int
|
1998-01-17 06:23:43 +08:00
|
|
|
main(int argc, char *argv[])
|
1997-10-21 07:14:35 +08:00
|
|
|
{
|
2023-09-09 07:06:23 +08:00
|
|
|
hid_t fapl = H5I_INVALID_HID, file = H5I_INVALID_HID, fcpl = H5I_INVALID_HID;
|
2020-09-30 22:27:10 +08:00
|
|
|
herr_t status;
|
|
|
|
int nerrors = 0;
|
|
|
|
unsigned size_of_test;
|
|
|
|
unsigned u; /* Local index variable */
|
|
|
|
char filename[1024];
|
|
|
|
int skip_test = 0;
|
|
|
|
int has_sparse_support = 0;
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
|
|
|
|
/* Parse arguments or assume these tests (`small', `medium' ) */
|
|
|
|
if (1 == argc) {
|
|
|
|
size_of_test = TEST_SMALL | TEST_MEDIUM | TEST_LARGE;
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
int i;
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
for (i = 1, size_of_test = 0; i < argc; i++) {
|
2023-09-16 06:13:18 +08:00
|
|
|
if (!strcmp(argv[i], "small")) {
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
size_of_test |= TEST_SMALL;
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
2023-09-16 06:13:18 +08:00
|
|
|
else if (!strcmp(argv[i], "medium")) {
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
size_of_test |= TEST_MEDIUM;
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
2023-09-16 06:13:18 +08:00
|
|
|
else if (!strcmp(argv[i], "large")) {
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
size_of_test |= TEST_LARGE;
|
2020-09-30 22:27:10 +08:00
|
|
|
}
|
|
|
|
else {
|
2023-06-28 23:31:32 +08:00
|
|
|
printf("unrecognized argument: %s\n", argv[i]);
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-28 23:31:32 +08:00
|
|
|
printf("Test sizes: ");
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
if (size_of_test & TEST_SMALL)
|
2023-06-28 23:31:32 +08:00
|
|
|
printf(" SMALL");
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
if (size_of_test & TEST_MEDIUM)
|
2023-06-28 23:31:32 +08:00
|
|
|
printf(" MEDIUM");
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
if (size_of_test & TEST_LARGE)
|
2023-06-28 23:31:32 +08:00
|
|
|
printf(" LARGE");
|
|
|
|
printf("\n");
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
|
|
|
|
/* Set the random # seed */
|
2024-04-08 06:15:25 +08:00
|
|
|
srand((unsigned)time(NULL));
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
|
2012-03-21 05:42:38 +08:00
|
|
|
/* Check to see if the file system supports POSIX-style sparse files.
|
|
|
|
* Windows NTFS does not, so we want to avoid tests which create
|
|
|
|
* very large files.
|
|
|
|
*/
|
|
|
|
has_sparse_support = is_sparse();
|
|
|
|
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
/* Reset library */
|
|
|
|
h5_reset();
|
|
|
|
fapl = h5_fileaccess();
|
|
|
|
|
|
|
|
/* Use larger file addresses... */
|
|
|
|
fcpl = H5Pcreate(H5P_FILE_CREATE);
|
|
|
|
H5Pset_sizes(fcpl, (size_t)8, (size_t)0);
|
|
|
|
|
|
|
|
/* Create the test file */
|
|
|
|
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
|
2020-09-30 22:27:10 +08:00
|
|
|
if ((file = H5Fcreate(filename, H5F_ACC_TRUNC, fcpl, fapl)) < 0) {
|
2023-06-28 23:31:32 +08:00
|
|
|
printf("Cannot create file %s; test aborted\n", filename);
|
2023-06-29 23:18:01 +08:00
|
|
|
exit(EXIT_FAILURE);
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
}
|
1998-01-17 06:23:43 +08:00
|
|
|
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
/* Initialize chunk dimensions */
|
2020-09-30 22:27:10 +08:00
|
|
|
for (u = 0; u < H5O_LAYOUT_NDIMS; u++)
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
chunk_dims[u] = TEST_CHUNK_SIZE;
|
|
|
|
|
|
|
|
/*
|
2020-09-30 22:27:10 +08:00
|
|
|
* Creation test: Creates empty objects with various raw data sizes
|
|
|
|
* and alignments.
|
|
|
|
*/
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
status = test_create(file, "create");
|
|
|
|
nerrors += status < 0 ? 1 : 0;
|
|
|
|
|
|
|
|
if (size_of_test & TEST_SMALL) {
|
|
|
|
status = test_extend(file, "extend", (size_t)10, (size_t)0, (size_t)0);
|
|
|
|
nerrors += status < 0 ? 1 : 0;
|
|
|
|
status = test_extend(file, "extend", (size_t)10, (size_t)10, (size_t)0);
|
|
|
|
nerrors += status < 0 ? 1 : 0;
|
|
|
|
status = test_extend(file, "extend", (size_t)10, (size_t)10, (size_t)10);
|
|
|
|
nerrors += status < 0 ? 1 : 0;
|
|
|
|
}
|
|
|
|
if (size_of_test & TEST_MEDIUM) {
|
|
|
|
status = test_extend(file, "extend", (size_t)10000, (size_t)0, (size_t)0);
|
|
|
|
nerrors += status < 0 ? 1 : 0;
|
|
|
|
status = test_extend(file, "extend", (size_t)2500, (size_t)10, (size_t)0);
|
|
|
|
nerrors += status < 0 ? 1 : 0;
|
|
|
|
status = test_extend(file, "extend", (size_t)10, (size_t)400, (size_t)10);
|
|
|
|
nerrors += status < 0 ? 1 : 0;
|
|
|
|
}
|
2012-03-27 05:11:50 +08:00
|
|
|
skip_test = 0;
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
if (size_of_test & TEST_SMALL) {
|
2012-03-27 05:11:50 +08:00
|
|
|
status = test_sparse(file, "sparse", (size_t)100, (size_t)5, (size_t)0, (size_t)0, skip_test);
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
nerrors += status < 0 ? 1 : 0;
|
2012-03-27 05:11:50 +08:00
|
|
|
status = test_sparse(file, "sparse", (size_t)100, (size_t)3, (size_t)4, (size_t)0, skip_test);
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
nerrors += status < 0 ? 1 : 0;
|
2012-03-27 05:11:50 +08:00
|
|
|
status = test_sparse(file, "sparse", (size_t)100, (size_t)2, (size_t)3, (size_t)4, skip_test);
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
nerrors += status < 0 ? 1 : 0;
|
|
|
|
}
|
|
|
|
if (size_of_test & TEST_MEDIUM) {
|
2012-03-27 05:11:50 +08:00
|
|
|
status = test_sparse(file, "sparse", (size_t)1000, (size_t)30, (size_t)0, (size_t)0, skip_test);
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
nerrors += status < 0 ? 1 : 0;
|
2012-03-27 05:11:50 +08:00
|
|
|
status = test_sparse(file, "sparse", (size_t)2000, (size_t)7, (size_t)3, (size_t)0, skip_test);
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
nerrors += status < 0 ? 1 : 0;
|
2012-03-27 05:11:50 +08:00
|
|
|
status = test_sparse(file, "sparse", (size_t)2000, (size_t)4, (size_t)2, (size_t)3, skip_test);
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
nerrors += status < 0 ? 1 : 0;
|
|
|
|
}
|
2012-03-27 05:11:50 +08:00
|
|
|
skip_test = !has_sparse_support;
|
|
|
|
if (size_of_test & TEST_LARGE) {
|
2012-03-21 05:42:38 +08:00
|
|
|
/* This test is skipped if there is no POSIX-style sparse file support
|
|
|
|
* e.g.: Windows NTFS filesystems
|
|
|
|
*/
|
2012-03-27 05:11:50 +08:00
|
|
|
status = test_sparse(file, "sparse", (size_t)800, (size_t)50, (size_t)50, (size_t)50, skip_test);
|
2020-09-30 22:27:10 +08:00
|
|
|
if (skip_test)
|
2023-06-28 23:31:32 +08:00
|
|
|
printf(" The current VFD does not support sparse files on this platform.\n");
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
nerrors += status < 0 ? 1 : 0;
|
|
|
|
}
|
2003-05-08 05:52:24 +08:00
|
|
|
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
/* Close the test file and exit */
|
|
|
|
H5Pclose(fcpl);
|
|
|
|
H5Fclose(file);
|
2006-08-01 03:46:16 +08:00
|
|
|
|
2011-04-16 06:05:23 +08:00
|
|
|
/* Verify symbol table messages are cached */
|
|
|
|
nerrors += (h5_verify_cached_stabs(FILENAME, fapl) < 0 ? 1 : 0);
|
|
|
|
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
if (nerrors) {
|
2023-06-28 23:31:32 +08:00
|
|
|
printf("***** %d I-STORE TEST%s FAILED! *****\n", nerrors, 1 == nerrors ? "" : "S");
|
2023-06-29 23:18:01 +08:00
|
|
|
exit(EXIT_FAILURE);
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
}
|
2005-08-14 04:53:35 +08:00
|
|
|
|
2023-06-28 23:31:32 +08:00
|
|
|
printf("All i-store tests passed.\n");
|
[svn-r15868] Description:
Correct a minor error in file free space allocation which was affecting
the 'multi' VFD and preventing some tests from fully working with it.
Wholesale revisitation of all the places where tests were disabled
with various VFDs and remove or correct all these so that _only_ the tests
which _really_ can't work with particular VFDs are skipped during a
'make check-vfd' test.
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
2008-10-15 09:46:34 +08:00
|
|
|
|
|
|
|
h5_cleanup(FILENAME, fapl);
|
1998-11-25 22:58:22 +08:00
|
|
|
|
2023-06-29 23:18:01 +08:00
|
|
|
exit(EXIT_SUCCESS);
|
1997-10-21 07:14:35 +08:00
|
|
|
}
|