diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/.distdep | 26 | ||||
-rw-r--r-- | test/dsets.c | 4 |
2 files changed, 14 insertions, 16 deletions
diff --git a/test/.distdep b/test/.distdep index c16495f..b04981b 100644 --- a/test/.distdep +++ b/test/.distdep @@ -423,8 +423,8 @@ mtime.o: \ ../src/H5Spublic.h \ ../src/H5Tpublic.h \ ../src/H5private.h -dsets.o: \ - dsets.c \ +links.o: \ + links.c \ ../src/hdf5.h \ ../src/H5public.h \ ../src/H5config.h \ @@ -445,8 +445,8 @@ dsets.o: \ ../src/H5Zpublic.h \ ../src/H5Spublic.h \ ../src/H5Tpublic.h -links.o: \ - links.c \ +dtypes.o: \ + dtypes.c \ ../src/hdf5.h \ ../src/H5public.h \ ../src/H5config.h \ @@ -466,9 +466,14 @@ links.o: \ ../src/H5Ppublic.h \ ../src/H5Zpublic.h \ ../src/H5Spublic.h \ - ../src/H5Tpublic.h -dtypes.o: \ - dtypes.c \ + ../src/H5Tpublic.h \ + ../src/H5Tpkg.h \ + ../src/H5HGprivate.h \ + ../src/H5Fprivate.h \ + ../src/H5private.h \ + ../src/H5Tprivate.h +dsets.o: \ + dsets.c \ ../src/hdf5.h \ ../src/H5public.h \ ../src/H5config.h \ @@ -488,9 +493,4 @@ dtypes.o: \ ../src/H5Ppublic.h \ ../src/H5Zpublic.h \ ../src/H5Spublic.h \ - ../src/H5Tpublic.h \ - ../src/H5Tpkg.h \ - ../src/H5HGprivate.h \ - ../src/H5Fprivate.h \ - ../src/H5private.h \ - ../src/H5Tprivate.h + ../src/H5Tpublic.h diff --git a/test/dsets.c b/test/dsets.c index 7171b18..cb27004 100644 --- a/test/dsets.c +++ b/test/dsets.c @@ -814,8 +814,6 @@ main(void) H5Gset_comment(grp, ".", "Causes diagnostic messages to be emitted"); H5Gclose (grp); - - status = test_create(file); nerrors += status < 0 ? 1 : 0; @@ -824,7 +822,7 @@ main(void) status = test_tconv(file); nerrors += status < 0 ? 1 : 0; - + status = test_compression(file); nerrors += status < 0 ? 1 : 0; |