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

t_id 262
t_adddate 2003/10/03
t_result 0
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/06/02 02:53:00 14 2024/06/02 05:04:00 31
i386 4 8.0 2024/06/02 03:03:00 25 2024/06/02 04:24:00 0
m68k 1 2.0 2024/06/02 03:55:00 53 2024/06/02 03:55:00 53
sparc 1 2.0 2024/06/02 03:32:00 41 2024/06/02 03:32:00 41
powerpc 1 2.0 2024/06/02 04:10:00 238 2024/06/02 04:10:00 238
x86_64 36 72.0 2024/06/02 02:53:00 14 2024/06/02 05:04:00 31
powerpc64 2 4.0 2024/06/02 04:15:00 0 2024/06/02 04:19:00 0
mips 1 2.0 2024/06/02 04:00:00 47 2024/06/02 04:00:00 47
mipsel 1 2.0 2024/06/02 04:06:00 185 2024/06/02 04:06:00 185
aarch64 3 6.0 2024/06/02 02:59:00 37 2024/06/02 03:42:00 31
linux 34 68.0 2024/06/02 02:53:00 14 2024/06/02 04:25:00 0
win32 1 2.0 2024/06/02 03:03:00 25 2024/06/02 03:03:00 25
go32v2 2 4.0 2024/06/02 03:45:00 54 2024/06/02 04:24:00 0
solaris 13 26.0 2024/06/02 02:54:00 32 2024/06/02 05:04:00 31
3.3.1 37 74.0 2024/06/02 02:53:00 14 2024/06/02 05:04:00 31
3.2.3 13 26.0 2024/06/02 02:56:00 35 2024/06/02 04:25:00 0

Source:

{ Source provided for Free Pascal Bug Report 2043 }
{ Submitted by "Luis Castedo" on  2002-07-16 }
{ e-mail: castedo@elai.upm.es }
program tb1;

{$MODE TP}

uses
  Objects;

const
  csFName1 = 'tb1_1.tmp';
  csFName2 = 'tb1_2.tmp';

var
  pStream1: PStream;
  pStream2: PStream;
  lAux    : Longint;
  error : boolean;
begin
  error := false;
  Write('Error checking for object streams...'); 
  { Legal operation on pStream1 }
  pStream1 := New(PDosStream, Init(csFName1, stCreate));
  { Faulty operation on pStream2 }
  pStream2 := New(PDosStream, Init(csFName2, stOpenRead));
  if pStream2^.Status = stOk then
     error := true;
     
  { Legal operation on pStream1 }
  pStream1^.Write(lAux, SizeOf(lAux));
  { Normally, if the values are not shared, this should be ok! }
  if pStream1^.Status <> stOk then
     error := true;

  pStream2^.Free;
  pStream1^.Free;
  if error then
    Begin
      WriteLn('FAILED! Errors are mixed up!');
      halt(1);
    end
  else
      Writeln('Success!');
end.

{
  $Log: testobj2.pp,v $
  Revision 1.1  2002/10/31 12:59:11  carl
   * error code testing (based on bug report 2043)

}

Link to SVN view of test/units/objects/testobj2.pp source.