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=49 Percentage= 98.00

Result type Cat. Count Percentage First date Last Date
Failed to compile 1 2.0 2024/05/20 23:47:00 148 2024/05/20 23:47:00 148
sparc64 1 100.0 2024/05/20 23:47:00 148 2024/05/20 23:47:00 148
linux 1 100.0 2024/05/20 23:47:00 148 2024/05/20 23:47:00 148
3.2.3 1 100.0 2024/05/20 23:47:00 148 2024/05/20 23:47:00 148
Successfully run 49 98.0 2024/05/20 22:37:00 176 2024/05/21 00:32:00 15
i386 18 36.7 2024/05/20 22:37:00 176 2024/05/21 00:08:00 23
sparc 21 42.9 2024/05/20 23:25:00 38 2024/05/20 23:55:00 41
powerpc 1 2.0 2024/05/20 23:05:00 185 2024/05/20 23:05:00 185
x86_64 5 10.2 2024/05/20 23:44:00 14 2024/05/21 00:32:00 15
powerpc64 2 4.1 2024/05/20 23:13:00 213 2024/05/20 23:20:00 71
mipsel 1 2.0 2024/05/20 22:58:00 148 2024/05/20 22:58:00 148
aarch64 1 2.0 2024/05/21 00:12:00 32 2024/05/21 00:12:00 32
linux 16 32.7 2024/05/20 22:37:00 176 2024/05/21 00:32:00 15
win32 1 2.0 2024/05/20 23:41:00 23 2024/05/20 23:41:00 23
solaris 32 65.3 2024/05/20 23:23:00 25 2024/05/20 23:55:00 41
3.3.1 28 57.1 2024/05/20 23:23:00 25 2024/05/21 00:32:00 15
3.2.3 21 42.9 2024/05/20 22:37:00 176 2024/05/21 00:08:00 23

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.