summaryrefslogtreecommitdiffstats
path: root/windows/tools/repacktest.BAT
blob: 7daf7f1522c16e28cb33cb8f9788fbed480c9d84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
@REM Copyright by the Board of Trustees of the University of Illinois.
@REM All rights reserved.
@REM
@REM This file is part of HDF5.  The full HDF5 copyright notice, including
@REM terms governing use, modification, and redistribution, is contained in
@REM the files COPYING and Copyright.html.  COPYING can be found at the root
@REM of the source code distribution tree; Copyright.html can be found at the
@REM root level of an installed copy of the electronic HDF5 document set and
@REM is linked from the top-level documents page.  It can also be found at
@REM http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html.  If you do not have
@REM access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu.

@ ECHO OFF

REM The Dynamic Discovery of Szip Encoder features is implemented in this batch file.
REM We do not need to manually set HDF5_SZIP_ENCODE environment variable.
REM We will check whether the SZIP library available includes encoder or not by 
REM calling the szip encoder detecting executable file testh5repack_detect_szip(dll).exe
REM and check the printed value.
REM If the printed value is "yes", then the SZIP library has encoder, HDF5_SZIP_ENCODE will be set as 1.
REM Otherwise,  HDF5_SZIP_ENCODE will be set as 0, and some tests will be skipped.

FOR /F "delims=" %%a in ('testfiles\testh5repack_detect_szip%2\%1\testh5repack_detect_szip%2.exe') Do Set "Output=%%a"
if "%Output%"=="yes" (
	Set HDF5_SZIP_ENCODE=1
)	else (
	Set HDF5_SZIP_ENCODE=0
)

REM testfiles\h5repacktst\%1\h5repacktst

mkdir temptest
type nul > temptest\empty.txt

REM For test1.h5 and test2.h5, the output will be "Some objects are not comparable
REM but actually there is no difference between two compared file"
type nul > temptest\notcomparable.txt
echo -------------------------------->>temptest\notcomparable.txt
echo Some objects are not comparable>> temptest\notcomparable.txt
echo -------------------------------->>temptest\notcomparable.txt
echo Use -v for a list of objects.>> temptest\notcomparable.txt

type nul > repacktest%2_%1.txt
echo ========================================== >> repacktest%2_%1.txt
echo Testing repacktest.bat >> repacktest%2_%1.txt
echo ========================================== >> repacktest%2_%1.txt

cd h5repack%2\%1

REM
REM The tests
REM We use the files generated by h5repack test
REM Each run generates "out.test*.h5" and the tool h5diff is used to
REM compare the input and output files.  The output from tool h5diff is 
REM redirected to a file, which should be an empty file when the input 
REM and output files are identical.  We can check whether the h5diff output
REM file is empty so we can know whether h5repack test passed.

REM copy files (these files have no filters; test2.h5 has copied references that h5diff detects)
REM TOOLTEST test0.h5
h5repack%2 -i ..\..\testfiles\test0.h5 -o ..\..\temptest\out.test0.h5
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test0.h5 ..\..\temptest\out.test0.h5 > ..\..\temptest\test0.results 2>..\..\temptest\test0_error.results
more ..\..\temptest\test0_error.results >> ..\..\temptest\test0.results
fc ..\..\temptest\test0.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test0.h5                                              PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test0.h5                                              FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test0.h5
del ..\..\temptest\test0.results
del ..\..\temptest\test0_error.results

REM TOOLTEST test1.h5
h5repack%2 -i ..\..\testfiles\test1.h5 -o ..\..\temptest\out.test1.h5
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test1.h5 ..\..\temptest\out.test1.h5 > ..\..\temptest\test1.results 2>..\..\temptest\test1_error.results
more ..\..\temptest\test1_error.results >> ..\..\temptest\test1.results
fc ..\..\temptest\test1.results ..\..\temptest\notcomparable.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test1.h5                                              PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test1.h5                                              FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test1.h5
del ..\..\temptest\test1.results
del ..\..\temptest\test1_error.results

REM TOOLTEST test2.h5
h5repack%2 -i ..\..\testfiles\test2.h5 -o ..\..\temptest\out.test2.h5
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test2.h5 ..\..\temptest\out.test2.h5 > ..\..\temptest\test2.results 2>..\..\temptest\test2_error.results
more ..\..\temptest\test2_error.results >> ..\..\temptest\test2.results
fc ..\..\temptest\test2.results ..\..\temptest\notcomparable.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test2.h5                                              PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test2.h5                                              FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test2.h5
del ..\..\temptest\test2.results
del ..\..\temptest\test2_error.results

