summaryrefslogtreecommitdiffstats
path: root/windows_vs6/examples
diff options
context:
space:
mode:
authorScott Wegner <swegner@hdfgroup.org>2007-06-27 21:00:47 (GMT)
committerScott Wegner <swegner@hdfgroup.org>2007-06-27 21:00:47 (GMT)
commit10f04e651970fde07a8ac61e92359eaaad977571 (patch)
treec0ae1e819892932e470a741cdc2668a9d46b3f9d /windows_vs6/examples
parentc63a400f7ab89ed4cbd702345c456e2b7bb14c7e (diff)
downloadhdf5-10f04e651970fde07a8ac61e92359eaaad977571.zip
hdf5-10f04e651970fde07a8ac61e92359eaaad977571.tar.gz
hdf5-10f04e651970fde07a8ac61e92359eaaad977571.tar.bz2
[svn-r13924] Purpose: Cleanup
Description: Clean up the MANIFEST a little bit. Also removed some batch files and empty folders that were added mistakenly in the last check-in. Tested: Too minor.
Diffstat (limited to 'windows_vs6/examples')
-rwxr-xr-xwindows_vs6/examples/testExamples.bat158
1 files changed, 0 insertions, 158 deletions
diff --git a/windows_vs6/examples/testExamples.bat b/windows_vs6/examples/testExamples.bat
deleted file mode 100755
index 57aa19c..0000000
--- a/windows_vs6/examples/testExamples.bat
+++ /dev/null
@@ -1,158 +0,0 @@
-@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.
-
-@ECHO OFF
-REM This batch file is used to test HDF5 C examples.
-REM by Xuan Bai
-REM Created: 09/09/2004
-REM Last Modified: 10/16/2004
-
-if %1.==. GOTO WRONG
-if "%1"=="/?" GOTO HELP
-if %1==release GOTO RELEASE
-if %1==debug GOTO DEBUG
-GOTO WRONG
-
-:RELEASE
-if %2.==. GOTO REL
-if %2==dll GOTO RELDLL
-GOTO WRONG
-
-:REL
-type nul > %1.txt
-cd examplesREL
-attributetest >> ..\%1.txt
-compoundtest >> ..\%1.txt
-extendwritetest >> ..\%1.txt
-grouptest >> ..\%1.txt
-intermgrouptest >> ..\%1.txt
-selectest >> ..\%1.txt
-writetest >> ..\%1.txt
-chunkread >> ..\%1.txt
-readtest >> ..\%1.txt
-cd ..
-more /e +3 testExamples_exp_output.txt > output.txt
-fc %1.txt output.txt >temp.txt
-if %ERRORLEVEL%==0 (
- echo All HDF5 C examples tests passed.
-) else (
- echo HDF5 C examples tests failed.
- echo.
- more temp.txt
-)
-del output.txt
-del temp.txt
-GOTO END
-
-:RELDLL
-type nul > %1.txt
-cd examplesRELDLL
-attributetestdll >> ..\%1.txt
-compoundtestdll >> ..\%1.txt
-extendwritetestdll >> ..\%1.txt
-grouptestdll >> ..\%1.txt
-intermgrouptestdll >> ..\%1.txt
-selectestdll >> ..\%1.txt
-writetestdll >> ..\%1.txt
-chunkreaddll >> ..\%1.txt
-readtestdll >> ..\%1.txt
-cd ..
-more /e +3 testExamples_exp_output.txt > output.txt
-fc %1.txt output.txt >temp.txt
-if %ERRORLEVEL%==0 (
- echo All HDF5 C examples tests passed.
-) else (
- echo HDF5 C examples tests failed.
- echo.
- more temp.txt
-)
-del output.txt
-del temp.txt
-GOTO END
-
-:DEBUG
-if %2.==. GOTO DBG
-if %2==dll GOTO DBGDLL
-GOTO WRONG
-
-:DBG
-type nul > %1.txt
-cd examplesDBG
-attributetest >> ..\%1.txt
-compoundtest >> ..\%1.txt
-extendwritetest >> ..\%1.txt
-grouptest >> ..\%1.txt
-intermgrouptest >> ..\%1.txt
-selectest >> ..\%1.txt
-writetest >> ..\%1.txt
-chunkread >> ..\%1.txt
-readtest >> ..\%1.txt
-cd ..
-more /e +3 testExamples_exp_output.txt > output.txt
-fc %1.txt output.txt >temp.txt
-if %ERRORLEVEL%==0 (
- echo All HDF5 C examples tests passed.
-) else (
- echo HDF5 C examples tests failed.
- echo.
- more temp.txt
-)
-del output.txt
-del temp.txt
-GOTO END
-
-:DBGDLL
-type nul > %1.txt
-cd examplesDBGDLL
-attributetestdll >> ..\%1.txt
-compoundtestdll >> ..\%1.txt
-extendwritetestdll >> ..\%1.txt
-grouptestdll >> ..\%1.txt
-intermgrouptestdll >> ..\%1.txt
-selectestdll >> ..\%1.txt
-writetestdll >> ..\%1.txt
-chunkreaddll >> ..\%1.txt
-readtestdll >> ..\%1.txt
-cd ..
-more /e +3 testExamples_exp_output.txt > output.txt
-fc %1.txt output.txt >temp.txt
-if %ERRORLEVEL%==0 (
- echo All HDF5 C examples tests passed.
-) else (
- echo HDF5 C examples tests failed.
- echo.
- more temp.txt
-)
-del output.txt
-del temp.txt
-GOTO END
-
-:WRONG
-echo The syntax of the command is incorrect.
-echo.
-
-:HELP
-echo Tests HDF5 C examples.
-echo.
-echo testExamples [OPTION]
-echo.
-echo Please use one of the following options!
-echo.
-echo testExamples release test HDF5 C examples -- release version
-echo testExamples release dll test HDF5 C examples -- release dll version
-echo testExamples debug test HDF5 C examples -- debug version
-echo testExamples debug dll test HDF5 C examples -- debug dll version
-echo testExamples /? Help information
-echo.
-
-:END