mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 23:59:35 +02:00

longer split per directory, but in chunks of 100 tests (configurable via the new CHUNKSIZE=xxx Makefile parameter), which then all can be checked in parallel o dependencies between tests are handled by always putting tests whose name is the same except for the last character into the same chunk o as previously, -jx can only be used for the "all" target, other targets cannot be executed in parallel o the "units" directory has been renamed "tstunits" because otherwise "make distclean" will remove it entirely now that the main tests makefile also compiles a program git-svn-id: trunk@21479 -
37 lines
889 B
ObjectPascal
37 lines
889 B
ObjectPascal
{
|
|
This file is part of the Free Pascal test suite.
|
|
Copyright (c) 1999-2002 by the Free Pascal development team.
|
|
|
|
Used to avoid getting pop up windows
|
|
under Windows Operation Systems for critical errors
|
|
|
|
See the file COPYING.FPC, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
**********************************************************************}
|
|
|
|
unit win32err;
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
{ mswindows is defined for win32 and win64 targets }
|
|
{$ifdef mswindows}
|
|
uses
|
|
windows;
|
|
{$endif mswindows}
|
|
|
|
begin
|
|
{$ifdef mswindows}
|
|
SetErrorMode(
|
|
SEM_FAILCRITICALERRORS or
|
|
SEM_NOGPFAULTERRORBOX or
|
|
SEM_NOOPENFILEERRORBOX);
|
|
{$endif mswindows}
|
|
end.
|