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

t_id 1226
t_adddate 2004/01/11
t_result 0
t_knownrunerror 0
t_opts -Sg

Detailed test run results:

Record count: 50

Total = 50

OK=28 Percentage= 56.00

Skipped=22 Percentage= 44.00

Result type Cat. Count Percentage First date Last Date
Successfully run 28 56.0 2024/05/08 02:03:00 34 2024/05/08 02:39:00 0
i386 28 100.0 2024/05/08 02:03:00 34 2024/05/08 02:39:00 0
linux 26 92.9 2024/05/08 02:03:00 34 2024/05/08 02:39:00 0
win32 1 3.6 2024/05/08 02:04:00 34 2024/05/08 02:04:00 34
go32v2 1 3.6 2024/05/08 02:27:00 56 2024/05/08 02:27:00 56
3.3.1 6 21.4 2024/05/08 02:04:00 34 2024/05/08 02:27:00 28
3.2.3 22 78.6 2024/05/08 02:03:00 34 2024/05/08 02:39:00 0
Skipping test because for other cpu 22 44.0 2024/05/08 02:03:00 14 2024/05/08 02:39:00 0
x86_64 14 63.6 2024/05/08 02:03:00 14 2024/05/08 02:39:00 0
powerpc64 3 13.6 2024/05/08 02:05:00 54 2024/05/08 02:38:00 0
aarch64 5 22.7 2024/05/08 02:17:00 39 2024/05/08 02:36:00 40
linux 21 95.5 2024/05/08 02:03:00 14 2024/05/08 02:39:00 0
win64 1 4.5 2024/05/08 02:23:00 47 2024/05/08 02:23:00 47
3.3.1 18 81.8 2024/05/08 02:03:00 14 2024/05/08 02:39:00 0
3.2.3 4 18.2 2024/05/08 02:05:00 54 2024/05/08 02:38:00 0

Source:

{ %OPT=-Sg }
program tb0468;

{$asmmode intel}

procedure x;

label a;

var b:pointer;

begin
  b:=@a;
a:
end;

procedure jumptabproc; assembler;

label a,b,c,d;

const jumptable:array[0..3] of pointer=(@a,@b,@b,@d);

asm
a:
 nop
b:
 nop
c:
 nop
d:
 nop
end;

begin
end.

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