summaryrefslogtreecommitdiffstats
path: root/windows/hdf5check.BAT
blob: 423a1155e27dc341bc185bc8068b79121422189d (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
@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 File Name: hdf5check.bat
@REM This batch file is used to test HDF5 Libraries and Tools.
@REM There are 4 options for this batch file:
@REM   1. hdf5check                -- HDF5 tools and c library tests
@REM   2. hdf5check enablecpp      -- HDF5 tools and c/c++ library tests
@REM   3. hdf5check enablefortran  -- HDF5 tools and c/fortran library tests
@REM   4. hdf5check enableall      -- HDF5 tools and c/c++/fortran library tests
@REM By Xuan Bai
@REM Created: Aug. 12, 2004
@REM Last Updated: Aug. 16, 2004

@ECHO OFF
echo install_dll
call install_dll

echo install_hldll
call install_hldll

type nul > check_results.txt
echo ***************************************************************************** >> check_results.txt
echo                         HDF5 C Library Tests -- Release>> check_results.txt
echo ***************************************************************************** >> check_results.txt

cd test
echo hdf5test release
call hdf5test release >> ..\check_results.txt

echo. >> ..\check_results.txt
echo ***************************************************************************** >> ..\check_results.txt
echo                         HDF5 Timing Test -- Release>> ..\check_results.txt
echo ***************************************************************************** >> ..\check_results.txt
echo hdf5timingtest release
call hdf5timingtest release >> ..\check_results.txt

cd ..\tools
echo. >> ..\check_results.txt
echo testhdf5tools Release
call testhdf5tools Release
more toolstest_release.txt >> ..\check_results.txt
del toolstest_release.txt
cd ..

echo ***************************************************************************** >> check_results.txt
echo                         HDF5 High Level C Library Tests -- Release>> check_results.txt
echo ***************************************************************************** >> check_results.txt

cd hl\test
echo test_hdf5_hl Release
call test_hdf5_hl Release >> ..\..\check_results.txt
cd ..\..

echo. >> check_results.txt
echo ***************************************************************************** >> check_results.txt
echo                         HDF5 C Library Tests -- Debug >> check_results.txt
echo ***************************************************************************** >> check_results.txt

cd test
echo hdf5test debug
call hdf5test debug >> ..\check_results.txt

echo. >> ..\check_results.txt
echo ***************************************************************************** >> ..\check_results.txt
echo                         HDF5 Timing Test -- Debug>> ..\check_results.txt
echo ***************************************************************************** >> ..\check_results.txt
echo hdf5timingtest debug
call hdf5timingtest debug >> ..\check_results.txt

cd ..\tools
echo. >> ..\check_results.txt
echo testhdf5tools Debug 
call testhdf5tools Debug
more toolstest_debug.txt >> ..\check_results.txt
del toolstest_debug.txt
cd ..

echo ***************************************************************************** >> check_results.txt
echo                         HDF5 High Level C Library Tests -- Debug>> check_results.txt
echo ***************************************************************************** >> check_results.txt

cd hl\test
echo test_hdf5_hl Debug
call test_hdf5_hl Debug >> ..\..\check_results.txt
cd ..\..

echo. >> check_results.txt
echo ***************************************************************************** >> check_results.txt
echo                         HDF5 C Library Tests -- Release DLL >> check_results.txt
echo ***************************************************************************** >> check_results.txt

cd test
echo hdf5test release dll
call hdf5test release dll >> ..\check_results.txt

echo. >> ..\check_results.txt
echo ***************************************************************************** >> ..\check_results.txt
echo                         HDF5 Timing Test -- Release DLL>> ..\check_results.txt
echo ***************************************************************************** >> ..\check_results.txt
echo hdf5timingtest release dll
call hdf5timingtest release dll >> ..\check_results.txt

cd ..\tools
echo. >> ..\check_results.txt
echo testhdf5tools Release dll
call testhdf5tools Release dll
more toolstest_releasedll.txt >> ..\check_results.txt
del toolstest_releasedll.txt
cd ..
echo. >> check_results.txt

echo ***************************************************************************** >> check_results.txt
echo                         HDF5 High Level C Library Tests -- Release DLL>> check_results.txt
echo ***************************************************************************** >> check_results.txt

cd hl\test
echo test_hdf5_hl Release dll
call test_hdf5_hl Release dll>> ..\..\check_results.txt
cd ..\..

echo. >> check_results.txt
echo ***************************************************************************** >> check_results.txt
echo                         HDF5 C Library Tests -- Debug DLL >> check_results.txt
echo ***************************************************************************** >> check_results.txt

cd test
echo hdf5test debug dll
call hdf5test debug dll >> ..\check_results.txt

echo. >> ..\check_results.txt
echo ***************************************************************************** >> ..\check_results.txt
echo                         HDF5 Timing Test -- Debug DLL>> ..\check_results.txt
echo ***************************************************************************** >> ..\check_results.txt
echo hdf5timingtest debug dll
call hdf5timingtest debug dll >> ..\check_results.txt

cd ..\tools
echo. >> ..\check_results.txt
echo testhdf5tools Debug dll
call testhdf5tools Debug dll
more toolstest_debugdll.txt >> ..\check_results.txt
del toolstest_debugdll.txt
cd ..

echo ***************************************************************************** >> check_results.txt
echo                         HDF5 High Level C Library Tests -- Debug DLL>> check_results.txt
echo ***************************************************************************** >> check_results.txt

cd hl\test
echo test_hdf5_hl Debug dll
call test_hdf5_hl Debug dll>> ..\..\check_results.txt
cd ..\..

echo. >> check_results.txt

if "%1"=="enablecpp" (

echo. >> check_results.txt

echo install_cppdll

call install_cppdll

echo install_hlcppdll

call install_hlcppdll

cd c++\test

echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 C++ Library Tests -- Release >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo hdf5cpptest release

call hdf5cpptest release >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 High Level C++ Library Tests -- Release >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

cd ..\..\hl\c++\test

echo test_hdf5_hl_cpp Release

call test_hdf5_hl_cpp Release >> ..\..\..\check_results.txt

cd ..\..\..\c++\test

echo. >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 C++ Library Tests -- Debug >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo hdf5cpptest debug

call hdf5cpptest debug >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 High Level C++ Library Tests -- Debug >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

cd ..\..\hl\c++\test

echo test_hdf5_hl_cpp Debug

call test_hdf5_hl_cpp Debug >> ..\..\..\check_results.txt

cd ..\..\..\c++\test

echo. >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 C++ Library Tests -- Release DLL >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo hdf5cpptest release dll

call hdf5cpptest release dll >> ..\..\check_results.txt

echo. >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 High Level C++ Library Tests -- Release DLL >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

cd ..\..\hl\c++\test

echo test_hdf5_hl_cpp Release dll

call test_hdf5_hl_cpp Release dll>> ..\..\..\check_results.txt

cd ..\..\..\c++\test

echo. >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 C++ Library Tests -- Debug DLL >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo hdf5cpptest debug dll

call hdf5cpptest debug dll >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 High Level C++ Library Tests -- Debug DLL>> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

cd ..\..\hl\c++\test

echo test_hdf5_hl_cpp Debug dll

call test_hdf5_hl_cpp Debug dll>> ..\..\..\check_results.txt

echo. >> ..\..\..\check_results.txt



cd ..\..\..\

)





if "%1"=="enablefortran" (
echo. >> check_results.txt
echo install_f90dll
call install_f90dll
echo install_hlf90dll
call install_hlf90dll
cd fortran\test
echo ***************************************************************************** >> ..\..\check_results.txt
echo                         HDF5 Fortran Library Tests -- Release >> ..\..\check_results.txt
echo ***************************************************************************** >> ..\..\check_results.txt
echo testhdf5_fortran release
call testhdf5_fortran release >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt
echo                         HDF5 High Level Fortran Library Tests -- Release >> ..\..\check_results.txt
echo ***************************************************************************** >> ..\..\check_results.txt

cd ..\..\hl\fortran\test
echo test_hdf5_hl_fortran Release
call test_hdf5_hl_fortran Release >> ..\..\..\check_results.txt

cd ..\..\..\fortran\test
echo. >> ..\..\check_results.txt
echo ***************************************************************************** >> ..\..\check_results.txt
echo                         HDF5 Fortran Library Tests -- Debug >> ..\..\check_results.txt
echo ***************************************************************************** >> ..\..\check_results.txt
echo testhdf5_fortran debug
call testhdf5_fortran debug >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt
echo                         HDF5 High Level Fortran Library Tests -- Debug >> ..\..\check_results.txt
echo ***************************************************************************** >> ..\..\check_results.txt

cd ..\..\hl\fortran\test
echo test_hdf5_hl_fortran Debug
call test_hdf5_hl_fortran Debug >> ..\..\..\check_results.txt

cd ..\..\..\fortran\test
echo. >> ..\..\check_results.txt
echo ***************************************************************************** >> ..\..\check_results.txt
echo                         HDF5 Fortran Library Tests -- Release DLL >> ..\..\check_results.txt
echo ***************************************************************************** >> ..\..\check_results.txt
echo testhdf5_fortran release dll
call testhdf5_fortran release dll >> ..\..\check_results.txt
echo. >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt
echo                         HDF5 Hight Level Fortran Library Tests -- Release DLL >> ..\..\check_results.txt
echo ***************************************************************************** >> ..\..\check_results.txt
cd ..\..\hl\fortran\test
echo test_hdf5_hl_fortran release dll
call test_hdf5_hl_fortran release dll >> ..\..\..\check_results.txt
cd ..\..\..\fortran\test
echo. >> ..\..\check_results.txt
echo ***************************************************************************** >> ..\..\check_results.txt
echo                         HDF5 Fortran Library Tests -- Debug DLL >> ..\..\check_results.txt
echo ***************************************************************************** >> ..\..\check_results.txt
echo testhdf5_fortran debug dll
call testhdf5_fortran debug dll >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt
echo                         HDF5 Hight Level Fortran Library Tests -- Debug DLL >> ..\..\check_results.txt
echo ***************************************************************************** >> ..\..\check_results.txt
cd ..\..\hl\fortran\test
echo test_hdf5_hl_fortran debug dll
call test_hdf5_hl_fortran debug dll >> ..\..\..\check_results.txt

echo. >> ..\..\..\check_results.txt
cd ..\..\..\
)


if "%1"=="enableall" (

echo. >> check_results.txt

echo install_cppdll

call install_cppdll

echo install_hlcppdll

call install_hlcppdll

cd c++\test

echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 C++ Library Tests -- Release >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo hdf5cpptest release

call hdf5cpptest release >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 High Level C++ Library Tests -- Release >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

cd ..\..\hl\c++\test

echo test_hdf5_hl_cpp Release

call test_hdf5_hl_cpp Release >> ..\..\..\check_results.txt

cd ..\..\..\c++\test

echo. >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 C++ Library Tests -- Debug >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo hdf5cpptest debug

call hdf5cpptest debug >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 High Level C++ Library Tests -- Debug >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

cd ..\..\hl\c++\test

echo test_hdf5_hl_cpp Debug

call test_hdf5_hl_cpp Debug >> ..\..\..\check_results.txt

cd ..\..\..\c++\test

echo. >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 C++ Library Tests -- Release DLL >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo hdf5cpptest release dll

call hdf5cpptest release dll >> ..\..\check_results.txt

echo. >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 High Level C++ Library Tests -- Release DLL >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

cd ..\..\hl\c++\test

echo test_hdf5_hl_cpp Release dll

call test_hdf5_hl_cpp Release dll>> ..\..\..\check_results.txt

cd ..\..\..\c++\test

echo. >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 C++ Library Tests -- Debug DLL >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo hdf5cpptest debug dll

call hdf5cpptest debug dll >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 High Level C++ Library Tests -- Debug DLL >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

cd ..\..\hl\c++\test

echo test_hdf5_hl_cpp Debug dll

call test_hdf5_hl_cpp Debug dll>> ..\..\..\check_results.txt

echo. >> ..\..\..\check_results.txt



cd ..\..\..\



echo install_f90dll

call install_f90dll

echo install_hlf90dll

call install_hlf90dll

cd fortran\test

echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 Fortran Library Tests -- Release >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo testhdf5_fortran release

call testhdf5_fortran release >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 High Level Fortran Library Tests -- Release >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt



cd ..\..\hl\fortran\test

echo test_hdf5_hl_fortran Release

call test_hdf5_hl_fortran Release >> ..\..\..\check_results.txt



cd ..\..\..\fortran\test

echo. >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 Fortran Library Tests -- Debug >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo testhdf5_fortran debug

call testhdf5_fortran debug >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 High Level Fortran Library Tests -- Debug >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt



cd ..\..\hl\fortran\test

echo test_hdf5_hl_fortran Debug

call test_hdf5_hl_fortran Debug >> ..\..\..\check_results.txt



cd ..\..\..\fortran\test

echo. >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 Fortran Library Tests -- Release DLL >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo testhdf5_fortran release dll

call testhdf5_fortran release dll >> ..\..\check_results.txt

echo. >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 Hight Level Fortran Library Tests -- Release DLL >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

cd ..\..\hl\fortran\test

echo test_hdf5_hl_fortran release dll

call test_hdf5_hl_fortran release dll >> ..\..\..\check_results.txt

cd ..\..\..\fortran\test

echo. >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 Fortran Library Tests -- Debug DLL >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

echo testhdf5_fortran debug dll

call testhdf5_fortran debug dll >> ..\..\check_results.txt



echo ***************************************************************************** >> ..\..\check_results.txt

echo                         HDF5 High Level Fortran Library Tests -- Debug DLL >> ..\..\check_results.txt

echo ***************************************************************************** >> ..\..\check_results.txt

cd ..\..\hl\fortran\test

echo test_hdf5_hl_fortran debug dll

call test_hdf5_hl_fortran debug dll >> ..\..\..\check_results.txt



echo. >> ..\..\..\check_results.txt

cd ..\..\..\

)



type nul > number_failed.txt

type nul > tests_results.txt

find /C "FAIL" check_results.txt > number_failed.txt

find "FAIL" check_results.txt > tests_failed.txt

for /f "tokens=1,2*" %%a in (

 number_failed.txt

) do ( if %%c==0 (

          echo All HDF5 Tests Passed! >> tests_results.txt

)      else (

          echo The Following HDF5 Tests Failed: >> tests_results.txt

          more /e +2 tests_failed.txt >> tests_results.txt

)

)



del number_failed.txt

del tests_failed.txt