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

t_id 265
t_adddate 2003/10/03
t_result 0
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=49 Percentage= 98.00

Result type Cat. Count Percentage First date Last Date
Failed to run 1 2.0 2024/09/26 19:39:00 188 2024/09/26 19:39:00 188
riscv64 1 100.0 2024/09/26 19:39:00 188 2024/09/26 19:39:00 188
linux 1 100.0 2024/09/26 19:39:00 188 2024/09/26 19:39:00 188
3.3.1 1 100.0 2024/09/26 19:39:00 188 2024/09/26 19:39:00 188
Successfully run 49 98.0 2024/09/26 18:42:00 90 2024/09/26 23:02:00 44
i386 4 8.2 2024/09/26 19:54:00 70 2024/09/26 22:38:00 79
powerpc 14 28.6 2024/09/26 19:41:00 35 2024/09/26 23:02:00 44
powerpc64 17 34.7 2024/09/26 18:42:00 90 2024/09/26 22:29:00 103
wasm32 7 14.3 2024/09/26 19:31:00 339 2024/09/26 22:50:00 299
riscv64 7 14.3 2024/09/26 19:14:00 123 2024/09/26 19:59:00 123
linux 38 77.6 2024/09/26 18:42:00 90 2024/09/26 23:02:00 44
go32v2 4 8.2 2024/09/26 19:54:00 70 2024/09/26 22:38:00 79
wasi 7 14.3 2024/09/26 19:31:00 339 2024/09/26 22:50:00 299
3.3.1 33 67.3 2024/09/26 18:42:00 90 2024/09/26 22:50:00 299
3.2.3 16 32.7 2024/09/26 21:17:00 71 2024/09/26 23:02:00 44

Source:

{ Old file: tbs0006.pp }
{  tests the wrong floating point code generation      OK 0.9.2 }

uses
  erroru;
var
   a,b,c,d,e,f,g,r : double;

begin
   a:=10.0;
   b:=11.0;
   c:=13.0;
   d:=17.0;
   e:=19.0;
   f:=23.0;
   r:=2.0;
   a:= a - 2*b*e - 2*c*f - 2*d*g - Sqr(r);
   writeln(a,' (must be -1010)');
   if a<>-1010.0 then
     Error;
end.

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