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

t_id 632
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/06/02 01:36:00 47 2024/06/02 05:04:00 31
i386 5 10.0 2024/06/02 01:36:00 47 2024/06/02 04:24:00 56
m68k 1 2.0 2024/06/02 03:55:00 53 2024/06/02 03:55:00 53
sparc 1 2.0 2024/06/02 03:32:00 41 2024/06/02 03:32:00 41
powerpc 1 2.0 2024/06/02 04:10:00 238 2024/06/02 04:10:00 238
x86_64 32 64.0 2024/06/02 01:57:00 0 2024/06/02 05:04:00 31
powerpc64 4 8.0 2024/06/02 04:15:00 53 2024/06/02 04:32:00 57
mips 1 2.0 2024/06/02 04:00:00 47 2024/06/02 04:00:00 47
mipsel 1 2.0 2024/06/02 04:06:00 185 2024/06/02 04:06:00 185
aarch64 4 8.0 2024/06/02 01:46:00 0 2024/06/02 03:42:00 31
linux 36 72.0 2024/06/02 01:36:00 47 2024/06/02 04:32:00 57
win32 1 2.0 2024/06/02 03:03:00 25 2024/06/02 03:03:00 25
go32v2 2 4.0 2024/06/02 03:45:00 54 2024/06/02 04:24:00 56
solaris 11 22.0 2024/06/02 02:58:00 19 2024/06/02 05:04:00 31
3.3.1 35 70.0 2024/06/02 01:46:00 0 2024/06/02 05:04:00 31
3.2.3 15 30.0 2024/06/02 01:36:00 47 2024/06/02 04:32:00 57

Source:

{ Testing smallset + normset }
{ with respect to normset + smallset }


type
  charset=set of char;

  var
     err : byte;
     tr,tr2    : charset;


  procedure test(const k:charset);

    begin
       tr:=[#7..#10]+k;
       tr2:=k+[#7..#10];
    end;

  begin
     err:=0;
     Test([#20..#32]);
     if not(#32 in tr) then
      err:=1;
     if ([#33..#255]*tr <> []) then
      err:=2;
     if (tr<>[#7..#10,#20..#32]) then
      err:=3;
     if (tr<>tr2) then
      err:=4;
     if err<>0 then
       begin
         Writeln('Bug in set handling, see err:=',err);
         halt(1);
       end;
  end.

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