summaryrefslogtreecommitdiffstats
path: root/c++/test/dsets.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2001-05-26 06:39:22 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2001-05-26 06:39:22 (GMT)
commit22131bb2ddf52c9ab3ab2c7e59227651d13b8369 (patch)
tree40873032f00076745f1b263c0c18da30cc0b95aa /c++/test/dsets.cpp
parent4101a3561f9925bdc432d280dfc7b0c682a3472f (diff)
downloadhdf5-22131bb2ddf52c9ab3ab2c7e59227651d13b8369.zip
hdf5-22131bb2ddf52c9ab3ab2c7e59227651d13b8369.tar.gz
hdf5-22131bb2ddf52c9ab3ab2c7e59227651d13b8369.tar.bz2
[svn-r3945]
Purpose: Changed due to bug fixed Description: The dsets.cpp/test_compression test was disabled because it failed on eirene - some variable changed to a very large value. Solution: The problem was fixed by Bill. So I removed the #if defined (__linux__) to enable the test_compression again. Platforms tested: eirene (linux)
Diffstat (limited to 'c++/test/dsets.cpp')
-rw-r--r--c++/test/dsets.cpp20
1 files changed, 1 insertions, 19 deletions
diff --git a/c++/test/dsets.cpp b/c++/test/dsets.cpp
index e8ece6a..d93b410 100644
--- a/c++/test/dsets.cpp
+++ b/c++/test/dsets.cpp
@@ -1020,13 +1020,6 @@ int test_report( int nerrors )
*
*-------------------------------------------------------------------------
*/
-static hid_t tempid = H5T_STD_B8LE;
-// the following statement caused seg. fault, need to check into - BMR
-//static PredType temp = PredType::STD_B8LE;
-// because PredType::STD_B8LE was not defined yet, so ref_counter is nil
-// and it'll fail when the ref_counter is being incremented
-// this can be a problem; must check ref_counter before increment or decrement
-
int
main(void)
{
@@ -1069,18 +1062,7 @@ main(void)
nerrors += test_create(file)<0 ?1:0;
nerrors += test_simple_io(file)<0 ?1:0;
nerrors += test_tconv(file)<0 ?1:0;
-
- /**** Temporarily disable compresion (write) on Linux ****/
- /* A call to HDmemcpy by H5Dwrite in this test failed because of
- * some kind of type conversion. Currently, there is no known
- * way to fix it, so we disable the entire test for Linux.
- * Note that the hdf5 1.5 branch doesn't fail, however.
- * BMR - Mar 27, 01
- */
-#if !defined (__linux__)
- nerrors += test_compression(file)<0 ?1:0;
-#endif
-
+ nerrors += test_compression(file)<0 ?1:0;
nerrors += test_multiopen (file)<0 ?1:0;
nerrors += test_types(file)<0 ?1:0;