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

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

Detailed test run results:

Record count: 50

Total = 50

OK=19 Percentage= 38.00

Skipped=31 Percentage= 62.00

Result type Cat. Count Percentage First date Last Date
Successfully run 19 38.0 2024/05/18 01:37:00 36 2024/05/18 02:10:00 30
i386 19 100.0 2024/05/18 01:37:00 36 2024/05/18 02:10:00 30
linux 17 89.5 2024/05/18 01:37:00 36 2024/05/18 02:10:00 30
win32 1 5.3 2024/05/18 02:04:00 34 2024/05/18 02:04:00 34
go32v2 1 5.3 2024/05/18 01:45:00 54 2024/05/18 01:45:00 54
3.3.1 10 52.6 2024/05/18 01:37:00 36 2024/05/18 02:10:00 30
3.2.3 9 47.4 2024/05/18 01:37:00 47 2024/05/18 02:02:00 35
Skipping test because for other cpu 31 62.0 2024/05/18 01:39:00 15 2024/05/18 02:13:00 0
x86_64 29 93.5 2024/05/18 01:39:00 15 2024/05/18 02:13:00 0
aarch64 2 6.5 2024/05/18 01:46:00 37 2024/05/18 02:03:00 34
linux 31 100.0 2024/05/18 01:39:00 15 2024/05/18 02:13:00 0
3.3.1 20 64.5 2024/05/18 01:39:00 15 2024/05/18 02:11:00 23
3.2.3 11 35.5 2024/05/18 01:41:00 26 2024/05/18 02:13:00 0

Source:

{ %CPU=i386 }
{$asmmode intel}

var
   a : array[0..5] of byte;

function f : byte;assembler;

  asm
    mov ebx,offset a
    mov ecx,0
    mov al,[ebx+4*ecx]
  end;

begin
   fillchar(a,5,255);
   a[0]:=0;
   if f<>0 then
     begin
        writeln('Scale factor problem in asmmode intel!');
        halt(1);
     end;
end.

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