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

t_id 197
t_adddate 2003/10/03
t_result 217
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
Successfully run 50 100.0 2024/05/17 12:20:00 29 2024/05/17 23:35:00 0
i386 14 28.0 2024/05/17 22:07:00 21 2024/05/17 23:35:00 0
sparc 9 18.0 2024/05/17 23:24:00 38 2024/05/17 23:35:00 0
powerpc 1 2.0 2024/05/17 21:13:00 42 2024/05/17 21:13:00 42
x86_64 10 20.0 2024/05/17 12:20:00 29 2024/05/17 14:42:00 39
powerpc64 13 26.0 2024/05/17 20:12:00 105 2024/05/17 20:54:00 132
aarch64 3 6.0 2024/05/17 16:15:00 32 2024/05/17 16:28:00 32
linux 22 44.0 2024/05/17 12:20:00 29 2024/05/17 21:13:00 42
win32 4 8.0 2024/05/17 22:07:00 21 2024/05/17 23:27:00 24
solaris 19 38.0 2024/05/17 23:23:00 25 2024/05/17 23:35:00 0
darwin 3 6.0 2024/05/17 16:15:00 32 2024/05/17 16:28:00 32
win64 2 4.0 2024/05/17 13:34:00 47 2024/05/17 14:42:00 39
3.3.1 41 82.0 2024/05/17 12:20:00 29 2024/05/17 23:35:00 0
3.2.3 9 18.0 2024/05/17 12:36:00 36 2024/05/17 23:35:00 0

Source:

{ %RESULT=217 }
{****************************************************************}
{  CODE GENERATOR TEST PROGRAM                                   }
{  By Carl Eric Codere                                           }
{****************************************************************}
{ NODE TESTED : secondraise()                                    }
{****************************************************************}
{ PRE-REQUISITES: secondload()                                   }
{                 secondassign()                                 }
{                 secondtypeconv()                               }
{                 secondtryexcept()                              }
{                 secondcalln()                                  }
{                 secondadd()                                    }
{****************************************************************}
{ DEFINES:                                                       }
{            FPC     = Target is FreePascal compiler             }
{****************************************************************}
{ REMARKS : Tested with Delphi 3 as reference implementation     }
{****************************************************************}
program traise2;

{$ifdef fpc}
{$mode objfpc}
{$endif}

Type
  TAObject = class(TObject)
    a : longint;
    end;
  TBObject = Class(TObject)
    b : longint;
      constructor create(c: longint);
    end;


{ The test cases were taken from the SAL internal architecture manual }

    procedure fail;
    begin
      WriteLn('Failure.');
      halt(1);
    end;


 constructor tbobject.create(c:longint);
  begin
    inherited create;
    b:=c;
  end;


Begin
  raise TAobject.create;
end.

{
  $Log: traise2.pp,v $
  Revision 1.2  2002/09/07 15:40:56  peter
    * old logs removed and tabs fixed

  Revision 1.1  2002/08/10 08:27:44  carl
    + mre tests for cg testuit

}

Link to SVN view of test/cg/traise2.pp source.