diff options
Diffstat (limited to 'windows/tools/testhdf5tools.BAT')
-rwxr-xr-x | windows/tools/testhdf5tools.BAT | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/windows/tools/testhdf5tools.BAT b/windows/tools/testhdf5tools.BAT index 2c19474..112b543 100755 --- a/windows/tools/testhdf5tools.BAT +++ b/windows/tools/testhdf5tools.BAT @@ -53,9 +53,13 @@ call stattest %1 %2 set p2=%2
if "%2"=="dll" (
-echo "DLL version is not available for h5copy,h5jam or h5unjam, SKIP the test"
+echo "DLL version is not available for h5copy,h5jam or h5unjam, SKIP the test" >>toolstest_%1%2.txt
) else (
call jamtest %1 %2
+ @more jamtest%2_%1.txt >> toolstest_%1%2.txt
+ @del jamtest%2_%1.txt
call copytest %1 %2
+ @more copytest%2_%1.txt >> toolstest_%1%2.txt
+ @del copytest%2_%1.txt
)
|