-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtestall.cmd
More file actions
43 lines (33 loc) · 842 Bytes
/
testall.cmd
File metadata and controls
43 lines (33 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@echo off
copy /Y ..\Cfix\bin\chk\i386\cdiag.dll bin\chk\i386\cdiag.dll
copy /Y ..\Cfix\bin\fre\i386\cdiag.dll bin\fre\i386\cdiag.dll
echo i386 checked >> testrun.log
time /T >> testrun.log
echo ----------------------------------------- >> testrun.log
pushd bin\chk\i386
echo i386 checked
cfix32 -out ..\..\..\testrun.log -u -z .
if ERRORLEVEL 2 (
echo.
echo Errors occured [i386 checked]
echo.
popd
goto Exit
)
popd
echo i386 free >> testrun.log
time /T >> testrun.log
echo ----------------------------------------- >> testrun.log
pushd bin\fre\i386
echo i386 free
cfix32 -out ..\..\..\testrun.log -u -z .
if ERRORLEVEL 2 (
echo.
echo Errors occured [i386 free]
echo.
popd
goto Exit
)
popd
echo ----------------------------------------- >> testrun.log
:Exit