diff options
author | Robb Matzke <matzke@llnl.gov> | 1997-12-10 22:41:56 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1997-12-10 22:41:56 (GMT) |
commit | d49ed7bedfdb13c3a5d58cae8def4d5dc1eb8bbf (patch) | |
tree | ee8d51ce5060470863fcb74e92f262271ba5cd77 /test/theap.c | |
parent | 082dd8cda9ef3d49be23dfce49e10dd30d0758bc (diff) | |
download | hdf5-d49ed7bedfdb13c3a5d58cae8def4d5dc1eb8bbf.zip hdf5-d49ed7bedfdb13c3a5d58cae8def4d5dc1eb8bbf.tar.gz hdf5-d49ed7bedfdb13c3a5d58cae8def4d5dc1eb8bbf.tar.bz2 |
[svn-r140] ./test/Makefile.in
Added new tests.
./test/dsets.c NEW
Tests datasets.
./test/dspace.c NEW
Tests data spaces.
./test/dtypes.c NEW
Tests data types.
./test/istore.c
./test/tfile.c
./test/th5p.c
./test/theap.c
./test/tohdr.c
Changed to work with new function names.
./test/testhdf5.c
Removed the data type and dataset tests since they're now in
their own files. They had to be rewritten because of extensive
changes to those interfaces.
Diffstat (limited to 'test/theap.c')
-rw-r--r-- | test/theap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/theap.c b/test/theap.c index d46726f..5a5bb72 100644 --- a/test/theap.c +++ b/test/theap.c @@ -60,7 +60,7 @@ test_heap (void) CHECK (f, NULL, "H5Aatom_object"); /* Create a new heap */ - status = H5H_new (f, H5H_LOCAL, 0, &heap_addr/*out*/); + status = H5H_create (f, H5H_LOCAL, 0, &heap_addr/*out*/); CHECK_I (status, "H5H_new"); /* Add stuff to the heap */ |