Browse Source

* longlog fixes

pierre 26 years ago
parent
commit
dfd26db2da
1 changed files with 10 additions and 6 deletions
  1. 10 6
      tests/win95test.bat

+ 10 - 6
tests/win95test.bat

@@ -8,8 +8,11 @@ echo Use "win95test win32" to run the test with ppwin32 (native win32 version)
 echo or use "win95test" to run the test first with ppc386 and again with ppwin32
 echo or use "win95test" to run the test first with ppc386 and again with ppwin32
 goto end
 goto end
 :go32v2test
 :go32v2test
-set LONGLOG=1
-ppc386 -l -iSO >longlog
+set LONGLOG=go32v2.longlog
+echo Test of FPC for > %LONGLOG%
+ppc386 -l -iSO >> %LONGLOG%
+echo Test of FPC for > log
+ppc386 -l -iSO >> log
 make clean
 make clean
 make alltbf
 make alltbf
 make tbs0to99
 make tbs0to99
@@ -27,13 +30,15 @@ make allwebtbsexec
 make alltsexec
 make alltsexec
 make alltestexec
 make alltestexec
 cp log go32v2.log
 cp log go32v2.log
-cp longlog go32v2.longlog
 if "%1"=="go32v2" goto end
 if "%1"=="go32v2" goto end
 :win32test
 :win32test
-set LONGLOG=1
+set LONGLOG=win32.longlog
 set FPC=ppwin32
 set FPC=ppwin32
 make clean
 make clean
-%FPC% -l -iSO > longlog
+echo Test of FPC for > %LONGLOG%
+%FPC% -l -iSO >> %LONGLOG%
+echo Test of FPC for > log
+ppc386 -l -iSO >> log
 make alltbf
 make alltbf
 make tbs0to99
 make tbs0to99
 make tbs100to199
 make tbs100to199
@@ -50,5 +55,4 @@ make allwebtbsexec
 make alltestexec
 make alltestexec
 make alltsexec
 make alltsexec
 cp log win32.log
 cp log win32.log
-cp longlog win32.longlog
 :end
 :end