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

t_id 411
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/17 16:15:00 32 2024/05/17 23:49:00 41
i386 18 36.0 2024/05/17 22:07:00 21 2024/05/17 23:46:00 27
sparc 17 34.0 2024/05/17 23:24:00 38 2024/05/17 23:49:00 41
powerpc 1 2.0 2024/05/17 21:13:00 42 2024/05/17 21:13:00 42
powerpc64 13 26.0 2024/05/17 20:12:00 105 2024/05/17 20:54:00 132
aarch64 1 2.0 2024/05/17 16:15:00 32 2024/05/17 16:15:00 32
linux 15 30.0 2024/05/17 20:12:00 105 2024/05/17 23:46:00 27
win32 5 10.0 2024/05/17 22:07:00 21 2024/05/17 23:41:00 23
solaris 29 58.0 2024/05/17 23:23:00 25 2024/05/17 23:49:00 41
darwin 1 2.0 2024/05/17 16:15:00 32 2024/05/17 16:15:00 32
3.3.1 40 80.0 2024/05/17 20:12:00 105 2024/05/17 23:46:00 27
3.2.3 10 20.0 2024/05/17 16:15:00 32 2024/05/17 23:49:00 41

Source:

{ Old file: tbs0209.pp }
{ problem with boolean expressions of different store sizes }

program bug0209;

{ problem with boolean expression mixing different boolean sizes }

var
  b : boolean;
  wb : wordbool;
  lb : longbool;
begin
  b:=true;
  wb:=true;
  lb:=true;
  if (not b) or (not wb) or (not lb) then
    begin
       Writeln('Error with boolean expressions of different sizes');
       Halt(1);
    end;
end.

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