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
|
@echo off
rem
rem Copyright by The HDF Group.
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://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have
rem access to either file, you may request a copy from help@hdfgroup.org.
rem
rem Tests for the h5repack tool
rem
rem Created: Scott Wegner, 8/28/07
rem Modified:
rem
setlocal enabledelayedexpansion
pushd %~dp0
set h5pubconf=%CD%\..\..\src\h5pubconf.h
rem On Windows, the function :detect_filter sets these for us
call :detect_filter szip
call :detect_filter deflate
call :detect_filter shuffle
call :detect_filter fletcher32
call :detect_filter nbit
call :detect_filter scaleoffset
rem The tool name
set h5repack=h5repack%2
rem The path of the tool binary
set h5repack_bin=%CD%\..\%h5repack%\%1\%h5repack%
rem The h5diff tool name
set h5diff=..\h5diff%2\%1\h5diff%2
rem The path of the h5diff tool binary
set h5diff_bin=%CD%\%h5diff%
rem The h5dump tool name
set h5dump=..\h5dump%2\%1\h5dump%2
rem The path of the h5dump tool binary
set h5dump_bin=%CD%\%h5dump%
set h5detectszip=testh5repack_detect_szip%2
set h5detectszip_bin=%CD%\..\testfiles\%h5detectszip%\%1\%h5detectszip%
set info_file=testfiles\h5repack.info
set file0=h5repack_fill.h5
set file1=h5repack_objs.h5
set file2=h5repack_attr.h5
set file3=h5repack_hlink.h5
set file4=h5repack_layout.h5
set file5=h5repack_early.h5
set file7=h5repack_szip.h5
set file8=h5repack_deflate.h5
set file9=h5repack_shuffle.h5
set file10=h5repack_fletcher.h5
set file11=h5repack_filters.h5
set file12=h5repack_nbit.h5
set file13=h5repack_soffset.h5
rem A file with an older version of the layout message (copy of test/tlayouto.h5)
set file14=h5repack_layouto.h5
set file15=h5repack_named_dtypes.h5
rem located in common testfiles folder
set file16=tfamilyPERCENT05d.h5
set file18=h5repack_layout2.h5
set nerrors=0
set verbose=yes
goto main
rem Print a line-line message left justified in a field of 70 characters
rem beginning with the word "Testing".
rem
:testing
set test_msg=Testing
for %%a in (%*) do (
if %%a neq PASSED (
if %%a neq *FAILED* (
set test_msg=!test_msg! %%~nxa
) )
)
rem We need to replace PERCENT here with "%" for tests that use a percent
rem sign. --SJW 5/12/08
set test_msg=!test_msg:PERCENT=%%!
echo.%test_msg:~0,69% %1
exit /b
rem Print a line-line message left justified in a field of 70 characters
rem beginning with the word "Verifying".
rem
:verify
set test_msg=Verifying h5diff output
for %%a in (%*) do (
if %%a neq PASSED (
if %%a neq *FAILED* (
set test_msg=!test_msg! %%~nxa
) )
)
rem We need to replace PERCENT here with "%" for tests that use a percent
rem sign. --SJW 5/12/08
set test_msg=!test_msg:PERCENT=%%!
echo.%test_msg:~0,69% %1
exit /b
rem Print a message that a test has been skipped (because a required filter
rem was unavailable)
:skip
call :testing -SKIP- %h5repack% %*
exit /b
rem Call the h5diff tool
rem
:difftest
set params=%*
%h5diff_bin% -q !params:PERCENT=%%!
if !errorlevel! neq 0 (
call :verify *FAILED* %*
set /a nerrors=!nerrors!+1
) else (
call :verify PASSED %*
)
exit /b
rem Call h5repack
rem
rem call TOOLTEST_MAIN and delete $output file
:tooltest
call :tooltest_main %*
set outfile=%CD%\out.%1
del /f %outfile%
exit /b
rem TOOLTEST main function, doesn't delete $output file
:tooltest_main
rem Run test.
set infile=%CD%\testfiles\%1
rem Linux uses a $path variable here, but it is unneccessary, and will
rem corrupt our Windows PATH if we use it. --SJW 8/28/07
rem set path=%CD%
rem set outfile=%path%\out.%1
set outfile=%CD%\out.%1
rem We define %params% here because Windows `shift` command doesn't affect
rem the %* variable. --SJW 8/28/07
if "%2"=="" (
set params=
) else (
set params=%*
set params=!params:* =!
)
%h5repack_bin% %params% %infile% %outfile%
if !errorlevel! neq 0 (
call :testing *FAILED* %*
set /a nerrors=!nerrors!+1
) else (
call :testing PASSED %*
call :difftest %infile% %outfile%
)
exit /b
rem ------------------------------------------
rem Verifying layouts of a dataset
:verify_layout_dset
rem Run test.
set outfile=%CD%\out.%1
set layoutfile=%CD%\layout.%1
set dset=%2
set expectlayout=%3
rem ---------------------------------
rem check the layout from a dataset
%h5dump_bin% -d %dset% -pH %outfile% > %layoutfile%
findstr /c:"%expectlayout%" %layoutfile% > nul
if !errorlevel! neq 0 (
call :verify *FAILED* %*
set /a nerrors=!nerrors!+1
) else (
call :verify PASSED %*
)
rem clean up tmp files
del /f %outfile%
del /f %layoutfile%
exit /b
rem----------------------------------------
rem Verifying layouts from entire file
:verify_layout_all
rem Run test.
set outfile=%CD%\out.%1
set layoutfile=%CD%\layout.%1
set expectlayout=%2
rem ---------------------------------
rem check the layout from a dataset
rem check if the other layouts still exsit
rem if CONTIGUOUS
if "%expectlayout%"=="CONTIGUOUS" (
%h5dump_bin% -pH %outfile% > %layoutfile%
findstr /c:"COMPACT" %layoutfile% > nul
if !errorlevel! neq 0 (
findstr /c:"CHUNKED" %layoutfile% > nul
if !errorlevel! equ 0 (
call :verify *FAILED* %*
set /a nerrors=!nerrors!+1
) else (
call :verify PASSED %*
)
) else (
call :verify *FAILED* %*
set /a nerrors=!nerrors!+1
)
) else (
rem if COMPACT
if "%expectlayout%"=="COMPACT" (
%h5dump_bin% -pH %outfile% > %layoutfile%
findstr /c:"CHUNKED" %layoutfile% > nul
if !errorlevel! neq 0 (
findstr /c:"CONTIGUOUS" %layoutfile% > nul
if !errorlevel! equ 0 (
call :verify *FAILED* %*
set /a nerrors=!nerrors!+1
) else (
call :verify PASSED %*
)
) else (
call :verify *FAILED* %*
set /a nerrors=!nerrors!+1
)
) else (
rem if CHUNKED
if "%expectlayout%"=="CHUNKED" (
%h5dump_bin% -pH %outfile% > %layoutfile%
findstr/c:"CONTIGUOUS" %layoutfile% > nul
if !errorlevel! neq 0 (
findstr /c:"COMPACT" %layoutfile% > nul
if !errorlevel! equ 0 (
call :verify *FAILED* %*
set /a nerrors=!nerrors!+1
) else (
call :verify PASSED %*
)
) else (
call :verify *FAILED* %*
set /a nerrors=!nerrors!+1
)
)
)
)
rem clean up tmp files
del /f %outfile%
del /f %layoutfile%
exit /b
rem Call h5repack with old syntax
rem
:tooltest0
rem Run test.
set infile=%CD%\testfiles\%1
rem Linux uses a $path variable here, but it is unneccessary, and will
rem corrupt our Windows PATH if we use it. --SJW 8/28/07
rem set path=%CD%
rem set outfile=%path%\out.%1
set outfile=%CD%\out.%1
rem We define %params% here because Windows `shift` command doesn't affect
rem the %* variable. --SJW 8/28/07
if "%2"=="" (
set params=
) else (
set params=%*
set params=!params:* =!
)
%h5repack_bin% -i %infile% -o %outfile% %params%
if !errorlevel! neq 0 (
call :testing *FAILED* %*
set /a nerrors=!nerrors!+1
) else (
call :testing PASSED %*
call :difftest %infile% %outfile%
)
del /f %outfile%
exit /b
rem same as TOOLTEST, but it uses the common testfiles at $srcdir/../testfiles/
rem used to test the family driver, where these files reside
rem
:tooltest1
rem Run test.
set infile=%CD%\..\testfiles\%1
rem Linux uses a $path variable here, but it is unneccessary, and will
rem corrupt our Windows PATH if we use it. --SJW 8/28/07
rem set path=%CD%
rem set outfile=%path%\out.%1
set outfile=%CD%\out.%1
rem We define %params% here because Windows `shift` command doesn't affect
rem the %* variable. --SJW 8/28/07
if "%2"=="" (
set params=
) else (
set params=%*
set params=!params:* =!
)
%h5repack_bin% %params% !infile:PERCENT=%%! !outfile:PERCENT=%%!
if !errorlevel! neq 0 (
call :testing *FAILED* %*
set /a nerrors=!nerrors!+1
) else (
call :testing PASSED %*
call :difftest %infile% %outfile%
)
del /f !outfile:PERCENT=%%!
exit /b
rem This is a Windows-specific function that detects if the filter passed
rem should be enabled for this test script. It searches H5pubconf.h for the
rem string "#define H5_HAVE_FILTER_%1" and sets the variable "use_filter_%1"
rem accordingly. On other platforms, this variable is set in the Makefile.
rem If we find a better way to test this in the future, we should use it.
rem --SJW 9/4/07
:detect_filter
findstr /b /i /c:"#define H5_HAVE_FILTER_%1" %h5pubconf% > nul
if !errorlevel! equ 0 (
set use_filter_%1=yes
) else (
set use_filter_%1=no
)
exit /b
rem
rem The tests
rem We use the files generated by h5repacktst
rem Each run generates "<file>.out.h5" and the tool h5diff is used to
rem compare the input and output files
rem
rem the tests are the same as the program h5repacktst, but run from the CLI
rem
:main
rem See which filters are usable (and skip tests for filters we
rem don't have). Do this by searching H5pubconf.h to see which
rem filters are defined.
rem detect whether the encoder is present.
set use_filter_szip_encoder=no
if "%use_filter_szip%"=="yes" (
for /f %%a in ('%h5detectszip_bin%') do set use_filter_szip_encoder=%%a
)
rem copy files (these files have no filters)
call :tooltest %file0%
call :tooltest %file1%
call :tooltest %file2%
call :tooltest %file3%
call :tooltest %file4%
call :tooltest %file5%
rem use %file4% to write some filters (this file has no filters)
rem gzip with individual object
set arg=%file4% -f dset1:GZIP=1 -l dset1:CHUNK=20x10
if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem gzip for all
set arg=%file4% -f GZIP=1
if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem szip with individual object
set arg=%file4% -f dset2:SZIP=8,EC -l dset2:CHUNK=20x10
if not "%use_filter_szip_encoder%"=="yes" (
call :skip %arg%
) else if not "%use_filter_szip%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem szip for all
set arg=%file4% -f SZIP=8,NN
if not "%use_filter_szip_encoder%"=="yes" (
call :skip %arg%
) else if not "%use_filter_szip%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem shuffle with individual object
set arg=%file4% -f dset2:SHUF -l dset2:CHUNK=20x10
if not "%use_filter_shuffle%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem shuffle for all
set arg=%file4% -f SHUF
if not "%use_filter_shuffle%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem fletcher32 with individual object
set arg=%file4% -f dset2:FLET -l dset2:CHUNK=20x10
if not "%use_filter_fletcher32%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem fletcher32 for all
set arg=%file4% -f FLET
if not "%use_filter_fletcher32%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem all filters
set arg=%file4% -f dset2:SHUF -f dset2:FLET -f dset2:SZIP=8,NN -f dset2:GZIP=1 -l dset2:CHUNK=20x10
rem On Windows we must check each filter individually, because we don't have
rem -o flag like Linux. --SJW 8/28/07
if not "%use_filter_szip_encoder%"=="yes" (
call :skip %arg%
) else if not "%use_filter_szip%"=="yes" (
call :skip %arg%
) else if not "%use_filter_shuffle%"=="yes" (
call :skip %arg%
) else if not "%use_filter_fletcher32%"=="yes" (
call :skip %arg%
) else if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem ##########################################################
rem the following tests assume the input files have filters
rem ##########################################################
rem szip copy
set arg=%file7%
if not "%use_filter_szip_encoder%"=="yes" (
call :skip %arg%
) else if not "%use_filter_szip%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem szip remove
set arg=%file7% --filter=dset_szip:NONE
if not "%use_filter_szip_encoder%"=="yes" (
call :skip %arg%
) else if not "%use_filter_szip%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem deflate copy
set arg=%file8%
if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem deflate remove
set arg=%file8% -f dset_deflate:NONE
if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem shuffle copy
set arg=%file9%
if not "%use_filter_shuffle%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem shuffle remove
set arg=%file9% -f dset_shuffle:NONE
if not "%use_filter_shuffle%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem fletcher32 copy
set arg=%file10%
if not "%use_filter_fletcher32%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem fletcher32 remove
set arg=%file10% -f dset_fletcher32:NONE
if not "%use_filter_fletcher32%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem nbit copy
set arg=%file12%
if not "%use_filter_nbit%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem nbit remove
set arg=%file12% -f dset_nbit:NONE
if not "%use_filter_nbit%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem nbit add
set arg=%file12% -f dset_int31:NBIT
if not "%use_filter_nbit%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem scaleoffset copy
set arg=%file13%
if not "%use_filter_scaleoffset%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem scaleoffset add
set arg=%file13% -f dset_none:SOFF=31,IN
if not "%use_filter_scaleoffset%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem scaleoffset remove
set arg=%file13% -f dset_scaleoffset:NONE
if not "%use_filter_scaleoffset%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem remove all filters
set arg=%file11% -f NONE
if not "%use_filter_fletcher32%"=="yes" (
call :skip %arg%
) else if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else if not "%use_filter_szip%"=="yes" (
call :skip %arg%
) else if not "%use_filter_szip_encoder%"=="yes" (
call :skip %arg%
) else if not "%use_filter_shuffle%"=="yes" (
call :skip %arg%
) else if not "%use_filter_nbit%"=="yes" (
call :skip %arg%
) else if not "%use_filter_scaleoffset%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem filter conversions
set arg=%file8% -f dset_deflate:SZIP=8,NN
if not "%use_filter_szip_encoder%"=="yes" (
call :skip %arg%
) else if not "%use_filter_szip%"=="yes" (
call :skip %arg%
) else if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
set arg=%file7% -f dset_szip:GZIP=1
if not "%use_filter_szip_encoder%"=="yes" (
call :skip %arg%
) else if not "%use_filter_szip%"=="yes" (
call :skip %arg%
) else if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem limit
set arg=%file4% -f GZIP=1 -m 1024
if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem file
set arg=%file4% -e %info_file%
if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem ########################################################
rem layout options (these files have no filters)
rem ########################################################
call :tooltest_main %file4% --layout=dset2:CHUNK=20x10
call :verify_layout_dset %file4% dset2 CHUNKED
call :tooltest_main %file4% -l CHUNK=20x10
call :verify_layout_all %file4% CHUNKED
call :tooltest_main %file4% -l dset2:CONTI
call :verify_layout_dset %file4% dset2 CONTIGUOUS
call :tooltest_main %file4% -l CONTI
call :verify_layout_all %file4% CONTIGUOUS
call :tooltest_main %file4% -l dset2:COMPA
call :verify_layout_dset %file4% dset2 COMPACT
call :tooltest_main %file4% -l COMPA
call :verify_layout_all %file4% COMPACT
rem ###############################################################
rem layout conversions (file has no filters)
rem ##############################################################
set arg1=%file4% -l dset_compact:CONTI
set arg2=%file4% -l dset_compact:CHUNK=2x5
set arg3=%file4% -l dset_compact:COMPA
set arg4=%file4% -l dset_contiguous:COMPA
set arg5=%file4% -l dset_contiguous:CHUNK=3x6
set arg6=%file4% -l dset_contiguous:CONTI
set arg7=%file4% -l dset_chunk:COMPA
set arg8=%file4% -l dset_chunk:CONTI
set arg9=%file4% -l dset_chunk:CHUNK=18x13
call :tooltest_main %arg1%
call :verify_layout_dset %file4% dset_compact CONTIGUOUS
call :tooltest_main %arg2%
call :verify_layout_dset %file4% dset_compact CHUNKED
call :tooltest_main %arg3%
call :verify_layout_dset %file4% dset_compact COMPACT
call :tooltest_main %arg4%
call :verify_layout_dset %file4% dset_contiguous COMPACT
call :tooltest_main %arg5%
call :verify_layout_dset %file4% dset_contiguous CHUNKED
call :tooltest_main %arg6%
call :verify_layout_dset %file4% dset_contiguous CONTIGUOUS
call :tooltest_main %arg7%
call :verify_layout_dset %file4% dset_chunk COMPACT
call :tooltest_main %arg8%
call :verify_layout_dset %file4% dset_chunk CONTIGUOUS
call :tooltest_main %arg9%
call :verify_layout_dset %file4% dset_chunk CHUNKED
rem test convert small size dataset ( < 1k) to compact layout without -m
call :tooltest_main %file18% -l contig_small:COMPA
call :verify_layout_dset %file18% contig_small COMPACT
call :tooltest_main %file18% -l chunked_small_fixed:COMPA
call :verify_layout_dset %file18% chunked_small_fixed COMPACT
rem Native option
rem Do not use FILE1, as the named dtype will be converted to native, and h5diff will
rem report a difference.
call :tooltest %file0% -n
call :tooltest %file2% -n
rem latest file format with long switches. use FILE4=h5repack_layout.h5 (no filters)
set arg=%file4% --layout CHUNK=20x10 --filter GZIP=1 --minimum=10 --native --latest --compact=8 --indexed=6 --ssize=8[:dtype]
if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else (
call :tooltest_main %arg%
call :verify_layout_all %file4% CHUNKED
)
rem latest file format with short switches. use FILE4=h5repack_layout.h5 (no filters)
set arg=%file4% -l CHUNK=20x10 -f GZIP=1 -m 10 -n -L -c 8 -d 6 -s 8[:dtype]
if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else (
call :tooltest_main %arg%
call :verify_layout_all %file4% CHUNKED
)
rem several global filters
set arg=%file4% --filter GZIP=1 --filter SHUF
if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else if not "%use_filter_shuffle%"=="yes" (
call :skip %arg%
) else (
call :tooltest %arg%
)
rem syntax of -i infile -o outfile
rem latest file format with short switches. use FILE4=h5repack_layout.h5 (no filters)
set arg=%file4% -l CHUNK=20x10 -f GZIP=1 -m 10 -n -L -c 8 -d 6 -s 8[:dtype]
if not "%use_filter_deflate%"=="yes" (
call :skip %arg%
) else (
call :tooltest0 %arg%
)
rem add a userblock to file
set arg=%file1% -u testfiles\ublock.bin -b 2048
call :tooltest %arg%
rem add alignment
set arg=%file1% -t 1 -a 1
call :tooltest %arg%
rem Check repacking file with old version of layout message (should get upgraded
rem to new version and be readable, etc.)
call :tooltest %file14%
rem test for datum size > H5TOOLS_MALLOCSIZE
set arg=%file1% -f GZIP=1
call :tooltest %arg%
rem Check repacking file with committed datatypes in odd configurations
call :tooltest %file15%
rem tests family driver (file is located in common testfiles folder, uses TOOLTEST1
call :tooltest1 %file16%
if %nerrors% equ 0 (
echo.All %h5repack% tests passed.
)
popd
endlocal & exit /b %nerrors%
|