diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-06-17 19:36:57 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-06-17 19:36:57 (GMT) |
commit | bd867cf9f6c14077357a7306e4a236a72c938ec9 (patch) | |
tree | 399cf43e8ce9664e8d6b234695dfde1cb2644d11 /test/testhdf5.c | |
parent | 92fba3f6630d28f7f82c6f57caf81e9bad654d69 (diff) | |
download | hdf5-bd867cf9f6c14077357a7306e4a236a72c938ec9.zip hdf5-bd867cf9f6c14077357a7306e4a236a72c938ec9.tar.gz hdf5-bd867cf9f6c14077357a7306e4a236a72c938ec9.tar.bz2 |
[svn-r10944] Purpose:
Bug fix
Description:
tid.c is a test for user-defined hid_t's. It should be part of the
testhdf5 tests, but was not being run.
It also had a couple of minor bugs.
Solution:
Added id test to testhdf5 and fixed bugs.
Platforms tested:
mir, sleipnir, modi4
Diffstat (limited to 'test/testhdf5.c')
-rw-r--r-- | test/testhdf5.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/testhdf5.c b/test/testhdf5.c index 0164b88..7022163 100644 --- a/test/testhdf5.c +++ b/test/testhdf5.c @@ -61,6 +61,7 @@ main(int argc, char *argv[]) AddTest("array", test_array, cleanup_array, "Array Datatypes", NULL); AddTest("genprop", test_genprop, cleanup_genprop, "Generic Properties", NULL); AddTest("unicode", test_unicode, cleanup_unicode, "UTF-8 Encoding", NULL); + AddTest("id", test_ids, NULL, "User-Created Identifiers", NULL); AddTest("misc", test_misc, cleanup_misc, "Miscellaneous", NULL); /* Display testing information */ |