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

t_id 1531
t_adddate 2005/03/18
t_result 0
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=49 Percentage= 98.00

Result type Cat. Count Percentage First date Last Date
Failed to run 1 2.0 2024/05/21 06:00:00 175 2024/05/21 06:00:00 175
i386 1 100.0 2024/05/21 06:00:00 175 2024/05/21 06:00:00 175
linux 1 100.0 2024/05/21 06:00:00 175 2024/05/21 06:00:00 175
3.2.3 1 100.0 2024/05/21 06:00:00 175 2024/05/21 06:00:00 175
Successfully run 49 98.0 2024/05/21 01:40:00 15 2024/05/21 06:02:00 29
i386 7 14.3 2024/05/21 03:08:00 0 2024/05/21 06:01:00 28
m68k 1 2.0 2024/05/21 05:47:00 63 2024/05/21 05:47:00 63
sparc 1 2.0 2024/05/21 04:50:00 56 2024/05/21 04:50:00 56
arm 1 2.0 2024/05/21 05:53:00 67 2024/05/21 05:53:00 67
x86_64 18 36.7 2024/05/21 01:40:00 15 2024/05/21 06:00:00 29
powerpc64 12 24.5 2024/05/21 04:20:00 53 2024/05/21 05:49:00 112
mips 2 4.1 2024/05/21 04:05:00 0 2024/05/21 05:57:00 160
aarch64 6 12.2 2024/05/21 04:37:00 35 2024/05/21 06:02:00 29
riscv64 1 2.0 2024/05/21 04:44:00 30 2024/05/21 04:44:00 30
linux 37 75.5 2024/05/21 01:40:00 15 2024/05/21 05:57:00 160
win32 2 4.1 2024/05/21 04:53:00 28 2024/05/21 06:01:00 28
go32v2 2 4.1 2024/05/21 04:56:00 56 2024/05/21 05:41:00 55
solaris 4 8.2 2024/05/21 03:16:00 19 2024/05/21 06:00:00 29
darwin 4 8.2 2024/05/21 05:42:00 24 2024/05/21 06:02:00 29
3.3.1 26 53.1 2024/05/21 01:40:00 15 2024/05/21 06:02:00 29
3.2.3 23 46.9 2024/05/21 02:05:00 35 2024/05/21 06:01:00 28

Source:

{$ifdef UNIX}
uses
  cwstring;
{$endif UNIX}

var
  i : longint;
  w,w2 : widestring;
  a : ansistring;
  
begin
  setlength(w,1000);
  for i:=1 to 1000 do
    w[i]:=widechar(i);
  for i:=1 to 10 do
    begin
      a:=w;
      w2:=a;
    end;
end.

Link to SVN view of test/twide2.pp source.