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

t_id 976
t_version 1.1
t_adddate 2003/10/03
t_result 0
t_knownrunerror 0

Detailed test run results:

Record count: 50

Total = 50

OK=26 Percentage= 52.00

Skipped=24 Percentage= 48.00

Result type Cat. Count Percentage First date Last Date
Successfully run 26 52.0 2024/05/08 23:35:00 32 2024/05/09 01:17:00 3
i386 26 100.0 2024/05/08 23:35:00 32 2024/05/09 01:17:00 3
linux 25 96.2 2024/05/08 23:35:00 32 2024/05/09 01:17:00 3
win32 1 3.8 2024/05/08 23:57:00 23 2024/05/08 23:57:00 23
3.3.1 10 38.5 2024/05/08 23:57:00 23 2024/05/09 01:17:00 3
3.2.3 16 61.5 2024/05/08 23:35:00 32 2024/05/09 01:16:00 28
Skipping test because for other cpu 24 48.0 2024/05/08 23:40:00 46 2024/05/09 01:13:00 46
sparc 4 16.7 2024/05/08 23:40:00 46 2024/05/09 01:13:00 46
x86_64 8 33.3 2024/05/08 23:44:00 22 2024/05/09 01:11:00 24
powerpc64 10 41.7 2024/05/09 00:20:00 46 2024/05/09 01:11:00 108
aarch64 2 8.3 2024/05/09 00:13:00 32 2024/05/09 00:58:00 35
linux 17 70.8 2024/05/09 00:13:00 32 2024/05/09 01:11:00 108
solaris 4 16.7 2024/05/08 23:40:00 46 2024/05/09 01:13:00 46
win64 3 12.5 2024/05/08 23:44:00 22 2024/05/09 00:57:00 26
3.3.1 22 91.7 2024/05/08 23:40:00 46 2024/05/09 01:13:00 46
3.2.3 2 8.3 2024/05/08 23:55:00 41 2024/05/09 00:54:00 39

Source:

{ %version=1.1 }
{ Source provided for Free Pascal Bug Report 2668 }
{ Submitted by "Marco" on  2003-09-06 }
{ e-mail: marco+bugs@freepascal.org }

{$MODE DELPHI} {$ASMMODE INTEL}

type
  TFloatingPointClass =
   (
    fpZero,     // zero
    fpNormal,   // normal finite <> 0
    fpDenormal, // denormalized finite
    fpInfinite, // infinite
    fpNaN,      // not a number
    fpInvalid   // unsupported floating point format
   );

const
  FPClasses: array [0..5] of TFloatingPointClass =
   (
    fpInvalid,
    fpNaN,
    fpNormal,
    fpInfinite,
    fpZero,
    fpDenormal
   );

asm
        MOVZX   EAX, TFloatingPointClass(FPClasses[EDX])
        MOVZX   EAX, TFloatingPointClass([ECX].FPClasses[EDX])
end.

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