REM TOOLTEST test3.h5
h5repack%2 -i ..\..\testfiles\test3.h5 -o ..\..\temptest\out.test3.h5 
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test3.h5 ..\..\temptest\out.test3.h5 > ..\..\temptest\test3.results 2>..\..\temptest\test3_error.results
more ..\..\temptest\test3_error.results >> ..\..\temptest\test3.results
fc ..\..\temptest\test3.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test3.h5                                              PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test3.h5                                              FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test3.h5
del ..\..\temptest\test3.results
del ..\..\temptest\test3_error.results

REM TOOLTEST test4.h5
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5                                              PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5                                              FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM TOOLTEST test5.h5
h5repack%2 -i ..\..\testfiles\test5.h5 -o ..\..\temptest\out.test5.h5
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test5.h5 ..\..\temptest\out.test5.h5 > ..\..\temptest\test5.results 2>..\..\temptest\test5_error.results
more ..\..\temptest\test5_error.results >> ..\..\temptest\test5.results
fc ..\..\temptest\test5.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test5.h5                                              PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test5.h5                                              FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test5.h5
del ..\..\temptest\test5.results
del ..\..\temptest\test5_error.results

REM use test4.h5 to write some filters (this file has no filters)
REM gzip with individual object
REM TOOLTEST test4.h5 -f dset1:GZIP=1  -l dset1:CHUNK=20x10
if "%HDF5_EXT_ZLIB%"=="" GOTO NEXTSTEP1
if %HDF5_EXT_ZLIB%==zlib.lib (
    h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -f dset1:GZIP=1  -l dset1:CHUNK=20x10
    ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
    more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
    fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
    if %ERRORLEVEL%==0 (
       echo Testing h5repack test4.h5 -f dset1:GZIP=1  -l dset1:CHUNK=20x10        PASSED >> ..\..\repacktest%2_%1.txt
    ) else (
        echo Testing h5repack test4.h5 -f dset1:GZIP=1  -l dset1:CHUNK=20x10        FAILED >> ..\..\repacktest%2_%1.txt
        more temp.txt >> ..\..\repacktest%2_%1.txt
    )
    del temp.txt
    del ..\..\temptest\out.test4.h5
    del ..\..\temptest\test4.results
    del ..\..\temptest\test4_error.results
    GOTO NEXTSTEP2
) else (
    echo Testing h5repack test4.h5 -f dset1:GZIP=1  -l dset1:CHUNK=20x10        -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP2
)

:NEXTSTEP1
echo Testing h5repack test4.h5 -f dset1:GZIP=1  -l dset1:CHUNK=20x10        -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP2

REM gzip for all
REM TOOLTEST test4.h5 -f GZIP=1
if "%HDF5_EXT_ZLIB%"=="" GOTO NEXTSTEP3
if %HDF5_EXT_ZLIB%==zlib.lib (
    h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -f GZIP=1
    ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
    more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
    fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
    if %ERRORLEVEL%==0 (
       echo Testing h5repack test4.h5 -f GZIP=1                                    PASSED >> ..\..\repacktest%2_%1.txt
    ) else (
        echo Testing h5repack test4.h5 -f GZIP=1                                    FAILED >> ..\..\repacktest%2_%1.txt
        more temp.txt >> ..\..\repacktest%2_%1.txt
    )
    del temp.txt
    del ..\..\temptest\out.test4.h5
    del ..\..\temptest\test4.results
    del ..\..\temptest\test4_error.results
    GOTO NEXTSTEP4
) else (
    echo Testing h5repack test4.h5 -f GZIP=1                                    -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP4
)

:NEXTSTEP3
echo Testing h5repack test4.h5 -f GZIP=1                                    -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP4

REM szip with individual object
REM TOOLTEST test4.h5 -f dset2:SZIP=8,EC  -l dset2:CHUNK=20x10
if "%HDF5_EXT_SZIP%"=="" GOTO NEXTSTEP5
if %HDF5_EXT_SZIP%==szlib.lib (
   if %HDF5_SZIP_ENCODE%==1 (
      h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 f dset2:SZIP=8,EC  -l dset2:CHUNK=20x10
      ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
      more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
      fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
      if %ERRORLEVEL%==0 (
         echo Testing h5repack test4.h5 -f dset2:SZIP=8,EC  -l dset2:CHUNK=20x10     PASSED >> ..\..\repacktest%2_%1.txt
      ) else (
          echo Testing h5repack test4.h5 -f dset2:SZIP=8,EC  -l dset2:CHUNK=20x10     FAILED >> ..\..\repacktest%2_%1.txt
          more temp.txt >> ..\..\repacktest%2_%1.txt
      )
      del temp.txt
      del ..\..\temptest\out.test4.h5
      del ..\..\temptest\test4.results
      del ..\..\temptest\test4_error.results
      GOTO NEXTSTEP6
      ) else (
          echo Testing h5repack test4.h5 -f dset2:SZIP=8,EC  -l dset2:CHUNK=20x10     -SKIP- >> ..\..\repacktest%2_%1.txt
          GOTO NEXTSTEP6
      )
) else (
    echo Testing h5repack test4.h5 -f dset2:SZIP=8,EC  -l dset2:CHUNK=20x10     -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP6
)

