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

t_id 503
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/21 01:22:00 34 2024/05/21 03:31:00 0
i386 10 20.0 2024/05/21 01:22:00 34 2024/05/21 03:02:00 25
x86_64 35 70.0 2024/05/21 01:33:00 15 2024/05/21 03:31:00 0
aarch64 5 10.0 2024/05/21 01:42:00 32 2024/05/21 03:08:00 37
linux 42 84.0 2024/05/21 01:22:00 34 2024/05/21 03:20:00 18
win32 1 2.0 2024/05/21 03:02:00 25 2024/05/21 03:02:00 25
solaris 7 14.0 2024/05/21 03:08:00 30 2024/05/21 03:31:00 0
3.3.1 34 68.0 2024/05/21 01:33:00 15 2024/05/21 03:31:00 0
3.2.3 16 32.0 2024/05/21 01:22:00 34 2024/05/21 03:19:00 27

Source:

{ Old file: tbs0329.pp }
{  }

{$packrecords c}

type
     SHORT=smallint;
     WINBOOL = longbool;
     WCHAR=word;
     UINT=cardinal;

     COORD = record
          X : SHORT;
          Y : SHORT;
       end;

     KEY_EVENT_RECORD = packed record
          bKeyDown : WINBOOL;
          wRepeatCount : WORD;
          wVirtualKeyCode : WORD;
          wVirtualScanCode : WORD;
          case longint of
             0 : ( UnicodeChar : WCHAR;
                   dwControlKeyState : DWORD; );
             1 : ( AsciiChar : CHAR );
       end;

     MOUSE_EVENT_RECORD = record
          dwMousePosition : COORD;
          dwButtonState : DWORD;
          dwControlKeyState : DWORD;
          dwEventFlags : DWORD;
       end;

     WINDOW_BUFFER_SIZE_RECORD = record
          dwSize : COORD;
       end;

     MENU_EVENT_RECORD = record
          dwCommandId : UINT;
       end;

     FOCUS_EVENT_RECORD = record
          bSetFocus : WINBOOL;
       end;

     INPUT_RECORD = record
          EventType : WORD;
              case longint of
                 0 : ( KeyEvent : KEY_EVENT_RECORD );
                 1 : ( MouseEvent : MOUSE_EVENT_RECORD );
                 2 : ( WindowBufferSizeEvent : WINDOW_BUFFER_SIZE_RECORD );
                 3 : ( MenuEvent : MENU_EVENT_RECORD );
                 4 : ( FocusEvent : FOCUS_EVENT_RECORD );
       end;

const
{$ifdef cpu68k}
  { GNU C only aligns at word boundaries 
    for m68k cpu PM }
  correct_size = 18;
{$else }
  correct_size = 20;
{$endif }  
begin
  if sizeof(INPUT_RECORD)<>correct_size then
   begin
     writeln('Wrong packing for Packrecords C and union ',sizeof(INPUT_RECORD),' instead of ',correct_size);
     halt(1);
   end;
end.

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