Test suite results for test file webtbs/tw2758.pp

Test run data :

Free Pascal Compiler Test Suite Results

View Test suite results

Please specify search criteria:
File:
Operating system:
Processor:
Version
Date
Submitter
Machine
Comment
Limit
Cond
Category
Only failed tests
Hide skipped tests
List all tests

Test file "webtbs/tw2758.pp" information:

t_id 1179
t_adddate 2003/11/01
t_result 0
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=50 Percentage= 100.00

Result type Cat. Count Percentage First date Last Date
Successfully run 50 100.0 2024/06/02 02:36:00 40 2024/06/02 04:14:00 32
i386 3 6.0 2024/06/02 02:36:00 32 2024/06/02 03:03:00 25
sparc 1 2.0 2024/06/02 03:32:00 41 2024/06/02 03:32:00 41
x86_64 43 86.0 2024/06/02 02:38:00 34 2024/06/02 04:14:00 32
aarch64 3 6.0 2024/06/02 02:36:00 40 2024/06/02 02:59:00 37
linux 38 76.0 2024/06/02 02:36:00 40 2024/06/02 03:32:00 29
win32 1 2.0 2024/06/02 03:03:00 25 2024/06/02 03:03:00 25
solaris 11 22.0 2024/06/02 02:54:00 32 2024/06/02 04:14:00 32
3.3.1 32 64.0 2024/06/02 02:36:00 40 2024/06/02 04:14:00 32
3.2.3 18 36.0 2024/06/02 02:36:00 32 2024/06/02 03:32:00 41

Source:

{ Source provided for Free Pascal Bug Report 2758 }
{ Submitted by "marco" on  2003-10-31 }
{ e-mail:  }
Type
  sigcontextrec=record end;
  SignalHandler   = Procedure(Sig : Longint);cdecl;
  PSignalHandler  = ^SignalHandler;
  TSigAction = procedure(Sig: Longint; SigContext: SigContextRec);cdecl;

SigActionRec = packed record  // this is temporary for the migration
    sa_handler : signalhandler;
  end;

procedure signaltorunerror(Sig: Longint; SigContext: SigContextRec);cdecl;
begin end;  // tsigaction style


var r : sigactionrec;

begin
  r.sa_handler:=signalhandler(@signaltorunerror);
end.

Link to SVN view of webtbs/tw2758.pp source.