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

t_id 58
t_adddate 2003/10/03
t_result 0
Flag t_norun set
t_knownrunerror 0
t_opts -FE.

Detailed test run results:

Record count: 50

Total = 50

OK=0 Percentage= 0.00

Skipped=50 Percentage= 100.00

Result type Cat. Count Percentage First date Last Date
Skipping run test 50 100.0 2024/05/08 17:02:00 31 2024/05/08 22:24:00 37
i386 6 12.0 2024/05/08 17:34:00 34 2024/05/08 20:34:00 44
m68k 3 6.0 2024/05/08 19:15:00 190 2024/05/08 20:43:00 63
sparc 3 6.0 2024/05/08 20:01:00 79 2024/05/08 21:40:00 68
powerpc 3 6.0 2024/05/08 19:37:00 185 2024/05/08 21:11:00 188
arm 3 6.0 2024/05/08 19:02:00 59 2024/05/08 20:25:00 69
x86_64 9 18.0 2024/05/08 19:43:00 23 2024/05/08 22:24:00 37
powerpc64 6 12.0 2024/05/08 19:44:00 213 2024/05/08 21:28:00 73
mips 3 6.0 2024/05/08 19:23:00 240 2024/05/08 20:52:00 160
mipsel 3 6.0 2024/05/08 19:30:00 229 2024/05/08 21:02:00 151
aarch64 8 16.0 2024/05/08 17:02:00 31 2024/05/08 20:16:00 46
sparc64 3 6.0 2024/05/08 20:18:00 148 2024/05/08 22:05:00 151
linux 36 72.0 2024/05/08 18:55:00 44 2024/05/08 22:13:00 104
win32 3 6.0 2024/05/08 17:34:00 34 2024/05/08 19:00:00 22
darwin 5 10.0 2024/05/08 17:02:00 31 2024/05/08 17:40:00 56
win64 6 12.0 2024/05/08 19:43:00 23 2024/05/08 22:24:00 37
3.3.1 3 6.0 2024/05/08 17:34:00 34 2024/05/08 19:00:00 22
3.2.3 47 94.0 2024/05/08 17:02:00 31 2024/05/08 22:24:00 37

Source:

{ %OPT=-FE. }
{ %NORUN }

{ The .so of the library needs to be in the current dir when
  testing the loading at runtime }

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

{$ifdef supported}

library bug;

const
   publicname='TestName';
   publicindex = 1234;

procedure Test;export;

 begin
   writeln('Hoi');
 end;

exports
  Test name publicname;
{$ifdef supportidx}
exports
  Test index publicindex;
{$endif}

begin
end.
{$else supported}
begin
  Writeln('No library for that target');
end.
{$endif supported}

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