diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-29 23:19:22 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-29 23:19:22 (GMT) |
commit | 064648a1f6c43e36da540ca28136b72bd038084e (patch) | |
tree | 511c515642d54414695d5e5a957422432822a50e /test/testhdf5.c | |
parent | 38a47455632a9845c5ddce1462e541e46c308cdc (diff) | |
download | hdf5-064648a1f6c43e36da540ca28136b72bd038084e.zip hdf5-064648a1f6c43e36da540ca28136b72bd038084e.tar.gz hdf5-064648a1f6c43e36da540ca28136b72bd038084e.tar.bz2 |
[svn-r59] Added [basic] testing for H5T interface, which appears to be working well.
Diffstat (limited to 'test/testhdf5.c')
-rw-r--r-- | test/testhdf5.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/testhdf5.c b/test/testhdf5.c index 21dd790..de0e248 100644 --- a/test/testhdf5.c +++ b/test/testhdf5.c @@ -157,6 +157,7 @@ int main(int argc, char *argv[]) InitTest("heap", test_heap, "Object and Name Heaps"); InitTest("ohdr", test_ohdr, "Object Headers"); InitTest("stab", test_stab, "Symbol Tables"); + InitTest("h5t", test_h5t, "Datatypes"); Verbosity = 4; /* Default Verbosity is Low */ H5version(&major, &minor, &release, &patch); @@ -292,9 +293,9 @@ int main(int argc, char *argv[]) { MESSAGE(2, ("\nCleaning Up...\n\n")); #if !(defined DOS386 | defined WIN386) - system("rm -f *.hdf *.tmp"); + system("rm -f *.h5 *.tmp"); #else /* OLD_WAY */ - remove("*.hdf"); + remove("*.h5"); remove("*.tmp"); #endif /* OLD_WAY */ } /* end if */ |