diff options
author | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-06-01 19:37:48 (GMT) |
---|---|---|
committer | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-06-01 19:37:48 (GMT) |
commit | 3f84e6478518a288a3a22d4385b114527a2d5b6e (patch) | |
tree | 7f8d34103c74ca966ca976323d1a0624ade9c531 | |
parent | f4da01545f47f4f9b2a3959e0602d947b6954f1d (diff) | |
download | hdf5-3f84e6478518a288a3a22d4385b114527a2d5b6e.zip hdf5-3f84e6478518a288a3a22d4385b114527a2d5b6e.tar.gz hdf5-3f84e6478518a288a3a22d4385b114527a2d5b6e.tar.bz2 |
[svn-r10836] Purpose:
Modify path problem in hdf5check.BAT:
Description:
Solution:
Platforms tested:
Misc. update:
-rwxr-xr-x | windows/hdf5check.BAT | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/windows/hdf5check.BAT b/windows/hdf5check.BAT index 517b714..36577ef 100755 --- a/windows/hdf5check.BAT +++ b/windows/hdf5check.BAT @@ -128,22 +128,21 @@ echo HDF5 C++ Library Tests -- Release >> ..\..\check_re echo ***************************************************************************** >> ..\..\check_results.txt echo hdf5cpptest release call hdf5cpptest 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 - 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 @@ -213,12 +212,21 @@ echo HDF5 C++ Library Tests -- Release >> ..\..\check_re echo ***************************************************************************** >> ..\..\check_results.txt echo hdf5cpptest release call hdf5cpptest release >> ..\..\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 +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 |