diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2005-09-21 13:41:09 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2005-09-21 13:41:09 (GMT) |
commit | d09ca66a26e1c7cd57d40fa3fc34f2b7b4c40986 (patch) | |
tree | b24f9f73985b4fed56da48082f163a822b9595c4 /testpar/testphdf5.c | |
parent | 4114f888c63ca1fed13d84a93c4bdf173cad443e (diff) | |
download | hdf5-d09ca66a26e1c7cd57d40fa3fc34f2b7b4c40986.zip hdf5-d09ca66a26e1c7cd57d40fa3fc34f2b7b4c40986.tar.gz hdf5-d09ca66a26e1c7cd57d40fa3fc34f2b7b4c40986.tar.bz2 |
[svn-r11448] Purpose:
new features
Description:
add support for compiling the library and testphdf5 in Windows
Solution:
Platforms tested:
Linux
AIX
Solaris
Windows VC6
Misc. update:
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r-- | testpar/testphdf5.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index 811981e..0d7b38f 100644 --- a/testpar/testphdf5.c +++ b/testpar/testphdf5.c @@ -410,8 +410,14 @@ int main(int argc, char **argv) "collective group and dataset write", &collngroups_params); AddTest("ingrpr", independent_group_read, NULL, "independent group and dataset read", &collngroups_params); - AddTest("bigdset", big_dataset, NULL, - "big dataset test", PARATESTFILE); + /* By default, do not run big dataset on WIN32. */ +#ifdef WIN32 + AddTest("-bigdset", big_dataset, NULL, + "big dataset test", PARATESTFILE); +#else + AddTest("bigdset", big_dataset, NULL, + "big dataset test", PARATESTFILE); +#endif AddTest("fill", dataset_fillvalue, NULL, "dataset fill value", PARATESTFILE); |