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

t_id 373
t_adddate 2003/10/03
t_result 227
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 04:53:00 28 2024/06/02 07:20:00 0
i386 5 10.0 2024/06/02 04:53:00 28 2024/06/02 06:52:00 176
m68k 4 8.0 2024/06/02 06:05:00 190 2024/06/02 07:01:00 244
sparc 3 6.0 2024/06/02 06:04:00 43 2024/06/02 06:53:00 83
powerpc 3 6.0 2024/06/02 06:16:00 188 2024/06/02 07:20:00 0
arm 4 8.0 2024/06/02 06:33:00 210 2024/06/02 07:18:00 0
x86_64 4 8.0 2024/06/02 05:33:00 33 2024/06/02 07:19:00 0
powerpc64 5 10.0 2024/06/02 06:26:00 215 2024/06/02 07:20:00 0
mips 4 8.0 2024/06/02 06:13:00 240 2024/06/02 07:06:00 240
mipsel 4 8.0 2024/06/02 06:08:00 151 2024/06/02 07:13:00 148
aarch64 12 24.0 2024/06/02 06:02:00 30 2024/06/02 07:14:00 47
sparc64 1 2.0 2024/06/02 07:14:00 164 2024/06/02 07:14:00 164
loongarch64 1 2.0 2024/06/02 06:56:00 34 2024/06/02 06:56:00 34
linux 37 74.0 2024/06/02 06:05:00 190 2024/06/02 07:20:00 0
win32 1 2.0 2024/06/02 04:53:00 28 2024/06/02 04:53:00 28
go32v2 1 2.0 2024/06/02 06:25:00 60 2024/06/02 06:25:00 60
solaris 3 6.0 2024/06/02 05:33:00 33 2024/06/02 06:54:00 39
darwin 8 16.0 2024/06/02 06:02:00 30 2024/06/02 07:14:00 47
3.3.1 19 38.0 2024/06/02 05:33:00 33 2024/06/02 07:20:00 0
3.2.3 31 62.0 2024/06/02 04:53:00 28 2024/06/02 07:20:00 0

Source:

{ %RESULT=227 }
{ Old file: tbs0150.pp }
{ Shows that the assert() macro is missing under Delphi OK 0.99.9 (PFV) }

{
 bug to show that there is no assert() macro and directive
}

var B : boolean;
    i : integer;

begin
  b:=true;
  i:=0;
  // First for assert messages should not give anything.
  // First two generate code, but are OK.
  // second two don't generate code ($C- !)
{$c+}
  assert (b);
  assert (I=0);
{$c-}
  assert (not(b));
  assert (i<>0);
{$c+}
  // This one should give the normal assert message.
  assert (not(b));
  // This one should give a custom assert message.
  // you must uncomment the previous one to see this one.
  assert (not(I=0),'Custom assert message');
end.

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