diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-05-05 22:04:14 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2003-05-05 22:04:14 (GMT) |
commit | 1d06baa334bffeabf4aaa7ff7cccf73be514d7b1 (patch) | |
tree | 4ae563dec7665a57c142084801ab94edeb299118 /test/dsets.c | |
parent | 117444cc2547ea3a4c7b8cb5042c4c186283edc5 (diff) | |
download | hdf5-1d06baa334bffeabf4aaa7ff7cccf73be514d7b1.zip hdf5-1d06baa334bffeabf4aaa7ff7cccf73be514d7b1.tar.gz hdf5-1d06baa334bffeabf4aaa7ff7cccf73be514d7b1.tar.bz2 |
[svn-r6798] Purpose:
code warrior port
Description:
added a flag H5_NO_SHARED_WRITING, it is defined only for CW in the H5pubconf.h
this avoids doing some tests for CW that fail on shared writing
Solution:
Platforms tested:
windows (cw and ms)
Linux 2.4 (rockaway)
SunOS 5.7 (arabica)
IRIX 6.5 (modi4)
Misc. update:
Diffstat (limited to 'test/dsets.c')
-rw-r--r-- | test/dsets.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/dsets.c b/test/dsets.c index 24ed910..c1d8fb8 100644 --- a/test/dsets.c +++ b/test/dsets.c @@ -2814,7 +2814,9 @@ main(void) if (H5Gclose (grp)<0) goto error; nerrors += test_create(file)<0 ?1:0; +#ifndef H5_NO_SHARED_WRITING nerrors += test_simple_io(file, filename)<0 ?1:0; +#endif /* H5_NO_SHARED_WRITING */ nerrors += test_compact_io(fapl)<0 ?1:0; nerrors += test_max_compact(fapl)<0 ?1:0; nerrors += test_tconv(file)<0 ?1:0; @@ -2822,11 +2824,15 @@ main(void) nerrors += test_onebyte_shuffle(file)<0 ?1:0; nerrors += test_multiopen (file)<0 ?1:0; nerrors += test_types(file)<0 ?1:0; +#ifndef H5_NO_SHARED_WRITING nerrors += test_userblock_offset(fapl)<0 ?1:0; +#endif /* H5_NO_SHARED_WRITING */ nerrors += test_missing_filter(file)<0 ?1:0; #ifndef H5_WANT_H5_V1_4_COMPAT nerrors += test_can_apply(file)<0 ?1:0; - nerrors += test_set_local(filename,fapl)<0 ?1:0; +#ifndef H5_NO_SHARED_WRITING + nerrors += test_set_local(filename,fapl)<0 ?1:0; +#endif /* H5_NO_SHARED_WRITING */ #endif /* H5_WANT_H5_V1_4_COMPAT */ nerrors += test_can_apply_szip(file)<0 ?1:0; |