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

t_id 1497
t_cpu i386
t_adddate 2005/02/22
t_result 0
t_knownrunerror 0
t_opts -O2

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/05/08 10:33:00 43 2024/05/08 11:10:00 236
i386 5 100.0 2024/05/08 10:33:00 43 2024/05/08 11:10:00 236
linux 4 80.0 2024/05/08 10:33:00 43 2024/05/08 11:10:00 236
win32 1 20.0 2024/05/08 10:53:00 35 2024/05/08 10:53:00 35
3.3.1 3 60.0 2024/05/08 10:58:00 42 2024/05/08 11:10:00 236
3.2.3 2 40.0 2024/05/08 10:33:00 43 2024/05/08 10:53:00 35
Skipping test because for other cpu 45 90.0 2024/05/08 09:37:00 69 2024/05/08 11:23:00 0
m68k 3 6.7 2024/05/08 10:41:00 60 2024/05/08 11:12:00 58
sparc 1 2.2 2024/05/08 09:37:00 69 2024/05/08 09:37:00 69
powerpc 6 13.3 2024/05/08 10:55:00 44 2024/05/08 11:22:00 44
arm 3 6.7 2024/05/08 10:23:00 59 2024/05/08 11:06:00 37
x86_64 5 11.1 2024/05/08 10:01:00 35 2024/05/08 10:46:00 27
powerpc64 10 22.2 2024/05/08 09:52:00 80 2024/05/08 11:18:00 79
mips 4 8.9 2024/05/08 10:51:00 48 2024/05/08 11:23:00 0
mipsel 2 4.4 2024/05/08 11:01:00 39 2024/05/08 11:20:00 0
aarch64 9 20.0 2024/05/08 10:04:00 38 2024/05/08 11:09:00 39
loongarch64 2 4.4 2024/05/08 11:06:00 38 2024/05/08 11:15:00 34
linux 42 93.3 2024/05/08 09:37:00 69 2024/05/08 11:23:00 0
aix 3 6.7 2024/05/08 09:52:00 80 2024/05/08 10:38:00 79
3.3.1 15 33.3 2024/05/08 09:37:00 69 2024/05/08 11:23:00 0
3.2.3 30 66.7 2024/05/08 09:52:00 80 2024/05/08 11:22:00 44

Source:

{ %cpu=i386 }
{ %opt=-O2 }

{$mode delphi}

uses classes;

function Read(Str: TStream): string;
begin
  SetLength(Result, Str.Size - Str.Position);
  writeln(str.size,' - ',str.Position);
  Writeln(Length(Result));
end;

var
  stream: TMemoryStream;
  buf: PChar;
  x: char;
  i: Integer;
  s : string;
begin
  stream := TMemoryStream.Create;
  x := 'A';
  buf := @x;
  for i := 0 to 26000 do begin
    stream.Write(buf, sizeof(buf^));
  end;
  stream.Position := 0;
  s:=Read(stream);
end.

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