:NEXTSTEP5
echo Testing h5repack test4.h5 -f dset2:SZIP=8,EC  -l dset2:CHUNK=20x10     -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP6

REM szip for all
REM TOOLTEST test4.h5 -f SZIP=8,NN
if "%HDF5_EXT_SZIP%"=="" GOTO NEXTSTEP7
if %HDF5_EXT_SZIP%==szlib.lib (
   if %HDF5_SZIP_ENCODE%==1 (
      h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -f SZIP=8,NN
      ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
      more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
      fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
      if %ERRORLEVEL%==0 (
         echo Testing h5repack test4.h5 -f SZIP=8,NN                                 PASSED >> ..\..\repacktest%2_%1.txt
      ) else (
          echo Testing h5repack test4.h5 -f SZIP=8,NN                                 FAILED >> ..\..\repacktest%2_%1.txt
          more temp.txt >> ..\..\repacktest%2_%1.txt
      )
      del temp.txt
      del ..\..\temptest\out.test4.h5
      del ..\..\temptest\test4.results
      del ..\..\temptest\test4_error.results
      GOTO NEXTSTEP8
      ) else (
          echo Testing h5repack test4.h5 -f SZIP=8,NN                                 -SKIP- >> ..\..\repacktest%2_%1.txt
          GOTO NEXTSTEP8
      )
) else (
    echo Testing h5repack test4.h5 -f SZIP=8,NN                                 -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP8
)

:NEXTSTEP7
echo Testing h5repack test4.h5 -f SZIP=8,NN                                 -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP8

REM shuffle with individual object
REM TOOLTEST test4.h5 -f dset2:SHUF  -l dset2:CHUNK=20x10
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -f dset2:SHUF  -l dset2:CHUNK=20x10
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -f dset2:SHUF  -l dset2:CHUNK=20x10          PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -f dset2:SHUF  -l dset2:CHUNK=20x10          FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM shuffle for all
REM TOOLTEST test4.h5 -f SHUF
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -f SHUF
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -f SHUF                                      PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -f SHUF                                      FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM fletcher32  with individual object
REM TOOLTEST test4.h5 -f dset2:FLET  -l dset2:CHUNK=20x10
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -f dset2:FLET  -l dset2:CHUNK=20x10
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -f dset2:FLET  -l dset2:CHUNK=20x10          PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -f dset2:FLET  -l dset2:CHUNK=20x10          FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM fletcher32 for all
REM TOOLTEST test4.h5 -f FLET
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -f FLET
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -f FLET                                      PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -f FLET                                      FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM all filters
REM TOOLTEST test4.h5 -f dset2:SHUF -f dset2:FLET -f dset2:SZIP=8,NN -f dset2:GZIP=1 -l dset2:CHUNK=20x10
if "%HDF5_EXT_ZLIB%"=="" GOTO NEXTSTEP9
if "%HDF5_EXT_SZIP%"=="" GOTO NEXTSTEP9
if %HDF5_EXT_ZLIB%==zlib.lib (
   if %HDF5_EXT_SZIP%==szlib.lib (
      if %HDF5_SZIP_ENCODE%==1 (
         h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -f dset2:SZIP=8,NN -f dset2:GZIP=1 -l dset2:CHUNK=20x10
         ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
         more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
         fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
         if %ERRORLEVEL%==0 (
            echo Testing h5repack test4.h5 -f dset2:SHUF -f dset2:FLET -f dset2:SZIP=8, PASSED >> ..\..\repacktest%2_%1.txt
         ) else (
             echo Testing h5repack test4.h5 -f dset2:SHUF -f dset2:FLET -f dset2:SZIP=8, FAILED >> ..\..\repacktest%2_%1.txt
             more temp.txt >> ..\..\repacktest%2_%1.txt
         )
         del temp.txt
         del ..\..\temptest\out.test4.h5
         del ..\..\temptest\test4.results
         del ..\..\temptest\test4_error.results
         GOTO NEXTSTEP10
         ) else (
             echo Testing h5repack test4.h5 -f dset2:SHUF -f dset2:FLET -f dset2:SZIP=8, -SKIP- >> ..\..\repacktest%2_%1.txt
             GOTO NEXTSTEP10
         )
      ) else (
          echo Testing h5repack test4.h5 -f dset2:SHUF -f dset2:FLET -f dset2:SZIP=8, -SKIP- >> ..\..\repacktest%2_%1.txt
          GOTO NEXTSTEP10
      )
) else (
    echo Testing h5repack test4.h5 -f dset2:SHUF -f dset2:FLET -f dset2:SZIP=8, -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP10
)

