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

t_id 845
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/05/21 09:57:00 38 2024/05/21 22:27:00 44
i386 2 4.0 2024/05/21 10:44:00 75 2024/05/21 11:28:00 79
powerpc 12 24.0 2024/05/21 18:58:00 44 2024/05/21 19:57:00 75
powerpc64 14 28.0 2024/05/21 17:32:00 71 2024/05/21 18:38:00 103
aarch64 22 44.0 2024/05/21 09:57:00 38 2024/05/21 22:27:00 44
linux 36 72.0 2024/05/21 09:57:00 38 2024/05/21 22:27:00 44
go32v2 2 4.0 2024/05/21 10:44:00 75 2024/05/21 11:28:00 79
darwin 12 24.0 2024/05/21 16:23:00 32 2024/05/21 17:55:00 56
3.3.1 2 4.0 2024/05/21 10:44:00 75 2024/05/21 11:28:00 79
3.2.3 48 96.0 2024/05/21 09:57:00 38 2024/05/21 22:27:00 44

Source:

var  outfile:text;
     err:boolean;
begin
writeln('there should be three errors below:');

assign(outfile,'notexist.fil');
{$i-}
Append(outfile);
//rewrite(outfile);
{$i+}
//write(ioresult);  // 2 file not found
if IOResult <> 0 then writeln('err append')
else
 err:=true;

{$i-}
writeln(outfile,'----------------------');
{$i+}
//write(ioresult);   // 103 file not open
if IOResult <> 0 then writeln('err write')
else
 err:=true;

{$i-}
close(outfile);
{$i+}
//write(ioresult);  // 103 file not open
if IOResult <> 0 then writeln('err close')
else
 err:=true;

   if err then
     halt(1)
   else
     writeln('success');
end.

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