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

t_id 1125
t_adddate 2003/10/14
t_result 0
Flag t_fail set
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
Success, compilation failed 50 100.0 2024/05/21 01:28:00 26 2024/05/21 02:03:00 0
i386 24 48.0 2024/05/21 01:33:00 43 2024/05/21 01:58:00 33
x86_64 24 48.0 2024/05/21 01:28:00 26 2024/05/21 02:03:00 0
aarch64 2 4.0 2024/05/21 01:46:00 38 2024/05/21 02:03:00 0
linux 50 100.0 2024/05/21 01:28:00 26 2024/05/21 02:03:00 0
3.3.1 29 58.0 2024/05/21 01:30:00 14 2024/05/21 02:03:00 0
3.2.3 21 42.0 2024/05/21 01:28:00 26 2024/05/21 02:01:00 34

Source:

{ %fail }

{ Source provided for Free Pascal Bug Report 2478 }
{ Submitted by "Louis Jean-Richard" on  2003-04-30 }
{ e-mail: Ljean_richard@compuserve.com }
UNIT tw2478;
{$HINTS OFF}
INTERFACE
TYPE
        aByteArray = ARRAY[1 .. 100] OF byte;
        aCardinalArray = ARRAY[4 .. 100] OF byte;
        aType1 = ARRAY[12 .. 100] OF byte;
TYPE
        anObject =
                OBJECT
                        PUBLIC
                                PROCEDURE Method( CONST aba: aByteArray );
                                PROCEDURE Method( CONST clt: aType1 );
                        PRIVATE
                                PROCEDURE Method( CONST aba: aByteArray; CONST clt: aType1 );
                                PROCEDURE Method( CONST aca: aCardinalArray; CONST clt: aType1 );
                                PROCEDURE Method( cp, cc: cardinal; CONST clt: aType1 );
                END
                ;
{       *************************************************************** }
IMPLEMENTATION
PROCEDURE anObject.Method( CONST aba: aByteArray );
BEGIN END;
PROCEDURE anObject.Method( CONST aba: aByteArray; CONST clt: aType1 );
BEGIN END;
PROCEDURE anObject.Method( CONST aca: aCardinalArray; CONST clt: aType1 );
BEGIN END;
PROCEDURE anObject.Method( CONST clt: aType1 );
BEGIN END;
INITIALIZATION
FINALIZATION
END
.

Link to SVN view of webtbf/tw2478.pp source.