:NEXTSTEP9
echo Testing h5repack test4.h5 -f dset2:SHUF -f dset2:FLET -f dset2:SZIP=8, -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP10

REM ###########################################################
REM # the following tests assume the input files have filters
REM ###########################################################

REM szip copy
REM TOOLTEST test_szip.h5
if "%HDF5_EXT_SZIP%"=="" GOTO NEXTSTEP11
if %HDF5_EXT_SZIP%==szlib.lib (
   if %HDF5_SZIP_ENCODE%==1 (
      h5repack%2 -i ..\..\testfiles\test_szip.h5 -o ..\..\temptest\out.test_szip.h5
      ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test_szip.h5 ..\..\temptest\out.test_szip.h5 > ..\..\temptest\test_szip.results 2>..\..\temptest\test_szip_error.results
      more ..\..\temptest\test_szip_error.results >> ..\..\temptest\test_szip.results
      fc ..\..\temptest\test_szip.results ..\..\temptest\empty.txt >temp.txt
      if %ERRORLEVEL%==0 (
         echo Testing h5repack test_szip.h5                                          PASSED >> ..\..\repacktest%2_%1.txt
      ) else (
         echo Testing h5repack test_szip.h5                                          FAILED >> ..\..\repacktest%2_%1.txt
         more temp.txt >> ..\..\repacktest%2_%1.txt
      )
      del temp.txt
      del ..\..\temptest\out.test_szip.h5
      del ..\..\temptest\test_szip.results
      del ..\..\temptest\test_szip_error.results
      GOTO NEXTSTEP12
      ) else (
          echo Testing h5repack test_szip.h5                                          -SKIP- >> ..\..\repacktest%2_%1.txt
          GOTO NEXTSTEP12
      )
) else (
    echo Testing h5repack test_szip.h5                                          -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP12
)

:NEXTSTEP11
echo Testing h5repack test_szip.h5                                          -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP12
  
REM szip remove
REM TOOLTEST test_szip.h5 -f dset_szip:NONE
if "%HDF5_EXT_SZIP%"=="" GOTO NEXTSTEP13
if %HDF5_EXT_SZIP%==szlib.lib (
   if %HDF5_SZIP_ENCODE%==1 (
      h5repack%2 -i ..\..\testfiles\test_szip.h5 -o ..\..\temptest\out.test_szip.h5 -f dset_szip:NONE
      ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test_szip.h5 ..\..\temptest\out.test_szip.h5 > ..\..\temptest\test_szip.results 2>..\..\temptest\test_szip_error.results
      more ..\..\temptest\test_szip_error.results >> ..\..\temptest\test_szip.results
      fc ..\..\temptest\test_szip.results ..\..\temptest\empty.txt >temp.txt
      if %ERRORLEVEL%==0 (
         echo Testing h5repack test_szip.h5 -f dset_szip:NONE                        PASSED >> ..\..\repacktest%2_%1.txt
      ) else (
         echo Testing h5repack test_szip.h5 -f dset_szip:NONE                        FAILED >> ..\..\repacktest%2_%1.txt
         more temp.txt >> ..\..\repacktest%2_%1.txt
      )
      del temp.txt
      del ..\..\temptest\out.test_szip.h5
      del ..\..\temptest\test_szip.results
      del ..\..\temptest\test_szip_error.results
      GOTO NEXTSTEP14
      ) else (
          echo Testing h5repack test_szip.h5 -f dset_szip:NONE                        -SKIP- >> ..\..\repacktest%2_%1.txt
          GOTO NEXTSTEP14
      )
) else (
    echo Testing h5repack test_szip.h5 -f dset_szip:NONE                        -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP14
)

:NEXTSTEP13
echo Testing h5repack test_szip.h5 -f dset_szip:NONE                        -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP14
  
REM deflate copy
REM TOOLTEST test_deflate.h5
if "%HDF5_EXT_ZLIB%"=="" GOTO NEXTSTEP15
if %HDF5_EXT_ZLIB%==zlib.lib (
   h5repack%2 -i ..\..\testfiles\test_deflate.h5 -o ..\..\temptest\out.test_deflate.h5
   ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test_deflate.h5 ..\..\temptest\out.test_deflate.h5 > ..\..\temptest\test_deflate.results 2>..\..\temptest\test_deflate_error.results
   more ..\..\temptest\test_deflate_error.results >> ..\..\temptest\test_deflate.results
   fc ..\..\temptest\test_deflate.results ..\..\temptest\empty.txt >temp.txt
   if %ERRORLEVEL%==0 (
      echo Testing h5repack test_deflate.h5                                       PASSED >> ..\..\repacktest%2_%1.txt
   ) else (
      echo Testing h5repack test_deflate.h5                                       FAILED >> ..\..\repacktest%2_%1.txt
      more temp.txt >> ..\..\repacktest%2_%1.txt
   )
   del temp.txt
   del ..\..\temptest\out.test_deflate.h5
   del ..\..\temptest\test_deflate.results
   del ..\..\temptest\test_deflate_error.results
   GOTO NEXTSTEP16
) else (
    echo Testing h5repack test_deflate.h5                                       -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP16
)

