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

t_id 1474
t_adddate 2005/01/31
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 01:33:00 35 2024/06/02 02:42:00 36
i386 16 32.0 2024/06/02 01:33:00 35 2024/06/02 02:36:00 32
sparc 1 2.0 2024/06/02 02:33:00 41 2024/06/02 02:33:00 41
x86_64 31 62.0 2024/06/02 01:34:00 16 2024/06/02 02:42:00 36
aarch64 2 4.0 2024/06/02 02:19:00 41 2024/06/02 02:36:00 40
linux 49 98.0 2024/06/02 01:33:00 35 2024/06/02 02:42:00 36
solaris 1 2.0 2024/06/02 02:33:00 41 2024/06/02 02:33:00 41
3.3.1 26 52.0 2024/06/02 01:33:00 35 2024/06/02 02:42:00 36
3.2.3 24 48.0 2024/06/02 01:38:00 27 2024/06/02 02:41:00 35

Source:

{ Source provided for Free Pascal Bug Report 3612 }
{ Submitted by "Alexey Barkovoy" on  2005-01-30 }
{ e-mail: clootie@ixbt.com }
var
  str: array[0..200] of WideChar;
  w: PWideChar;
  s: String;
begin
  str:= 'abcdefgh';
  w:= str;
  s:= w;
  WriteLn(s);
  w:= str + 2;
  s:= w;
  WriteLn(s); // will output "bcdefgh" instead of "cdefgh"
  if s<>'cdefgh' then
    halt(1);
end.

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