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

t_id 630
t_cpu i386
t_adddate 2003/10/03
t_result 0
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=11 Percentage= 22.00

Skipped=39 Percentage= 78.00

Result type Cat. Count Percentage First date Last Date
Successfully run 11 22.0 2024/09/20 23:24:00 26 2024/09/20 23:55:00 24
i386 11 100.0 2024/09/20 23:24:00 26 2024/09/20 23:55:00 24
linux 3 27.3 2024/09/20 23:27:00 24 2024/09/20 23:55:00 24
solaris 8 72.7 2024/09/20 23:24:00 26 2024/09/20 23:37:00 32
3.3.1 9 81.8 2024/09/20 23:24:00 26 2024/09/20 23:37:00 32
3.2.3 2 18.2 2024/09/20 23:27:00 24 2024/09/20 23:55:00 24
Skipping test because for other cpu 39 78.0 2024/09/20 21:31:00 108 2024/09/20 23:55:00 38
sparc 15 38.5 2024/09/20 23:23:00 38 2024/09/20 23:48:00 41
powerpc 12 30.8 2024/09/20 22:47:00 35 2024/09/20 23:51:00 84
x86_64 3 7.7 2024/09/20 21:58:00 52 2024/09/20 23:55:00 38
powerpc64 9 23.1 2024/09/20 21:31:00 108 2024/09/20 22:23:00 143
linux 21 53.8 2024/09/20 21:31:00 108 2024/09/20 23:51:00 84
openbsd 1 2.6 2024/09/20 21:58:00 52 2024/09/20 21:58:00 52
solaris 15 38.5 2024/09/20 23:23:00 38 2024/09/20 23:48:00 41
win64 2 5.1 2024/09/20 22:50:00 46 2024/09/20 23:55:00 38
3.3.1 31 79.5 2024/09/20 21:31:00 108 2024/09/20 23:55:00 38
3.2.3 8 20.5 2024/09/20 21:58:00 52 2024/09/20 23:48:00 41

Source:

{ %CPU=i386 }

{
  Testing if using the same local label in two
   procedures does not create an error PM
}

program test_local_labels;


{$asmmode att}

procedure att_test1; assembler;

asm
  jmp .Llocal
.Llocal:
end;

procedure att_test2; assembler;

asm
  jmp .Llocal
.Llocal:
end;

{$asmmode intel}

procedure intel_test1; assembler;

asm
  jmp @@Llocal
@@Llocal:
end;

procedure intel_test2; assembler;

asm
  jmp @@Llocal
@@Llocal:
end;

begin
  att_test1;
  att_test2;
  intel_test1;
  intel_test2;
end.

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