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

t_id 1081
t_adddate 2003/10/14
t_result 0
Flag t_fail set
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
Success, compilation failed 50 100.0 2024/05/21 01:42:00 23 2024/05/21 02:15:00 39
i386 21 42.0 2024/05/21 01:42:00 23 2024/05/21 02:15:00 39
x86_64 27 54.0 2024/05/21 01:43:00 15 2024/05/21 02:14:00 18
aarch64 2 4.0 2024/05/21 01:46:00 38 2024/05/21 02:03:00 35
linux 49 98.0 2024/05/21 01:42:00 23 2024/05/21 02:15:00 39
win32 1 2.0 2024/05/21 02:04:00 34 2024/05/21 02:04:00 34
3.3.1 34 68.0 2024/05/21 01:42:00 23 2024/05/21 02:15:00 39
3.2.3 16 32.0 2024/05/21 01:42:00 33 2024/05/21 02:13:00 35

Source:

{ %FAIL }

var
  dat : file of byte;
  j : longint;
  Buffer : Array[0..2047] of byte;

begin
  for j:=0 to 2047 do
    Buffer[j]:=j and $ff;
  Assign(dat,'tbug896.tmp');
  Rewrite(dat,1);
  for j:= 0 to 2047 do
  { writeln should not be allowed for typed files }
    writeln (dat,Buffer[j]);
  Close(dat);
end.

Link to SVN view of webtbf/tw0896a.pp source.