Test suite results for test file tbs/tb0089.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 "tbs/tb0089.pp" information:

t_id 337
t_adddate 2003/10/03
t_result 0
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=17 Percentage= 34.00

Skipped=33 Percentage= 66.00

Result type Cat. Count Percentage First date Last Date
Successfully run 17 34.0 2024/05/20 22:24:00 44 2024/05/20 23:59:00 16
i386 4 23.5 2024/05/20 22:37:00 176 2024/05/20 23:54:00 24
m68k 1 5.9 2024/05/20 22:44:00 190 2024/05/20 22:44:00 190
sparc 1 5.9 2024/05/20 23:30:00 79 2024/05/20 23:30:00 79
powerpc 1 5.9 2024/05/20 23:05:00 185 2024/05/20 23:05:00 185
arm 1 5.9 2024/05/20 22:30:00 59 2024/05/20 22:30:00 59
x86_64 3 17.6 2024/05/20 23:44:00 0 2024/05/20 23:59:00 16
powerpc64 2 11.8 2024/05/20 23:13:00 213 2024/05/20 23:20:00 71
mips 1 5.9 2024/05/20 22:51:00 240 2024/05/20 22:51:00 240
mipsel 1 5.9 2024/05/20 22:58:00 148 2024/05/20 22:58:00 148
aarch64 1 5.9 2024/05/20 22:24:00 44 2024/05/20 22:24:00 44
sparc64 1 5.9 2024/05/20 23:47:00 148 2024/05/20 23:47:00 148
linux 17 100.0 2024/05/20 22:24:00 44 2024/05/20 23:59:00 16
3.3.1 2 11.8 2024/05/20 23:44:00 0 2024/05/20 23:59:00 16
3.2.3 15 88.2 2024/05/20 22:24:00 44 2024/05/20 23:54:00 24
Skipping test because for other target 33 66.0 2024/05/20 19:35:00 26 2024/05/20 23:52:00 41
i386 13 39.4 2024/05/20 23:23:00 25 2024/05/20 23:41:00 23
sparc 19 57.6 2024/05/20 23:25:00 38 2024/05/20 23:52:00 41
x86_64 1 3.0 2024/05/20 19:35:00 26 2024/05/20 19:35:00 26
win32 1 3.0 2024/05/20 23:41:00 23 2024/05/20 23:41:00 23
solaris 31 93.9 2024/05/20 23:23:00 25 2024/05/20 23:52:00 41
win64 1 3.0 2024/05/20 19:35:00 26 2024/05/20 19:35:00 26
3.3.1 24 72.7 2024/05/20 19:35:00 26 2024/05/20 23:46:00 48
3.2.3 9 27.3 2024/05/20 23:25:00 38 2024/05/20 23:52:00 41

Source:

{ %TARGET=go32v2,linux }

{ Old file: tbs0105.pp }
{ typecasts are now ignored problem (NOT A bugs)         OK 0.99.1 }

{ Win32 signal support is still missing ! }

{$ifdef go32v2}
 uses dpmiexcp;
{$endif go32v2}
{$ifdef unix}
 {$ifdef ver1_0}
 uses linux;
 {$else}
 uses unix;
 {$endif}
{$endif unix}

  function our_sig(l : longint) : longint;{$ifdef unix}cdecl;{$endif}
    begin
       { If we land here the program works correctly !! }
       Writeln('Sigsegv signal recieved');
       our_sig:=0;
       Halt(0);
    end;

Var
 Sel: Word;
 v: pointer;
Begin
 Signal(SIGSEGV,signalhandler(@our_sig));
 { generate a sigsegv by writing to null-address }
 sel:=0;
 v:=nil;
{$ifdef go32v2}
  { on win9X no zero page protection :( }
  v:=pointer(-2);
{$endif go32v2}
 word(v^):=sel;
 { we should not go to here }
 Writeln('Error : signal not called');
 Halt(1);
end.

Link to SVN view of tbs/tb0089.pp source.