:NEXTSTEP15
echo Testing h5repack test_deflate.h5                                       -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP16

REM deflate remove
REM TOOLTEST test_deflate.h5 -f dset_deflate:NONE
if "%HDF5_EXT_ZLIB%"=="" GOTO NEXTSTEP17
if %HDF5_EXT_ZLIB%==zlib.lib (
   h5repack%2 -i ..\..\testfiles\test_deflate.h5 -o ..\..\temptest\out.test_deflate.h5 -f dset_deflate:NONE
   ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test_deflate.h5 ..\..\temptest\out.test_deflate.h5 > ..\..\temptest\test_deflate.results 2>..\..\temptest\test_deflate_error.results
   more ..\..\temptest\test_deflate_error.results >> ..\..\temptest\test_deflate.results
   fc ..\..\temptest\test_deflate.results ..\..\temptest\empty.txt >temp.txt
   if %ERRORLEVEL%==0 (
      echo Testing h5repack test_deflate.h5 -f dset_deflate:NONE                  PASSED >> ..\..\repacktest%2_%1.txt
   ) else (
      echo Testing h5repack test_deflate.h5 -f dset_deflate:NONE                  FAILED >> ..\..\repacktest%2_%1.txt
      more temp.txt >> ..\..\repacktest%2_%1.txt
   )
   del temp.txt
   del ..\..\temptest\out.test_deflate.h5
   del ..\..\temptest\test_deflate.results
   del ..\..\temptest\test_deflate_error.results
   GOTO NEXTSTEP18
) else (
    echo Testing h5repack test_deflate.h5 -f dset_deflate:NONE                  -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP18
)

:NEXTSTEP17
echo Testing h5repack test_deflate.h5 -f dset_deflate:NONE                  -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP18
   
REM shuffle copy
REM TOOLTEST test_shuffle.h5
h5repack%2 -i ..\..\testfiles\test_shuffle.h5 -o ..\..\temptest\out.test_shuffle.h5
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test_shuffle.h5 ..\..\temptest\out.test_shuffle.h5 > ..\..\temptest\test_shuffle.results 2>..\..\temptest\test_shuffle_error.results
more ..\..\temptest\test_shuffle_error.results >> ..\..\temptest\test_shuffle.results
fc ..\..\temptest\test_shuffle.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test_shuffle.h5                                       PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test_shuffle.h5                                       FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test_shuffle.h5
del ..\..\temptest\test_shuffle.results
del ..\..\temptest\test_shuffle_error.results

REM shuffle remove
REM TOOLTEST test_shuffle.h5 -f dset_shuffle:NONE
h5repack%2 -i ..\..\testfiles\test_shuffle.h5 -o ..\..\temptest\out.test_shuffle.h5 -f dset_shuffle:NONE
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test_shuffle.h5 ..\..\temptest\out.test_shuffle.h5 > ..\..\temptest\test_shuffle.results 2>..\..\temptest\test_shuffle_error.results
more ..\..\temptest\test_shuffle_error.results >> ..\..\temptest\test_shuffle.results
fc ..\..\temptest\test_shuffle.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test_shuffle.h5 -f dset_shuffle:NONE                  PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test_shuffle.h5 -f dset_shuffle:NONE                  FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test_shuffle.h5
del ..\..\temptest\test_shuffle.results
del ..\..\temptest\test_shuffle_error.results

REM fletcher32 copy
REM TOOLTEST test_fletcher32.h5
h5repack%2 -i ..\..\testfiles\test_fletcher32.h5 -o ..\..\temptest\out.test_fletcher32.h5
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test_fletcher32.h5 ..\..\temptest\out.test_fletcher32.h5 > ..\..\temptest\test_fletcher32.results 2>..\..\temptest\test_fletcher32_error.results
more ..\..\temptest\test_fletcher32_error.results >> ..\..\temptest\test_fletcher32.results
fc ..\..\temptest\test_fletcher32.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test_fletcher32.h5                                    PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test_fletcher32.h5                                    FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test_fletcher32.h5
del ..\..\temptest\test_fletcher32.results
del ..\..\temptest\test_fletcher32_error.results

