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

t_id 1437
t_adddate 2005/01/06
t_result 0
Flag t_fail set
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=50 Percentage= 100.00

Result type Cat. Count Percentage First date Last Date
Success, compilation failed 50 100.0 2024/05/20 16:09:00 22 2024/05/20 23:30:00 79
i386 19 38.0 2024/05/20 16:23:00 44 2024/05/20 23:30:00 24
m68k 1 2.0 2024/05/20 22:44:00 190 2024/05/20 22:44:00 190
sparc 3 6.0 2024/05/20 23:27:00 38 2024/05/20 23:30:00 79
powerpc 1 2.0 2024/05/20 23:05:00 185 2024/05/20 23:05:00 185
arm 1 2.0 2024/05/20 22:30:00 59 2024/05/20 22:30:00 59
x86_64 8 16.0 2024/05/20 16:09:00 22 2024/05/20 19:35:00 26
powerpc64 2 4.0 2024/05/20 23:13:00 213 2024/05/20 23:20:00 71
mips 1 2.0 2024/05/20 22:51:00 240 2024/05/20 22:51:00 240
mipsel 1 2.0 2024/05/20 22:58:00 148 2024/05/20 22:58:00 148
aarch64 13 26.0 2024/05/20 16:20:00 32 2024/05/20 22:24:00 44
linux 11 22.0 2024/05/20 22:24:00 44 2024/05/20 23:30:00 79
solaris 19 38.0 2024/05/20 16:23:00 44 2024/05/20 23:30:00 24
darwin 12 24.0 2024/05/20 16:20:00 32 2024/05/20 17:50:00 56
win64 8 16.0 2024/05/20 16:09:00 22 2024/05/20 19:35:00 26
3.3.1 11 22.0 2024/05/20 16:09:00 22 2024/05/20 23:30:00 24
3.2.2 12 24.0 2024/05/20 16:23:00 44 2024/05/20 17:30:00 45
3.2.3 27 54.0 2024/05/20 16:13:00 26 2024/05/20 23:30:00 79

Source:

{ %fail }

{ Source provided for Free Pascal Bug Report 3488 }
{ Submitted by "Jesus Reyes A." on  2004-12-28 }
{ e-mail: jesusrmx@yahoo.com.mx }
program opertest;

{$mode objfpc}{$H+}

type
  TBug=class
  private
    FField: Integer;
    procedure SetField(const AValue: Integer);
  public
    property Field: Integer read FField write SetField;
  end;

procedure TBug.SetField(const aValue: Integer);
begin
  WriteLn('SetField visited');
  FField := AValue;
end;

var
  Bug: TBug;
begin
  Bug := TBug.Create;
  Bug.Field := 10;

  { This is not allowed with properties }
  Bug.Field += 1;

  WriteLn('Bug.Field=',Bug.Field);
end.

Link to SVN view of webtbf/tw3488.pp source.