mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r14393] Changed the way that the file name string is represented.
Tested on smirom.
This commit is contained in:
parent
e982a364fe
commit
905ff444f4
@ -27,6 +27,8 @@
|
||||
|
||||
#include "testhdf5.h"
|
||||
|
||||
#define FILENAME "coord.h5"
|
||||
|
||||
/***********************************************************
|
||||
**
|
||||
** test_single_end(): Test full hyperslab selection of only
|
||||
@ -473,7 +475,7 @@ void test_coords(void)
|
||||
hid_t fid;
|
||||
herr_t ret; /* Generic error return */
|
||||
|
||||
fid = H5Fcreate("coord.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
||||
fid = H5Fcreate(FILENAME, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
||||
CHECK(fid, FAIL, "H5Fcreate");
|
||||
|
||||
test_single_end(fid);
|
||||
@ -501,5 +503,5 @@ void test_coords(void)
|
||||
void
|
||||
cleanup_coords(void)
|
||||
{
|
||||
remove("coord.h5");
|
||||
remove(FILENAME);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user