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

t_id 263
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:12:00 85 2024/05/21 19:46:00 68
i386 3 6.0 2024/05/21 10:00:00 72 2024/05/21 11:28:00 79
powerpc 11 22.0 2024/05/21 18:58:00 44 2024/05/21 19:46:00 68
x86_64 1 2.0 2024/05/21 09:12:00 85 2024/05/21 09:12:00 85
powerpc64 14 28.0 2024/05/21 17:32:00 71 2024/05/21 18:38:00 103
aarch64 21 42.0 2024/05/21 09:57:00 38 2024/05/21 17:55:00 56
linux 35 70.0 2024/05/21 09:12:00 85 2024/05/21 19:46:00 68
go32v2 3 6.0 2024/05/21 10:00:00 72 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 4 8.0 2024/05/21 09:12:00 85 2024/05/21 11:28:00 79
3.2.3 46 92.0 2024/05/21 09:57:00 38 2024/05/21 19:46:00 68

Source:

{ Old file: tbs0004.pp }
{  tests the continue instruction in the for loop      OK 0.9.2 }

var
   i : longint;

begin
   for i:=1 to 100 do
     begin
        writeln('Hello');
        continue;
        writeln('ohh');
        Halt(1);
     end;
end.

Link to SVN view of tbs/tb0003.pp source.