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

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

Detailed test run results:

Record count: 50

Total = 50

OK=5 Percentage= 10.00

Skipped=45 Percentage= 90.00

Result type Cat. Count Percentage First date Last Date
Successfully run 5 10.0 2024/06/02 06:41:00 172 2024/06/02 07:53:00 69
i386 5 100.0 2024/06/02 06:41:00 172 2024/06/02 07:53:00 69
linux 4 80.0 2024/06/02 06:41:00 172 2024/06/02 07:24:00 42
go32v2 1 20.0 2024/06/02 07:53:00 69 2024/06/02 07:53:00 69
3.3.1 3 60.0 2024/06/02 06:51:00 236 2024/06/02 07:53:00 69
3.2.3 2 40.0 2024/06/02 06:41:00 172 2024/06/02 06:52:00 176
Skipping test because for other cpu 45 90.0 2024/06/02 05:33:00 33 2024/06/02 08:02:00 148
m68k 4 8.9 2024/06/02 06:49:00 58 2024/06/02 07:38:00 58
sparc 4 8.9 2024/06/02 06:46:00 68 2024/06/02 07:48:00 74
powerpc 3 6.7 2024/06/02 07:14:00 181 2024/06/02 07:58:00 246
arm 3 6.7 2024/06/02 06:45:00 59 2024/06/02 07:18:00 40
x86_64 3 6.7 2024/06/02 05:33:00 33 2024/06/02 07:19:00 104
powerpc64 6 13.3 2024/06/02 06:44:00 70 2024/06/02 07:35:00 71
mips 4 8.9 2024/06/02 06:58:00 154 2024/06/02 07:45:00 246
mipsel 3 6.7 2024/06/02 06:21:00 148 2024/06/02 07:13:00 148
aarch64 10 22.2 2024/06/02 06:09:00 30 2024/06/02 08:02:00 37
sparc64 2 4.4 2024/06/02 07:14:00 164 2024/06/02 08:02:00 148
riscv64 1 2.2 2024/06/02 07:42:00 31 2024/06/02 07:42:00 31
loongarch64 2 4.4 2024/06/02 06:56:00 34 2024/06/02 07:32:00 38
linux 38 84.4 2024/06/02 06:21:00 148 2024/06/02 08:02:00 148
solaris 2 4.4 2024/06/02 05:33:00 33 2024/06/02 06:54:00 39
darwin 5 11.1 2024/06/02 06:09:00 30 2024/06/02 07:14:00 47
3.3.1 22 48.9 2024/06/02 05:33:00 33 2024/06/02 07:58:00 246
3.2.3 23 51.1 2024/06/02 06:21:00 148 2024/06/02 08:02:00 148

Source:

{ %CPU=i386 }
{ Source provided for Free Pascal Bug Report 1327 }
{ Submitted by "Fernando Oscar Schmitt" on  2001-01-08 }
{ e-mail: pulp@cpovo.net }
{NOT to execute! ONLY for disassemble!}

{$asmmode intel}

procedure NotToExecute;
begin
  asm
    lea eax,[ebx+1*ecx]
    mov ebx,[ecx+eax*2]
    add ecx,[4*eax+ebx]
    sub edx,[esi*8+edi]

    adc eax,[ebx+1*ecx+100000]
    sbb ebx,[ecx+eax*2+200000]
    movzx ecx,byte ptr [4*eax+ebx+400000]
    movsx edx,word ptr [esi*8+edi+800000]

    and [2*ecx],eax
    xor [edx*4],ebx

    or [2*ecx+20],eax
    not dword ptr [edx*4+40]
  end;
end;

const
  has_error : boolean = false;

procedure test;
var
  x,y : array[0..5] of longint;
  i : longint;
  begin
    for i:=0 to 5 do
      begin
        x[i]:=6*i;
        y[i]:=5*i;
      end;
    asm
      lea edi,x
      lea esi,y
      mov ecx,0
    @LLloop:
      mov ebx,[edi+4*ecx]
      sub ebx,[4*ecx+esi]
      mov [edi+4*ecx],ebx
      inc ecx
      cmp ecx,6
      jne  @LLloop
    end;
    for i:=0 to 5 do
      if x[i]<>i then
        has_error:=true;
  end;

begin
  test;
  if has_error then
    begin
      Writeln('bug 1327 is not fixed');
      Halt(1);
    end;
end.

Link to SVN view of webtbs/tw1327.pp source.