From e59b3d3bcf0f95e1c2d90997280135a3ae8cdfee Mon Sep 17 00:00:00 2001
From: Pedro Vicente Nunes <pvn@hdfgroup.org>
Date: Tue, 6 Jan 2004 13:18:05 -0500
Subject: [PATCH] [svn-r8025] Purpose: small fix

Description:
the main prog had some repeated code

Solution:

Platforms tested:
linux
solaris
AIX

Misc. update:
---
 tools/h5repack/testh5repack_main.c | 27 ++++-----------------------
 1 file changed, 4 insertions(+), 23 deletions(-)

diff --git a/tools/h5repack/testh5repack_main.c b/tools/h5repack/testh5repack_main.c
index d18bd5bf4e..0ab5f1cb3c 100644
--- a/tools/h5repack/testh5repack_main.c
+++ b/tools/h5repack/testh5repack_main.c
@@ -713,12 +713,10 @@ test_filterqueue(void)
   TEST_ERROR;
  if (h5repack_addfilter("dset1:SHUF",&pack_options)<0)
   TEST_ERROR;
- if (h5repack_addfilter("dset1:GZIP 1",&pack_options)<0)
-  TEST_ERROR;
-#if 0
  if (h5repack_addfilter("dset1:SZIP 8",&pack_options)<0)
   TEST_ERROR;
-#endif
+ if (h5repack_addfilter("dset1:GZIP 1",&pack_options)<0)
+  TEST_ERROR;
  if (h5repack(FNAME4,FNAME4OUT,&pack_options)<0)
   TEST_ERROR;
  if (h5diff(FNAME4,FNAME4OUT,NULL,NULL,&diff_options) == 1)
@@ -745,7 +743,7 @@ error:
  *  Failure: non-zero
  *
  * Programmer: Pedro Vicente <pvn@ncsa.uiuc.edu>
- *             January, 5, 2004
+ *             January, 6, 2004
  *
  *-------------------------------------------------------------------------
  */
@@ -785,22 +783,7 @@ int main (void)
 
  /* test a copy with layout COMPA options */
  nerrors += test_layout_compact();
-
- /* test a copy with the shuffle filter */
- nerrors += test_filter_shuffle();
-
- /* test a copy with the checksum filter */
- nerrors += test_filter_checksum();
-
- /* test a copy with layout CHUNK options */
- nerrors += test_layout_chunked();
-
- /* test a copy with layout CONTI options */
- nerrors += test_layout_contiguous();
-
- /* test a copy with layout COMPA options */
- nerrors += test_layout_compact();
-
+ 
  /* test a copy with all available filters */
  nerrors += test_filterqueue();
 
@@ -815,8 +798,6 @@ error:
  puts("***** H5REPACK TESTS FAILED *****");
  return 1;
 
-
- return 0;
 }