2003-07-11 04:15:46 +08:00
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
|
* Copyright by The HDF Group. *
|
2003-07-11 04:15:46 +08:00
|
|
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
|
|
|
* 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 *
|
|
|
|
|
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
|
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
|
* help@hdfgroup.org. *
|
2003-07-11 04:15:46 +08:00
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Programmer: Raymond Lu
|
2005-08-14 04:53:35 +08:00
|
|
|
|
* October 14, 2001
|
2003-07-11 04:15:46 +08:00
|
|
|
|
*
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
* Purpose: Tests the error API routines.
|
2003-07-11 04:15:46 +08:00
|
|
|
|
*/
|
|
|
|
|
#include "h5test.h"
|
2011-06-03 23:58:49 +08:00
|
|
|
|
#include "H5srcdir.h"
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
2010-09-28 03:02:48 +08:00
|
|
|
|
#ifdef H5_USE_16_API
|
2003-09-25 03:26:50 +08:00
|
|
|
|
int main(void)
|
|
|
|
|
{
|
2011-06-07 23:58:21 +08:00
|
|
|
|
HDfprintf(stderr, "Test skipped because backward compatbility with v1.6 is configured in\n");
|
2003-09-25 03:26:50 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2008-10-31 04:49:08 +08:00
|
|
|
|
#else /* H5_USE_16_API */
|
2003-09-25 03:26:50 +08:00
|
|
|
|
|
2003-07-11 04:15:46 +08:00
|
|
|
|
const char *FILENAME[] = {
|
|
|
|
|
"errors",
|
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
2011-06-14 05:28:49 +08:00
|
|
|
|
#define DATAFILE "filter_error"
|
|
|
|
|
|
2003-07-11 04:15:46 +08:00
|
|
|
|
#define DIM0 100
|
|
|
|
|
#define DIM1 200
|
|
|
|
|
|
|
|
|
|
int ipoints2[DIM0][DIM1], icheck2[DIM0][DIM1];
|
|
|
|
|
|
|
|
|
|
hid_t ERR_CLS;
|
2009-04-23 02:39:10 +08:00
|
|
|
|
hid_t ERR_CLS2;
|
2003-07-18 09:46:40 +08:00
|
|
|
|
hid_t ERR_STACK;
|
2003-07-16 06:17:09 +08:00
|
|
|
|
|
2003-07-11 04:15:46 +08:00
|
|
|
|
hid_t ERR_MAJ_TEST;
|
2003-07-16 06:17:09 +08:00
|
|
|
|
hid_t ERR_MAJ_IO;
|
2003-07-18 09:46:40 +08:00
|
|
|
|
hid_t ERR_MAJ_API;
|
2003-07-16 06:17:09 +08:00
|
|
|
|
|
2003-07-11 04:15:46 +08:00
|
|
|
|
hid_t ERR_MIN_SUBROUTINE;
|
2003-07-18 09:46:40 +08:00
|
|
|
|
hid_t ERR_MIN_ERRSTACK;
|
2003-07-16 06:17:09 +08:00
|
|
|
|
hid_t ERR_MIN_CREATE;
|
2003-07-22 09:32:27 +08:00
|
|
|
|
hid_t ERR_MIN_WRITE;
|
2003-07-18 09:46:40 +08:00
|
|
|
|
hid_t ERR_MIN_GETNUM;
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
2003-07-12 05:04:38 +08:00
|
|
|
|
#define DSET_NAME "a_dataset"
|
2014-07-31 04:55:14 +08:00
|
|
|
|
#define FAKE_ID (hid_t)0
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
|
|
|
|
#define ERR_CLS_NAME "Error Test"
|
2009-04-23 02:39:10 +08:00
|
|
|
|
#define ERR_CLS2_NAME "Second Test"
|
2003-07-11 04:15:46 +08:00
|
|
|
|
#define PROG_NAME "Error Program"
|
2009-04-23 02:39:10 +08:00
|
|
|
|
#define PROG2_NAME "Second Program"
|
2003-07-11 04:15:46 +08:00
|
|
|
|
#define PROG_VERS "1.0"
|
2003-07-18 09:46:40 +08:00
|
|
|
|
|
2003-07-16 06:17:09 +08:00
|
|
|
|
#define ERR_MAJ_TEST_MSG "Error in test"
|
|
|
|
|
#define ERR_MAJ_IO_MSG "Error in IO"
|
2003-07-18 09:46:40 +08:00
|
|
|
|
#define ERR_MAJ_API_MSG "Error in API"
|
2003-07-16 06:17:09 +08:00
|
|
|
|
#define ERR_MIN_SUBROUTINE_MSG "Error in subroutine"
|
2003-07-18 09:46:40 +08:00
|
|
|
|
#define ERR_MIN_ERRSTACK_MSG "Error in error stack"
|
[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
|
|
|
|
#define ERR_MIN_CREATE_MSG "Error in H5Dcreate2"
|
2003-07-22 09:32:27 +08:00
|
|
|
|
#define ERR_MIN_WRITE_MSG "Error in H5Dwrite"
|
2003-07-18 09:46:40 +08:00
|
|
|
|
#define ERR_MIN_GETNUM_MSG "Error in H5Eget_num"
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
2003-07-18 09:46:40 +08:00
|
|
|
|
#define MSG_SIZE 64
|
2005-01-15 03:36:01 +08:00
|
|
|
|
#define LONG_DESC_SIZE 8192
|
|
|
|
|
|
2011-06-03 23:58:49 +08:00
|
|
|
|
#define DSET_FILTER_NAME "dataset_with_filter"
|
|
|
|
|
|
2009-03-11 03:00:39 +08:00
|
|
|
|
static herr_t custom_print_cb(unsigned n, const H5E_error2_t *err_desc,
|
2007-04-12 09:59:45 +08:00
|
|
|
|
void *client_data);
|
2003-07-18 09:46:40 +08:00
|
|
|
|
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Function: test_error
|
2003-07-11 04:15:46 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Purpose: Test error API functions
|
2003-07-11 04:15:46 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
2003-07-11 04:15:46 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_error(hid_t file)
|
|
|
|
|
{
|
2017-11-18 07:21:49 +08:00
|
|
|
|
hid_t dataset = -1;
|
|
|
|
|
hid_t space = -1;
|
|
|
|
|
hid_t estack_id = -1;
|
2003-07-11 04:15:46 +08:00
|
|
|
|
hsize_t dims[2];
|
2007-04-12 09:59:45 +08:00
|
|
|
|
const char *FUNC_test_error = "test_error";
|
|
|
|
|
H5E_auto2_t old_func;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
void *old_data = NULL;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2011-06-07 23:58:21 +08:00
|
|
|
|
HDfprintf(stderr, "\nTesting error API based on data I/O\n");
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
|
|
|
|
/* Create the data space */
|
|
|
|
|
dims[0] = DIM0;
|
|
|
|
|
dims[1] = DIM1;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((space = H5Screate_simple(2, dims, NULL)) < 0)
|
|
|
|
|
TEST_ERROR;
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
2003-07-22 09:32:27 +08:00
|
|
|
|
/* Test H5E_BEGIN_TRY */
|
|
|
|
|
H5E_BEGIN_TRY {
|
[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
|
|
|
|
dataset = H5Dcreate2(FAKE_ID, DSET_NAME, H5T_STD_I32BE, space, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
2003-07-22 09:32:27 +08:00
|
|
|
|
} H5E_END_TRY;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2003-07-11 04:15:46 +08:00
|
|
|
|
/* Create the dataset */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((dataset = H5Dcreate2(file, DSET_NAME, H5T_STD_I32BE, space, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
|
2007-08-22 05:08:27 +08:00
|
|
|
|
H5Epush(H5E_DEFAULT, __FILE__, FUNC_test_error, __LINE__, ERR_CLS, ERR_MAJ_IO, ERR_MIN_CREATE,
|
[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
|
|
|
|
"H5Dcreate2 failed");
|
2003-07-18 09:46:40 +08:00
|
|
|
|
goto error;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
}
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
2003-07-22 09:32:27 +08:00
|
|
|
|
/* Test enabling and disabling default printing */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eget_auto2(H5E_DEFAULT, &old_func, &old_data) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
if (old_data != NULL)
|
|
|
|
|
TEST_ERROR;
|
2010-09-28 03:02:48 +08:00
|
|
|
|
#ifdef H5_USE_16_API
|
|
|
|
|
if (old_func != (H5E_auto_t)H5Eprint)
|
2017-11-18 07:21:49 +08:00
|
|
|
|
TEST_ERROR;
|
2010-09-28 03:02:48 +08:00
|
|
|
|
#else /* H5_USE_16_API */
|
2007-08-22 05:08:27 +08:00
|
|
|
|
if (old_func != (H5E_auto2_t)H5Eprint2)
|
2017-11-18 07:21:49 +08:00
|
|
|
|
TEST_ERROR;
|
2010-09-28 03:02:48 +08:00
|
|
|
|
#endif /* H5_USE_16_API */
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eset_auto2(H5E_DEFAULT, NULL, NULL) < 0)
|
2003-07-11 04:15:46 +08:00
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
2003-07-22 09:32:27 +08:00
|
|
|
|
/* Make H5Dwrite fail, verify default print is disabled */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Dwrite(FAKE_ID, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, ipoints2) >= 0) {
|
2007-08-22 05:08:27 +08:00
|
|
|
|
H5Epush(H5E_DEFAULT, __FILE__, FUNC_test_error, __LINE__, ERR_CLS, ERR_MAJ_IO, ERR_MIN_WRITE,
|
2003-07-22 09:32:27 +08:00
|
|
|
|
"H5Dwrite shouldn't succeed");
|
|
|
|
|
goto error;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
}
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eset_auto2(H5E_DEFAULT, old_func, old_data) < 0)
|
2003-07-11 04:15:46 +08:00
|
|
|
|
TEST_ERROR;
|
2003-07-22 09:32:27 +08:00
|
|
|
|
|
|
|
|
|
/* Test saving and restoring the current error stack */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Dwrite(FAKE_ID, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, ipoints2) < 0) {
|
2007-08-22 05:08:27 +08:00
|
|
|
|
H5Epush(H5E_DEFAULT, __FILE__, FUNC_test_error, __LINE__, ERR_CLS, ERR_MAJ_IO, ERR_MIN_WRITE,
|
2003-07-22 09:32:27 +08:00
|
|
|
|
"H5Dwrite failed as supposed to");
|
|
|
|
|
estack_id = H5Eget_current_stack();
|
|
|
|
|
H5Dclose(dataset);
|
|
|
|
|
H5Sclose(space);
|
|
|
|
|
H5Eset_current_stack(estack_id);
|
2005-08-14 04:53:35 +08:00
|
|
|
|
goto error;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
}
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
2003-07-22 09:32:27 +08:00
|
|
|
|
/* In case program comes to this point, close dataset */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if(H5Dclose(dataset) < 0)
|
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
|
|
|
|
TEST_ERROR;
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
return -1;
|
2007-04-12 09:59:45 +08:00
|
|
|
|
} /* end test_error() */
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Function: init_error
|
2003-07-11 04:15:46 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Purpose: Initialize error information.
|
2003-07-11 04:15:46 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
2003-07-11 04:15:46 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2005-08-14 04:53:35 +08:00
|
|
|
|
static herr_t
|
2003-07-11 04:15:46 +08:00
|
|
|
|
init_error(void)
|
|
|
|
|
{
|
2010-02-20 10:23:44 +08:00
|
|
|
|
ssize_t cls_size = (ssize_t)HDstrlen(ERR_CLS_NAME) + 1;
|
2004-04-18 12:10:09 +08:00
|
|
|
|
ssize_t msg_size = (ssize_t)HDstrlen(ERR_MIN_SUBROUTINE_MSG) + 1;
|
2010-02-20 10:23:44 +08:00
|
|
|
|
char *cls_name = NULL;
|
|
|
|
|
char *msg = NULL;
|
|
|
|
|
H5E_type_t msg_type;
|
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (NULL == (cls_name = (char *)HDmalloc(HDstrlen(ERR_CLS_NAME) + 1)))
|
2010-02-20 10:23:44 +08:00
|
|
|
|
TEST_ERROR
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (NULL == (msg = (char *)HDmalloc(HDstrlen(ERR_MIN_SUBROUTINE_MSG) + 1)))
|
2010-02-20 10:23:44 +08:00
|
|
|
|
TEST_ERROR
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((ERR_CLS = H5Eregister_class(ERR_CLS_NAME, PROG_NAME, PROG_VERS)) < 0)
|
2003-07-15 23:49:36 +08:00
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (cls_size != H5Eget_class_name(ERR_CLS, cls_name, (size_t)cls_size) + 1)
|
2003-07-15 23:49:36 +08:00
|
|
|
|
TEST_ERROR;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (HDstrcmp(ERR_CLS_NAME, cls_name))
|
2003-07-15 23:49:36 +08:00
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((ERR_MAJ_TEST = H5Ecreate_msg(ERR_CLS, H5E_MAJOR, ERR_MAJ_TEST_MSG)) < 0)
|
2003-07-16 06:17:09 +08:00
|
|
|
|
TEST_ERROR;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((ERR_MAJ_IO = H5Ecreate_msg(ERR_CLS, H5E_MAJOR, ERR_MAJ_IO_MSG)) < 0)
|
2003-07-16 06:17:09 +08:00
|
|
|
|
TEST_ERROR;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((ERR_MAJ_API = H5Ecreate_msg(ERR_CLS, H5E_MAJOR, ERR_MAJ_API_MSG)) < 0)
|
2003-07-18 09:46:40 +08:00
|
|
|
|
TEST_ERROR;
|
2003-07-16 06:17:09 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((ERR_MIN_SUBROUTINE = H5Ecreate_msg(ERR_CLS, H5E_MINOR, ERR_MIN_SUBROUTINE_MSG)) < 0)
|
2003-07-15 23:49:36 +08:00
|
|
|
|
TEST_ERROR;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((ERR_MIN_ERRSTACK = H5Ecreate_msg(ERR_CLS, H5E_MINOR, ERR_MIN_ERRSTACK_MSG)) < 0)
|
2003-07-18 09:46:40 +08:00
|
|
|
|
TEST_ERROR;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((ERR_MIN_CREATE = H5Ecreate_msg(ERR_CLS, H5E_MINOR, ERR_MIN_CREATE_MSG)) < 0)
|
2003-07-15 23:49:36 +08:00
|
|
|
|
TEST_ERROR;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((ERR_MIN_WRITE = H5Ecreate_msg(ERR_CLS, H5E_MINOR, ERR_MIN_WRITE_MSG)) < 0)
|
2003-07-22 09:32:27 +08:00
|
|
|
|
TEST_ERROR;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((ERR_MIN_GETNUM = H5Ecreate_msg(ERR_CLS, H5E_MINOR, ERR_MIN_GETNUM_MSG)) < 0)
|
2003-07-18 09:46:40 +08:00
|
|
|
|
TEST_ERROR;
|
2003-07-15 23:49:36 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (msg_size != H5Eget_msg(ERR_MIN_SUBROUTINE, &msg_type, msg, (size_t)msg_size) + 1)
|
2003-07-15 23:49:36 +08:00
|
|
|
|
TEST_ERROR;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (msg_type != H5E_MINOR)
|
2003-07-15 23:49:36 +08:00
|
|
|
|
TEST_ERROR;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (HDstrcmp(msg, ERR_MIN_SUBROUTINE_MSG))
|
2003-07-15 23:49:36 +08:00
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
2009-04-23 02:39:10 +08:00
|
|
|
|
/* Register another class for later testing. */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((ERR_CLS2 = H5Eregister_class(ERR_CLS2_NAME, PROG2_NAME, PROG_VERS)) < 0)
|
2009-04-23 02:39:10 +08:00
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
2010-02-20 10:23:44 +08:00
|
|
|
|
HDfree(cls_name);
|
|
|
|
|
HDfree(msg);
|
|
|
|
|
|
2003-07-15 04:08:27 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
2007-04-12 09:59:45 +08:00
|
|
|
|
error:
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (cls_name)
|
2010-02-20 10:23:44 +08:00
|
|
|
|
HDfree(cls_name);
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (msg)
|
2010-02-20 10:23:44 +08:00
|
|
|
|
HDfree(msg);
|
|
|
|
|
|
2003-07-15 04:08:27 +08:00
|
|
|
|
return -1;
|
2007-04-12 09:59:45 +08:00
|
|
|
|
} /* end init_error() */
|
2003-07-15 04:08:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Function: error_stack
|
2003-07-15 04:08:27 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Purpose: Manipulates current error stack.
|
2003-07-15 04:08:27 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
2003-07-15 04:08:27 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2005-08-14 04:53:35 +08:00
|
|
|
|
static herr_t
|
2003-07-15 04:08:27 +08:00
|
|
|
|
error_stack(void)
|
|
|
|
|
{
|
2016-08-13 17:23:53 +08:00
|
|
|
|
ssize_t err_num;
|
2007-04-12 09:59:45 +08:00
|
|
|
|
const char *FUNC_error_stack = "error_stack";
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((err_num = H5Eget_num(H5E_DEFAULT)) < 0)
|
2003-07-16 06:17:09 +08:00
|
|
|
|
TEST_ERROR;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (err_num)
|
2003-07-16 06:17:09 +08:00
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((ERR_STACK = H5Eget_current_stack()) < 0)
|
2003-07-15 23:49:36 +08:00
|
|
|
|
TEST_ERROR;
|
2003-07-15 04:08:27 +08:00
|
|
|
|
|
2003-07-22 09:32:27 +08:00
|
|
|
|
/* Make it push error, force this function to fail */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((err_num = H5Eget_num(ERR_STACK)) == 0) {
|
2007-08-22 05:08:27 +08:00
|
|
|
|
H5Epush(ERR_STACK, __FILE__, FUNC_error_stack, __LINE__, ERR_CLS, ERR_MAJ_API, ERR_MIN_GETNUM,
|
2016-08-16 22:02:21 +08:00
|
|
|
|
"Get number test failed, returned %d", (int)err_num);
|
2003-07-18 09:46:40 +08:00
|
|
|
|
goto error;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
}
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
|
|
|
|
/* In case program falls through here, close the stack and let it fail. */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eclose_stack(ERR_STACK) < 0)
|
2003-07-15 23:49:36 +08:00
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2003-07-22 09:32:27 +08:00
|
|
|
|
return -1;
|
2003-07-15 04:08:27 +08:00
|
|
|
|
|
2007-04-12 09:59:45 +08:00
|
|
|
|
error:
|
2003-07-15 04:08:27 +08:00
|
|
|
|
return -1;
|
2007-04-12 09:59:45 +08:00
|
|
|
|
} /* end error_stack() */
|
2003-07-15 04:08:27 +08:00
|
|
|
|
|
2007-04-12 09:59:45 +08:00
|
|
|
|
|
2005-01-20 04:15:26 +08:00
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: long_desc_cb
|
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Purpose: Callback function to help test long description handling
|
2005-01-20 04:15:26 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
2005-01-20 04:15:26 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2006-01-24 04:46:34 +08:00
|
|
|
|
static herr_t
|
2015-06-02 03:38:09 +08:00
|
|
|
|
long_desc_cb(unsigned H5_ATTR_UNUSED n, const H5E_error2_t *err_desc, void *client_data)
|
2005-01-20 04:15:26 +08:00
|
|
|
|
{
|
2007-04-12 09:59:45 +08:00
|
|
|
|
char *real_desc = (char *)client_data;
|
2005-01-20 04:15:26 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (err_desc->desc != NULL && HDstrcmp(err_desc->desc, real_desc) == 0)
|
|
|
|
|
return 0;
|
2005-01-20 04:15:26 +08:00
|
|
|
|
else
|
2017-11-18 07:21:49 +08:00
|
|
|
|
return -1;
|
2007-04-12 09:59:45 +08:00
|
|
|
|
} /* end long_desc_cb() */
|
2005-01-20 04:15:26 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Function: test_long_desc
|
2005-01-20 04:15:26 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Purpose: Test long error description handling
|
2005-01-20 04:15:26 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
2005-01-20 04:15:26 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2005-08-14 04:53:35 +08:00
|
|
|
|
static herr_t
|
2005-01-20 04:15:26 +08:00
|
|
|
|
test_long_desc(void)
|
|
|
|
|
{
|
2007-04-12 09:59:45 +08:00
|
|
|
|
const char *format = "Testing very long description string, %s";
|
2007-04-04 03:51:14 +08:00
|
|
|
|
char *long_desc = NULL;
|
|
|
|
|
char *full_desc = NULL;
|
2005-01-20 04:15:26 +08:00
|
|
|
|
size_t u;
|
2007-04-12 09:59:45 +08:00
|
|
|
|
const char *test_FUNC = "test_long_desc";
|
2005-01-20 04:15:26 +08:00
|
|
|
|
|
|
|
|
|
/* Allocate space for the error description info */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (NULL == (long_desc = (char *)HDmalloc(LONG_DESC_SIZE)))
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
if (NULL == (full_desc = (char *)HDmalloc(LONG_DESC_SIZE + 128)))
|
|
|
|
|
TEST_ERROR;
|
2005-01-20 04:15:26 +08:00
|
|
|
|
|
|
|
|
|
/* Create the long part of the error description */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
for (u = 0; u < LONG_DESC_SIZE; u++)
|
2016-08-13 17:23:53 +08:00
|
|
|
|
long_desc[u] = (char)('A' + (u % 26));
|
2007-04-12 09:59:45 +08:00
|
|
|
|
long_desc[LONG_DESC_SIZE - 1] = '\0';
|
2005-01-20 04:15:26 +08:00
|
|
|
|
|
|
|
|
|
/* Clear the default error stack */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eclear2(H5E_DEFAULT) < 0)
|
|
|
|
|
TEST_ERROR;
|
2005-01-20 04:15:26 +08:00
|
|
|
|
|
|
|
|
|
/* Push an error with a long description */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Epush(H5E_DEFAULT, __FILE__, test_FUNC, __LINE__, ERR_CLS, ERR_MAJ_TEST, ERR_MIN_SUBROUTINE, format, long_desc) < 0)
|
|
|
|
|
TEST_ERROR;
|
2005-01-20 04:15:26 +08:00
|
|
|
|
|
2011-06-07 23:58:21 +08:00
|
|
|
|
/* Create the string that should be in the description. Must use HDsnprintf here
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* because snprintf is _snprintf on Windows
|
|
|
|
|
*/
|
2011-06-07 23:58:21 +08:00
|
|
|
|
HDsnprintf(full_desc, (size_t)(LONG_DESC_SIZE + 128), format, long_desc);
|
2005-01-20 04:15:26 +08:00
|
|
|
|
|
|
|
|
|
/* Make certain that the description is correct */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Ewalk2(H5E_DEFAULT, H5E_WALK_UPWARD, long_desc_cb, full_desc) < 0)
|
|
|
|
|
TEST_ERROR;
|
2005-01-20 04:15:26 +08:00
|
|
|
|
|
|
|
|
|
/* Clear the default error stack again */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eclear2(H5E_DEFAULT) < 0)
|
|
|
|
|
TEST_ERROR;
|
2005-01-20 04:15:26 +08:00
|
|
|
|
|
|
|
|
|
HDfree(long_desc);
|
|
|
|
|
HDfree(full_desc);
|
2007-04-12 09:59:45 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
return 0;
|
2005-01-20 04:15:26 +08:00
|
|
|
|
|
|
|
|
|
error:
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (long_desc)
|
2007-04-12 09:59:45 +08:00
|
|
|
|
HDfree(long_desc);
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (full_desc)
|
2007-04-12 09:59:45 +08:00
|
|
|
|
HDfree(full_desc);
|
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
return -1;
|
2007-04-12 09:59:45 +08:00
|
|
|
|
} /* end test_long_desc() */
|
2005-01-20 04:15:26 +08:00
|
|
|
|
|
2003-07-18 09:46:40 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2005-08-14 04:53:35 +08:00
|
|
|
|
* Function: dump_error
|
2003-07-18 09:46:40 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Purpose: Prints error stack in default and customized ways.
|
2003-07-18 09:46:40 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
2003-07-18 09:46:40 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2005-08-14 04:53:35 +08:00
|
|
|
|
static herr_t
|
2003-07-18 09:46:40 +08:00
|
|
|
|
dump_error(hid_t estack)
|
|
|
|
|
{
|
|
|
|
|
/* Print errors in library default way */
|
2011-06-07 23:58:21 +08:00
|
|
|
|
HDfprintf(stderr, "********* Print error stack in HDF5 default way *********\n");
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eprint2(estack, stderr) < 0)
|
2003-07-22 09:32:27 +08:00
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2003-07-18 09:46:40 +08:00
|
|
|
|
/* Customized way to print errors */
|
2011-06-07 23:58:21 +08:00
|
|
|
|
HDfprintf(stderr, "\n********* Print error stack in customized way *********\n");
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Ewalk2(estack, H5E_WALK_UPWARD, custom_print_cb, stderr) < 0)
|
2003-07-22 09:32:27 +08:00
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2003-07-18 09:46:40 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
2007-04-12 09:59:45 +08:00
|
|
|
|
error:
|
2003-07-18 09:46:40 +08:00
|
|
|
|
return -1;
|
2007-04-12 09:59:45 +08:00
|
|
|
|
} /* end dump_error() */
|
2003-07-18 09:46:40 +08:00
|
|
|
|
|
2007-04-12 09:59:45 +08:00
|
|
|
|
|
2003-07-18 09:46:40 +08:00
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: custom_print_cb
|
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Purpose: Callback function to print error stack in customized way.
|
2003-07-18 09:46:40 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
2003-07-18 09:46:40 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2009-03-11 03:00:39 +08:00
|
|
|
|
static herr_t
|
2007-04-12 09:59:45 +08:00
|
|
|
|
custom_print_cb(unsigned n, const H5E_error2_t *err_desc, void* client_data)
|
2003-07-18 09:46:40 +08:00
|
|
|
|
{
|
2017-11-18 07:21:49 +08:00
|
|
|
|
FILE *stream = (FILE *)client_data;
|
2003-07-18 09:46:40 +08:00
|
|
|
|
char maj[MSG_SIZE];
|
|
|
|
|
char min[MSG_SIZE];
|
|
|
|
|
char cls[MSG_SIZE];
|
2017-11-18 07:21:49 +08:00
|
|
|
|
const int indent = 4;
|
2003-07-18 09:46:40 +08:00
|
|
|
|
|
|
|
|
|
/* Get descriptions for the major and minor error numbers */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eget_class_name(err_desc->cls_id, cls, MSG_SIZE) < 0)
|
2003-07-22 09:32:27 +08:00
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eget_msg(err_desc->maj_num, NULL, maj, MSG_SIZE) < 0)
|
2003-07-22 09:32:27 +08:00
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eget_msg(err_desc->min_num, NULL, min, MSG_SIZE) < 0)
|
2003-07-22 09:32:27 +08:00
|
|
|
|
TEST_ERROR;
|
2003-07-18 09:46:40 +08:00
|
|
|
|
|
2011-06-07 23:58:21 +08:00
|
|
|
|
HDfprintf(stream, "%*serror #%03d: %s in %s(): line %u\n",
|
2003-07-18 09:46:40 +08:00
|
|
|
|
indent, "", n, err_desc->file_name,
|
|
|
|
|
err_desc->func_name, err_desc->line);
|
2011-06-07 23:58:21 +08:00
|
|
|
|
HDfprintf(stream, "%*sclass: %s\n", indent * 2, "", cls);
|
|
|
|
|
HDfprintf(stream, "%*smajor: %s\n", indent * 2, "", maj);
|
|
|
|
|
HDfprintf(stream, "%*sminor: %s\n", indent * 2, "", min);
|
2003-07-18 09:46:40 +08:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
2007-04-12 09:59:45 +08:00
|
|
|
|
error:
|
2003-07-18 09:46:40 +08:00
|
|
|
|
return -1;
|
2007-04-12 09:59:45 +08:00
|
|
|
|
} /* end custom_print_cb() */
|
2003-07-15 04:08:27 +08:00
|
|
|
|
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Function: test_create
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Purpose: Test creating an empty error stack
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_create(void)
|
|
|
|
|
{
|
2017-11-18 07:21:49 +08:00
|
|
|
|
const char *err_func = "test_create"; /* Function name for pushing error */
|
|
|
|
|
const char *err_msg = "Error message"; /* Error message for pushing error */
|
|
|
|
|
ssize_t err_num; /* Number of errors on stack */
|
|
|
|
|
hid_t estack_id = -1; /* Error stack ID */
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
|
|
|
|
|
/* Create an empty error stack */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((estack_id = H5Ecreate_stack()) < 0)
|
|
|
|
|
TEST_ERROR
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
|
|
|
|
|
/* Check the number of errors on stack */
|
|
|
|
|
err_num = H5Eget_num(estack_id);
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (err_num != 0)
|
|
|
|
|
TEST_ERROR
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
|
|
|
|
|
/* Push an error with a long description */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Epush(estack_id, __FILE__, err_func, __LINE__, ERR_CLS, ERR_MAJ_TEST, ERR_MIN_SUBROUTINE, "%s", err_msg) < 0)
|
|
|
|
|
TEST_ERROR;
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
|
|
|
|
|
/* Check the number of errors on stack */
|
|
|
|
|
err_num = H5Eget_num(estack_id);
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (err_num != 1)
|
|
|
|
|
TEST_ERROR
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
|
|
|
|
|
/* Clear the error stack */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eclear2(estack_id) < 0)
|
|
|
|
|
TEST_ERROR
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
|
|
|
|
|
/* Check the number of errors on stack */
|
|
|
|
|
err_num = H5Eget_num(estack_id);
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (err_num != 0)
|
|
|
|
|
TEST_ERROR
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
|
|
|
|
|
/* Close error stack */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if(H5Eclose_stack(estack_id) < 0)
|
|
|
|
|
TEST_ERROR
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
return 0;
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
|
|
|
|
|
error:
|
2017-11-18 07:21:49 +08:00
|
|
|
|
return -1;
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
} /* end test_create() */
|
|
|
|
|
|
2010-09-07 23:41:55 +08:00
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_copy
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Test copyinging an error stack
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_copy(void)
|
|
|
|
|
{
|
2017-11-18 07:21:49 +08:00
|
|
|
|
const char *err_func = "test_copy"; /* Function name for pushing error */
|
|
|
|
|
const char *err_msg = "Error message"; /* Error message for pushing error */
|
|
|
|
|
ssize_t err_num; /* Number of errors on stack */
|
|
|
|
|
hid_t estack_id = -1; /* Error stack ID */
|
|
|
|
|
herr_t ret; /* Generic return value */
|
2010-09-07 23:41:55 +08:00
|
|
|
|
|
|
|
|
|
/* Push an error with a long description */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Epush(H5E_DEFAULT, __FILE__, err_func, __LINE__, ERR_CLS, ERR_MAJ_TEST, ERR_MIN_SUBROUTINE, "%s", err_msg) < 0)
|
|
|
|
|
TEST_ERROR;
|
2010-09-07 23:41:55 +08:00
|
|
|
|
|
|
|
|
|
/* Check the number of errors on stack */
|
|
|
|
|
err_num = H5Eget_num(H5E_DEFAULT);
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (err_num != 1)
|
|
|
|
|
TEST_ERROR
|
2010-09-07 23:41:55 +08:00
|
|
|
|
|
|
|
|
|
/* Copy error stack, which clears the original */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((estack_id = H5Eget_current_stack()) < 0)
|
|
|
|
|
TEST_ERROR
|
2010-09-07 23:41:55 +08:00
|
|
|
|
|
|
|
|
|
/* Check the number of errors on stack copy */
|
|
|
|
|
err_num = H5Eget_num(estack_id);
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (err_num != 1)
|
|
|
|
|
TEST_ERROR
|
2010-09-07 23:41:55 +08:00
|
|
|
|
|
|
|
|
|
/* Check the number of errors on original stack */
|
|
|
|
|
err_num = H5Eget_num(H5E_DEFAULT);
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (err_num != 0)
|
|
|
|
|
TEST_ERROR
|
2010-09-07 23:41:55 +08:00
|
|
|
|
|
|
|
|
|
/* Put the stack copy as the default. It closes the stack copy, too. */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eset_current_stack(estack_id) < 0)
|
|
|
|
|
TEST_ERROR
|
2010-09-07 23:41:55 +08:00
|
|
|
|
|
|
|
|
|
/* Check the number of errors on default stack */
|
|
|
|
|
err_num = H5Eget_num(H5E_DEFAULT);
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (err_num != 1)
|
|
|
|
|
TEST_ERROR
|
2010-09-07 23:41:55 +08:00
|
|
|
|
|
|
|
|
|
/* Try to close error stack copy. Should fail because
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* the current H5Eset_current_stack closes the stack to be set.
|
|
|
|
|
*/
|
2010-09-07 23:41:55 +08:00
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
ret = H5Eclose_stack(estack_id);
|
|
|
|
|
} H5E_END_TRY
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (ret >= 0)
|
|
|
|
|
TEST_ERROR
|
2010-09-07 23:41:55 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
return 0;
|
2010-09-07 23:41:55 +08:00
|
|
|
|
|
|
|
|
|
error:
|
2017-11-18 07:21:49 +08:00
|
|
|
|
return -1;
|
2010-09-07 23:41:55 +08:00
|
|
|
|
} /* end test_copy() */
|
|
|
|
|
|
2003-07-15 04:08:27 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Function: close_error
|
2003-07-15 04:08:27 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Purpose: Closes error information.
|
2003-07-15 04:08:27 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
2003-07-15 04:08:27 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2005-08-14 04:53:35 +08:00
|
|
|
|
static herr_t
|
2003-07-15 04:08:27 +08:00
|
|
|
|
close_error(void)
|
|
|
|
|
{
|
2003-07-22 09:32:27 +08:00
|
|
|
|
/* Close major errors, let H5Eunregister_class close minor errors */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eclose_msg(ERR_MAJ_TEST) < 0)
|
2007-04-12 09:59:45 +08:00
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eclose_msg(ERR_MAJ_IO) < 0)
|
2007-04-12 09:59:45 +08:00
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eclose_msg(ERR_MAJ_API) < 0)
|
2007-04-12 09:59:45 +08:00
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eunregister_class(ERR_CLS) < 0)
|
2007-04-12 09:59:45 +08:00
|
|
|
|
TEST_ERROR;
|
2003-07-15 04:08:27 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Eunregister_class(ERR_CLS2) < 0)
|
2009-04-23 02:39:10 +08:00
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
2003-07-11 04:15:46 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
2007-04-12 09:59:45 +08:00
|
|
|
|
error:
|
2003-07-11 04:15:46 +08:00
|
|
|
|
return -1;
|
2007-04-12 09:59:45 +08:00
|
|
|
|
} /* end close_error() */
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2011-06-03 23:58:49 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Function: test_filter_error
|
2011-06-03 23:58:49 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Purpose: Make sure the error message prints out the filter name
|
2011-06-03 23:58:49 +08:00
|
|
|
|
* when the existent file is opened but the filter isn't
|
|
|
|
|
* registered. The existent file was created with
|
|
|
|
|
* gen_filters.c.
|
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
2011-06-03 23:58:49 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_filter_error(const char *fname)
|
|
|
|
|
{
|
|
|
|
|
const char *pathname = H5_get_srcdir_filename(fname); /* Corrected test file name */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
hid_t file = -1;
|
|
|
|
|
hid_t dataset = -1;
|
2011-06-03 23:58:49 +08:00
|
|
|
|
int buf[20];
|
|
|
|
|
|
2011-06-07 23:58:21 +08:00
|
|
|
|
HDfprintf(stderr, "\nTesting error message during data reading when filter isn't registered\n");
|
2011-06-03 23:58:49 +08:00
|
|
|
|
|
|
|
|
|
/* Open the file */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((file = H5Fopen(pathname, H5F_ACC_RDONLY, H5P_DEFAULT)) < 0)
|
2011-06-03 23:58:49 +08:00
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
/* Open the regular dataset */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((dataset = H5Dopen2(file, DSET_FILTER_NAME, H5P_DEFAULT)) < 0)
|
2011-06-03 23:58:49 +08:00
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf) >= 0)
|
|
|
|
|
TEST_ERROR;
|
2011-06-03 23:58:49 +08:00
|
|
|
|
|
|
|
|
|
/* Close/release resources */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Dclose(dataset) < 0)
|
2011-06-03 23:58:49 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Fclose(file) < 0)
|
2011-06-03 23:58:49 +08:00
|
|
|
|
TEST_ERROR
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
return -1;
|
2017-11-18 07:21:49 +08:00
|
|
|
|
} /* end test_filter_error() */
|
2011-06-03 23:58:49 +08:00
|
|
|
|
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Function: main
|
2003-07-11 04:15:46 +08:00
|
|
|
|
*
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* Purpose: Test error API.
|
2003-07-11 04:15:46 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
main(void)
|
|
|
|
|
{
|
2017-11-18 07:21:49 +08:00
|
|
|
|
hid_t file = -1;
|
|
|
|
|
hid_t fapl = -1;
|
|
|
|
|
hid_t estack_id = -1;
|
|
|
|
|
char filename[1024];
|
|
|
|
|
const char *FUNC_main = "main";
|
2003-07-16 06:17:09 +08:00
|
|
|
|
|
2011-06-07 23:58:21 +08:00
|
|
|
|
HDfprintf(stderr, " This program tests the Error API. There're supposed to be some error messages\n");
|
2003-07-22 09:32:27 +08:00
|
|
|
|
|
|
|
|
|
/* Initialize errors */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (init_error() < 0)
|
2007-04-12 09:59:45 +08:00
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if ((fapl = h5_fileaccess()) < 0)
|
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
h5_fixname(FILENAME[0], fapl, filename, sizeof(filename));
|
|
|
|
|
if ((file = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl)) < 0)
|
|
|
|
|
TEST_ERROR;
|
2003-07-26 10:55:47 +08:00
|
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
|
/* Test error stack */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (error_stack() < 0) {
|
2003-07-22 09:32:27 +08:00
|
|
|
|
/* Push an error onto error stack */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Epush(ERR_STACK, __FILE__, FUNC_main, __LINE__, ERR_CLS, ERR_MAJ_TEST, ERR_MIN_ERRSTACK,
|
|
|
|
|
"Error stack test failed") < 0)
|
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2003-07-22 09:32:27 +08:00
|
|
|
|
/* Delete an error from the top of error stack */
|
2003-07-18 09:46:40 +08:00
|
|
|
|
H5Epop(ERR_STACK, 1);
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
2010-01-30 12:29:13 +08:00
|
|
|
|
/* Make sure we can use other class's major or minor errors. */
|
2009-04-23 02:39:10 +08:00
|
|
|
|
H5Epush(ERR_STACK, __FILE__, FUNC_main, __LINE__, ERR_CLS2, ERR_MAJ_TEST, ERR_MIN_ERRSTACK,
|
|
|
|
|
"Error stack test failed");
|
|
|
|
|
|
2003-07-22 09:32:27 +08:00
|
|
|
|
/* Print out the errors on stack */
|
2003-07-18 09:46:40 +08:00
|
|
|
|
dump_error(ERR_STACK);
|
2003-07-22 09:32:27 +08:00
|
|
|
|
|
|
|
|
|
/* Empty error stack */
|
2007-04-12 09:59:45 +08:00
|
|
|
|
H5Eclear2(ERR_STACK);
|
2003-07-22 09:32:27 +08:00
|
|
|
|
|
|
|
|
|
/* Close error stack */
|
2003-07-18 09:46:40 +08:00
|
|
|
|
H5Eclose_stack(ERR_STACK);
|
2007-04-12 09:59:45 +08:00
|
|
|
|
} /* end if */
|
2003-07-11 04:15:46 +08:00
|
|
|
|
|
2003-07-22 09:32:27 +08:00
|
|
|
|
/* Test error API */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (test_error(file) < 0) {
|
2007-08-22 05:08:27 +08:00
|
|
|
|
H5Epush(H5E_DEFAULT, __FILE__, FUNC_main, __LINE__, ERR_CLS, ERR_MAJ_TEST, ERR_MIN_SUBROUTINE,
|
2003-07-18 09:46:40 +08:00
|
|
|
|
"Error test failed, %s", "it's wrong");
|
2003-07-22 09:32:27 +08:00
|
|
|
|
estack_id = H5Eget_current_stack();
|
2007-04-12 09:59:45 +08:00
|
|
|
|
H5Eprint2(estack_id, stderr);
|
2003-07-22 09:32:27 +08:00
|
|
|
|
H5Eclose_stack(estack_id);
|
2017-11-18 07:21:49 +08:00
|
|
|
|
}
|
2005-01-15 03:36:01 +08:00
|
|
|
|
|
|
|
|
|
/* Test pushing a very long error description */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (test_long_desc() < 0)
|
|
|
|
|
TEST_ERROR;
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
/* Test creating a new error stack */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (test_create() < 0)
|
|
|
|
|
TEST_ERROR;
|
[svn-r14230] Description:
Add H5Ecreate_stack() API routine, to fill a minor gap in the error
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
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2007-11-02 03:27:15 +08:00
|
|
|
|
|
2010-09-07 23:41:55 +08:00
|
|
|
|
/* Test copying a new error stack */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (test_copy() < 0)
|
|
|
|
|
TEST_ERROR;
|
2010-09-07 23:41:55 +08:00
|
|
|
|
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (H5Fclose(file) < 0)
|
|
|
|
|
TEST_ERROR;
|
2003-07-12 05:04:38 +08:00
|
|
|
|
|
2003-07-22 09:32:27 +08:00
|
|
|
|
/* Close error information */
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (close_error() < 0)
|
2007-04-12 09:59:45 +08:00
|
|
|
|
TEST_ERROR;
|
2003-07-22 09:32:27 +08:00
|
|
|
|
|
2011-06-07 01:05:37 +08:00
|
|
|
|
/* Test error message during data reading when filter isn't registered
|
|
|
|
|
* Use default FAPL to avoid some VFD drivers by the check-vfd test because
|
2017-11-18 07:21:49 +08:00
|
|
|
|
* the test file was pre-generated.
|
|
|
|
|
*/
|
2011-06-14 05:28:49 +08:00
|
|
|
|
h5_fixname(DATAFILE, H5P_DEFAULT, filename, sizeof filename);
|
2017-11-18 07:21:49 +08:00
|
|
|
|
if (test_filter_error(filename) < 0)
|
2011-06-03 23:58:49 +08:00
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
2015-09-14 11:58:59 +08:00
|
|
|
|
h5_clean_files(FILENAME, fapl);
|
2011-06-03 23:58:49 +08:00
|
|
|
|
|
2011-06-07 23:58:21 +08:00
|
|
|
|
HDfprintf(stderr, "\nAll error API tests passed.\n");
|
2003-07-11 04:15:46 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
2007-04-12 09:59:45 +08:00
|
|
|
|
error:
|
2011-06-07 23:58:21 +08:00
|
|
|
|
HDfprintf(stderr, "\n***** ERROR TEST FAILED (real problem)! *****\n");
|
2003-07-11 04:15:46 +08:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
2008-10-31 04:49:08 +08:00
|
|
|
|
#endif /* H5_USE_16_API */
|
2007-04-12 09:59:45 +08:00
|
|
|
|
|