mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 10:49:09 +02:00
* go32v2 or win32 args
This commit is contained in:
parent
03adfea271
commit
540c68e49f
@ -1,3 +1,13 @@
|
|||||||
|
@echo off
|
||||||
|
if "%1"=="" goto go32v2test
|
||||||
|
if "%1"=="go32v2" goto go32v2test
|
||||||
|
if "%1"=="win32" goto win32test
|
||||||
|
echo This batch file allows to test all test sources of the entire directory
|
||||||
|
echo Use "win95test go32v2" to run the test with ppc386
|
||||||
|
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
|
||||||
|
goto end
|
||||||
|
:go32v2test
|
||||||
set LONGLOG=1
|
set LONGLOG=1
|
||||||
ppc386 -l >longlog
|
ppc386 -l >longlog
|
||||||
make alltbf
|
make alltbf
|
||||||
@ -15,8 +25,10 @@ make allwebtbsexec
|
|||||||
make alltsexec
|
make alltsexec
|
||||||
cp log go32v2.log
|
cp log go32v2.log
|
||||||
cp longlong go32v2.longlog
|
cp longlong go32v2.longlog
|
||||||
|
if "%1"=="go32v2" goto end
|
||||||
|
:win32test
|
||||||
set LONGLOG=1
|
set LONGLOG=1
|
||||||
set FPC=/cvs/bin/ppwin32
|
set FPC=ppwin32
|
||||||
make clean
|
make clean
|
||||||
%FPC% -l > longlog
|
%FPC% -l > longlog
|
||||||
make alltbf
|
make alltbf
|
||||||
@ -34,7 +46,4 @@ make allwebtbsexec
|
|||||||
make alltsexec
|
make alltsexec
|
||||||
cp log win32.log
|
cp log win32.log
|
||||||
cp longlong win32.longlog
|
cp longlong win32.longlog
|
||||||
|
:end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user