diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2008-04-21 18:05:34 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2008-04-21 18:05:34 (GMT) |
commit | ed32d8e9009166901041a52988c52faceb44a71a (patch) | |
tree | 6e57529c215cb0c8ca0624be0aab660d2e3b75d9 /windows | |
parent | e3e9bbafce94480799c462b2e116d55a1b94ea7a (diff) | |
download | hdf5-ed32d8e9009166901041a52988c52faceb44a71a.zip hdf5-ed32d8e9009166901041a52988c52faceb44a71a.tar.gz hdf5-ed32d8e9009166901041a52988c52faceb44a71a.tar.bz2 |
[svn-r14858] 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
Diffstat (limited to 'windows')
-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 +
|