REM fletcher32 remove
REM TOOLTEST test_fletcher32.h5 -f dset_fletcher32:NONE
h5repack%2 -i ..\..\testfiles\test_fletcher32.h5 -o ..\..\temptest\out.test_fletcher32.h5 -f dset_fletcher32:NONE
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test_fletcher32.h5 ..\..\temptest\out.test_fletcher32.h5 > ..\..\temptest\test_fletcher32.results 2>..\..\temptest\test_fletcher32_error.results
more ..\..\temptest\test_fletcher32_error.results >> ..\..\temptest\test_fletcher32.results
fc ..\..\temptest\test_fletcher32.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test_fletcher32.h5 -f dset_fletcher32:NONE            PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test_fletcher32.h5 -f dset_fletcher32:NONE            FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test_fletcher32.h5
del ..\..\temptest\test_fletcher32.results
del ..\..\temptest\test_fletcher32_error.results

REM remove all  filters
REM TOOLTEST test_all.h5 -f NONE
if "%HDF5_EXT_ZLIB%"=="" GOTO NEXTSTEP19
if "%HDF5_EXT_SZIP%"=="" GOTO NEXTSTEP19
if %HDF5_EXT_ZLIB%==zlib.lib (
   if %HDF5_EXT_SZIP%==szlib.lib (
      if %HDF5_SZIP_ENCODE%==1 (
         h5repack%2 -i ..\..\testfiles\test_all.h5 -o ..\..\temptest\out.test_all.h5 -f NONE
         ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test_all.h5 ..\..\temptest\out.test_all.h5 > ..\..\temptest\test_all.results 2>..\..\temptest\test_all_error.results
         more ..\..\temptest\test_all_error.results >> ..\..\temptest\test_all.results
         fc ..\..\temptest\test_all.results ..\..\temptest\empty.txt >temp.txt
         if %ERRORLEVEL%==0 (
            echo Testing h5repack test_all.h5 -f NONE                                   PASSED >> ..\..\repacktest%2_%1.txt
         ) else (
            echo Testing h5repack test_all.h5 -f NONE                                   FAILED >> ..\..\repacktest%2_%1.txt
            more temp.txt >> ..\..\repacktest%2_%1.txt
         )
         del temp.txt
         del ..\..\temptest\out.test_all.h5
         del ..\..\temptest\test_all.results
         del ..\..\temptest\test_all_error.results
         GOTO NEXTSTEP20
         ) else (
             echo Testing h5repack test_all.h5 -f NONE                                   -SKIP- >> ..\..\repacktest%2_%1.txt
             GOTO NEXTSTEP20
         )
      ) else (
          echo Testing h5repack test_all.h5 -f NONE                                   -SKIP- >> ..\..\repacktest%2_%1.txt
          GOTO NEXTSTEP20
      )
) else (
    echo Testing h5repack test_all.h5 -f NONE                                   -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP20
)

:NEXTSTEP19
echo Testing h5repack test_all.h5 -f NONE                                   -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP20

REM filter conversions
REM TOOLTEST test_deflate.h5 -f dset_deflate:SZIP=8,NN
if "%HDF5_EXT_ZLIB%"=="" GOTO NEXTSTEP21
if "%HDF5_EXT_SZIP%"=="" GOTO NEXTSTEP21
if %HDF5_EXT_ZLIB%==zlib.lib (
   if %HDF5_EXT_SZIP%==szlib.lib (
      if %HDF5_SZIP_ENCODE%==1 (
         h5repack%2 -i ..\..\testfiles\test_deflate.h5 -o ..\..\temptest\out.test_deflate.h5 -f dset_deflate:SZIP=8,NN
         ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test_deflate.h5 ..\..\temptest\out.test_deflate.h5 > ..\..\temptest\test_deflate.results 2>..\..\temptest\test_deflate_error.results
         more ..\..\temptest\test_deflate_error.results >> ..\..\temptest\test_deflate.results
         fc ..\..\temptest\test_deflate.results ..\..\temptest\empty.txt >temp.txt
         if %ERRORLEVEL%==0 (
            echo Testing h5repack test_deflate.h5 -f dset_deflate:SZIP=8,NN             PASSED >> ..\..\repacktest%2_%1.txt
         ) else (
            echo Testing h5repack test_deflate.h5 -f dset_deflate:SZIP=8,NN             FAILED >> ..\..\repacktest%2_%1.txt
            more temp.txt >> ..\..\repacktest%2_%1.txt
         )
         del temp.txt
         del ..\..\temptest\out.test_deflate.h5
         del ..\..\temptest\test_deflate.results
         del ..\..\temptest\test_deflate_error.results
         GOTO NEXTSTEP22
      ) else (
         echo Testing h5repack test_deflate.h5 -f dset_deflate:SZIP=8,NN             -SKIP- >> ..\..\repacktest%2_%1.txt
         GOTO NEXTSTEP22
      )
   ) else (
      echo Testing h5repack test_deflate.h5 -f dset_deflate:SZIP=8,NN             -SKIP- >> ..\..\repacktest%2_%1.txt
      GOTO NEXTSTEP22
   )
) else (
    echo Testing h5repack test_deflate.h5 -f dset_deflate:SZIP=8,NN             -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP22
)

