diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2008-04-21 18:04:39 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2008-04-21 18:04:39 (GMT) |
commit | 16d4cae5b16ffb91298d8d232214afeb5112da6d (patch) | |
tree | 61da435295d9cfcf0d6c819f2cc02c45cd95a89c | |
parent | 84d3ea8e8bd1eca0c3ffa0180cddde3efa820b20 (diff) | |
download | hdf5-16d4cae5b16ffb91298d8d232214afeb5112da6d.zip hdf5-16d4cae5b16ffb91298d8d232214afeb5112da6d.tar.gz hdf5-16d4cae5b16ffb91298d8d232214afeb5112da6d.tar.bz2 |
[svn-r14857] Purpose: Fix typo in Windows test script
Description:
A small typo in the main Windows test script was causing the C++ library tests not to run by default.
Tested:
VS2005 on WinXP x64
-rwxr-xr-x | windows/hdf5check.BAT | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/hdf5check.BAT b/windows/hdf5check.BAT index 929abab..f3caea2 100755 --- a/windows/hdf5check.BAT +++ b/windows/hdf5check.BAT @@ -101,7 +101,7 @@ rem on it for sending parameters. --SJW 9/6/07 call :add_test checktools.bat .\tools
rem Only check C++/Fortran if they are set to build.
- if defined build_cxx_conditional (
+ if defined build_cpp_conditional (
call :add_test checkcpptests.bat .\c++\test
)
if defined build_fortran_conditional (
@@ -133,4 +133,4 @@ rem on it for sending parameters. --SJW 9/6/07 popd
endlocal & exit /b %nerrors%
-
\ No newline at end of file +
|