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

t_id 59
t_adddate 2003/10/03
t_result 0
Flag t_needlibrary set
t_knownrunerror 0
t_opts -Fl.

Detailed test run results:

Record count: 50

Total = 50

OK=25 Percentage= 50.00

Skipped=3 Percentage= 6.00

Result type Cat. Count Percentage First date Last Date
Failed to run 22 44.0 2024/05/21 01:52:00 47 2024/05/21 05:53:00 67
i386 2 9.1 2024/05/21 01:52:00 47 2024/05/21 03:21:00 35
sparc 1 4.5 2024/05/21 04:50:00 56 2024/05/21 04:50:00 56
powerpc 1 4.5 2024/05/21 04:15:00 238 2024/05/21 04:15:00 238
arm 1 4.5 2024/05/21 05:53:00 67 2024/05/21 05:53:00 67
x86_64 3 13.6 2024/05/21 02:05:00 35 2024/05/21 02:46:00 43
powerpc64 14 63.6 2024/05/21 04:20:00 53 2024/05/21 05:49:00 112
linux 22 100.0 2024/05/21 01:52:00 47 2024/05/21 05:53:00 67
3.3.1 14 63.6 2024/05/21 04:15:00 238 2024/05/21 05:49:00 112
3.2.3 8 36.4 2024/05/21 01:52:00 47 2024/05/21 05:53:00 67
Successfully run 25 50.0 2024/05/21 01:40:00 15 2024/05/21 05:57:00 0
i386 2 8.0 2024/05/21 04:53:00 28 2024/05/21 05:38:00 44
m68k 1 4.0 2024/05/21 05:47:00 63 2024/05/21 05:47:00 63
x86_64 14 56.0 2024/05/21 01:40:00 15 2024/05/21 05:55:00 0
mips 1 4.0 2024/05/21 05:57:00 0 2024/05/21 05:57:00 0
mipsel 1 4.0 2024/05/21 04:11:00 185 2024/05/21 04:11:00 185
aarch64 5 20.0 2024/05/21 04:37:00 35 2024/05/21 05:56:00 0
riscv64 1 4.0 2024/05/21 04:44:00 30 2024/05/21 04:44:00 30
linux 18 72.0 2024/05/21 01:40:00 15 2024/05/21 05:57:00 0
win32 1 4.0 2024/05/21 04:53:00 28 2024/05/21 04:53:00 28
solaris 3 12.0 2024/05/21 03:16:00 19 2024/05/21 05:55:00 0
darwin 3 12.0 2024/05/21 05:42:00 24 2024/05/21 05:56:00 0
3.3.1 12 48.0 2024/05/21 01:40:00 15 2024/05/21 05:56:00 0
3.2.3 13 52.0 2024/05/21 03:47:00 27 2024/05/21 05:57:00 0
Skipping test because for other target 3 6.0 2024/05/21 04:13:00 54 2024/05/21 05:41:00 55
i386 3 100.0 2024/05/21 04:13:00 54 2024/05/21 05:41:00 55
go32v2 3 100.0 2024/05/21 04:13:00 54 2024/05/21 05:41:00 55
3.2.3 3 100.0 2024/05/21 04:13:00 54 2024/05/21 05:41:00 55

Source:

{ %OPT=-Fl. }
{ %NEEDLIBRARY }

{ Test program to test linking to fpc library }

{$ifdef win32}
 {$define supported}
{$endif win32}
{$ifdef Unix}
 {$define supported}
{$endif Unix}
{$ifndef fpc}
   {$define supported}
{$endif}

{$ifdef supported}

const
{$ifdef win32}
  libname='tlibrary1.dll';
{$else}
  libname='libtlibrary1.so';
{$endif}

procedure test;external libname name 'TestName';

begin
  test;
end.
{$else not supported}
begin
  Writeln('Dummy test because target does not support libraries');
end.
{$endif not supported}

Link to SVN view of test/tlibrary2.pp source.