:NEXTSTEP21
echo Testing h5repack test_deflate.h5 -f dset_deflate:SZIP=8,NN             -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP22
  
REM TOOLTEST test_szip.h5 -f dset_szip:GZIP=1
if "%HDF5_EXT_ZLIB%"=="" GOTO NEXTSTEP23
if "%HDF5_EXT_SZIP%"=="" GOTO NEXTSTEP23
if %HDF5_EXT_ZLIB%==zlib.lib (
   if %HDF5_EXT_SZIP%==szlib.lib (
      if %HDF5_SZIP_ENCODE%==1 (
         h5repack%2 -i ..\..\testfiles\test_szip.h5 -o ..\..\temptest\out.test_szip.h5 -f dset_szip:GZIP=1
         ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test_szip.h5 ..\..\temptest\out.test_szip.h5 > ..\..\temptest\test_szip.results 2>..\..\temptest\test_szip_error.results
         more ..\..\temptest\test_szip_error.results >> ..\..\temptest\test_szip.results
         fc ..\..\temptest\test_szip.results ..\..\temptest\empty.txt >temp.txt
         if %ERRORLEVEL%==0 (
            echo Testing h5repack test_szip.h5 -f dset_szip:GZIP=1                      PASSED >> ..\..\repacktest%2_%1.txt
         ) else (
            echo Testing h5repack test_szip.h5 -f dset_szip:GZIP=1                      FAILED >> ..\..\repacktest%2_%1.txt
            more temp.txt >> ..\..\repacktest%2_%1.txt
         )
         del temp.txt
         del ..\..\temptest\out.test_szip.h5
         del ..\..\temptest\test_szip.results
         del ..\..\temptest\test_szip_error.results
         GOTO NEXTSTEP24
      ) else (
         echo Testing h5repack test_szip.h5 -f dset_szip:GZIP=1                      -SKIP- >> ..\..\repacktest%2_%1.txt
         GOTO NEXTSTEP24
      )
   ) else (
      echo Testing h5repack test_szip.h5 -f dset_szip:GZIP=1                      -SKIP- >> ..\..\repacktest%2_%1.txt
      GOTO NEXTSTEP24
   )
) else (
    echo Testing h5repack test_szip.h5 -f dset_szip:GZIP=1                      -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP24
)

:NEXTSTEP23
echo Testing h5repack test_szip.h5 -f dset_szip:GZIP=1                      -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP24
  
REM limit
REM TOOLTEST test4.h5 -f GZIP=1 -m 1024
if "%HDF5_EXT_ZLIB%"=="" GOTO NEXTSTEP25
if %HDF5_EXT_ZLIB%==zlib.lib (
   h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -f GZIP=1 -m 1024
   ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
   more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
   fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
   if %ERRORLEVEL%==0 (
      echo Testing h5repack test4.h5 -f GZIP=1 -m 1024                            PASSED >> ..\..\repacktest%2_%1.txt
   ) else (
      echo Testing h5repack test4.h5 -f GZIP=1 -m 1024                            FAILED >> ..\..\repacktest%2_%1.txt
      more temp.txt >> ..\..\repacktest%2_%1.txt
   )
   del temp.txt
   del ..\..\temptest\out.test4.h5
   del ..\..\temptest\test4.results
   del ..\..\temptest\test4_error.results
   GOTO NEXTSTEP26
) else (
    echo Testing h5repack test4.h5 -f GZIP=1 -m 1024                            -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP26
)

:NEXTSTEP25
echo Testing h5repack test4.h5 -f GZIP=1 -m 1024                            -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP26
    
