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

t_id 1326
t_adddate 2004/08/09
t_result 207
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=40 Percentage= 80.00

Result type Cat. Count Percentage First date Last Date
Failed to run 10 20.0 2024/05/17 11:30:00 242 2024/05/17 16:28:00 32
sparc 1 10.0 2024/05/17 12:01:00 74 2024/05/17 12:01:00 74
powerpc 1 10.0 2024/05/17 11:30:00 242 2024/05/17 11:30:00 242
x86_64 2 20.0 2024/05/17 12:23:00 31 2024/05/17 14:42:00 39
powerpc64 2 20.0 2024/05/17 11:34:00 242 2024/05/17 11:39:00 59
aarch64 3 30.0 2024/05/17 16:15:00 32 2024/05/17 16:28:00 32
sparc64 1 10.0 2024/05/17 12:19:00 173 2024/05/17 12:19:00 173
linux 6 60.0 2024/05/17 11:30:00 242 2024/05/17 12:23:00 31
darwin 3 30.0 2024/05/17 16:15:00 32 2024/05/17 16:28:00 32
win64 1 10.0 2024/05/17 14:42:00 39 2024/05/17 14:42:00 39
3.3.1 7 70.0 2024/05/17 11:30:00 242 2024/05/17 14:42:00 39
3.2.3 3 30.0 2024/05/17 16:15:00 32 2024/05/17 16:28:00 32
Successfully run 40 80.0 2024/05/17 11:04:00 38 2024/05/17 13:34:00 47
i386 10 25.0 2024/05/17 11:29:00 44 2024/05/17 12:24:00 45
x86_64 24 60.0 2024/05/17 11:10:00 26 2024/05/17 13:34:00 47
mips 1 2.5 2024/05/17 11:21:00 241 2024/05/17 11:21:00 241
aarch64 4 10.0 2024/05/17 11:04:00 38 2024/05/17 12:15:00 38
riscv64 1 2.5 2024/05/17 11:56:00 31 2024/05/17 11:56:00 31
linux 29 72.5 2024/05/17 11:04:00 38 2024/05/17 12:48:00 22
solaris 10 25.0 2024/05/17 11:29:00 44 2024/05/17 12:24:00 45
win64 1 2.5 2024/05/17 13:34:00 47 2024/05/17 13:34:00 47
3.3.1 12 30.0 2024/05/17 11:10:00 26 2024/05/17 13:34:00 47
3.2.2 10 25.0 2024/05/17 11:29:00 44 2024/05/17 12:24:00 45
3.2.3 18 45.0 2024/05/17 11:04:00 38 2024/05/17 12:36:00 36

Source:

{ %RESULT=207 }
{ Source provided for Free Pascal Bug Report 3160 }
{ Submitted by "Michalis Kamburelis" on  2004-06-12 }
{ e-mail: michalis@camelot.homedns.org }
var A:Extended;
begin
 { All lines below will raise runtime error 207
   (Invalid floating point operation, converted to EInvalidOp exception)
   under Win32.

   But under Linux they raise runtime error 216
   (General protection fault, converted to EAccessViolation). }
 A:=0;   Writeln(0 / A);
 A:=-3;  Writeln(Ln(A));
 A:=-3;  Writeln(Sqrt(A));
end.

Link to SVN view of webtbs/tw3160a.pp source.