REM file
REM TOOLTEST test4.h5 -e ../testfiles/h5repack_info.txt
if "%HDF5_EXT_ZLIB%"=="" GOTO NEXTSTEP27
if %HDF5_EXT_ZLIB%==zlib.lib (
   h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -e ..\..\testfiles\h5repack_info.txt
   ..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
   more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
   fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
   if %ERRORLEVEL%==0 (
      echo Testing h5repack test4.h5 -e ../testfiles/h5repack_info.txt            PASSED >> ..\..\repacktest%2_%1.txt
   ) else (
      echo Testing h5repack test4.h5 -e ../testfiles/h5repack_info.txt            FAILED >> ..\..\repacktest%2_%1.txt
      more temp.txt >> ..\..\repacktest%2_%1.txt
   )
   del temp.txt
   del ..\..\temptest\out.test4.h5
   del ..\..\temptest\test4.results
   del ..\..\temptest\test4_error.results
   GOTO NEXTSTEP28
) else (
    echo Testing h5repack test4.h5 -e ../testfiles/h5repack_info.txt            -SKIP- >> ..\..\repacktest%2_%1.txt
    GOTO NEXTSTEP28
)

:NEXTSTEP27
echo Testing h5repack test4.h5 -e ../testfiles/h5repack_info.txt            -SKIP- >> ..\..\repacktest%2_%1.txt

:NEXTSTEP28
   
REM layout chunk
REM TOOLTEST test4.h5 -l dset2:CHUNK=20x10
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l dset2:CHUNK=20x10
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l dset2:CHUNK=20x10                         PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l dset2:CHUNK=20x10                         FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM TOOLTEST test4.h5 -l CHUNK=20x10
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l CHUNK=20x10
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l CHUNK=20x10                               PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l CHUNK=20x10                               FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM layout contiguous
REM TOOLTEST test4.h5 -l dset2:CONTI
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l dset2:CONTI
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l dset2:CONTI                               PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l dset2:CONTI                               FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM TOOLTEST test4.h5 -l CONTI
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l CONTI
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l CONTI                                     PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l CONTI                                     FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM layout compact
REM TOOLTEST test4.h5 -l dset2:COMPA
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l dset2:COMPA
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l dset2:COMPA                               PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l dset2:COMPA                               FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM TOOLTEST test4.h5 -l COMPA
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l COMPA
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l COMPA                                     PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l COMPA                                     FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM conversions
REM TOOLTEST test4.h5 -l dset_compact:CONTI
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l dset_compact:CONTI
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l dset_compact:CONTI                        PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l dset_compact:CONTI                        FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM TOOLTEST test4.h5 -l dset_compact:CHUNK=2x5
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l dset_compact:CHUNK=2x5
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l dset_compact:CHUNK=2x5                    PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l dset_compact:CHUNK=2x5                    FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM TOOLTEST test4.h5 -l dset_compact:COMPA
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l dset_compact:COMPA
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l dset_compact:COMPA                        PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l dset_compact:COMPA                        FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM TOOLTEST test4.h5 -l dset_contiguous:COMPA
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l dset_contiguous:COMPA
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l dset_contiguous:COMPA                     PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l dset_contiguous:COMPA                     FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM TOOLTEST test4.h5 -l dset_contiguous:CHUNK=3x6
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l dset_contiguous:CHUNK=3x6
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l dset_contiguous:CHUNK=3x6                 PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l dset_contiguous:CHUNK=3x6                 FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM TOOLTEST test4.h5 -l dset_contiguous:CONTI
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l dset_contiguous:CONTI
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l dset_contiguous:CONTI                     PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l dset_contiguous:CONTI                     FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM TOOLTEST test4.h5 -l dset_chunk:COMPA
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l dset_chunk:COMPA
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l dset_chunk:COMPA                          PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l dset_chunk:COMPA                          FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM TOOLTEST test4.h5 -l dset_chunk:CONTI
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l dset_chunk:CONTI
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l dset_chunk:CONTI                          PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l dset_chunk:CONTI                          FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

REM TOOLTEST test4.h5 -l dset_chunk:CHUNK=18x13
h5repack%2 -i ..\..\testfiles\test4.h5 -o ..\..\temptest\out.test4.h5 -l dset_chunk:CHUNK=18x13
..\..\h5diff%2\%1\h5diff%2 ..\..\testfiles\test4.h5 ..\..\temptest\out.test4.h5 > ..\..\temptest\test4.results 2>..\..\temptest\test4_error.results
more ..\..\temptest\test4_error.results >> ..\..\temptest\test4.results
fc ..\..\temptest\test4.results ..\..\temptest\empty.txt >temp.txt
if %ERRORLEVEL%==0 (
   echo Testing h5repack test4.h5 -l dset_chunk:CHUNK=18x13                    PASSED >> ..\..\repacktest%2_%1.txt
) else (
   echo Testing h5repack test4.h5 -l dset_chunk:CHUNK=18x13                    FAILED >> ..\..\repacktest%2_%1.txt
   more temp.txt >> ..\..\repacktest%2_%1.txt
)
del temp.txt
del ..\..\temptest\out.test4.h5
del ..\..\temptest\test4.results
del ..\..\temptest\test4_error.results

cd ..
cd ..

rmdir /s/q temptest