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

t_id 1111
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/17 12:06:00 45 2024/05/17 23:31:00 40
i386 11 22.0 2024/05/17 12:06:00 45 2024/05/17 23:31:00 27
sparc 6 12.0 2024/05/17 23:24:00 38 2024/05/17 23:31:00 40
powerpc 1 2.0 2024/05/17 21:13:00 42 2024/05/17 21:13:00 42
x86_64 14 28.0 2024/05/17 12:20:00 29 2024/05/17 14:42:00 39
powerpc64 13 26.0 2024/05/17 20:12:00 105 2024/05/17 20:54:00 132
aarch64 4 8.0 2024/05/17 12:15:00 38 2024/05/17 16:28:00 32
sparc64 1 2.0 2024/05/17 12:19:00 173 2024/05/17 12:19:00 173
linux 28 56.0 2024/05/17 12:15:00 38 2024/05/17 21:13:00 42
win32 4 8.0 2024/05/17 22:07:00 21 2024/05/17 23:27:00 24
solaris 13 26.0 2024/05/17 12:06:00 45 2024/05/17 23:31:00 40
darwin 3 6.0 2024/05/17 16:15:00 32 2024/05/17 16:28:00 32
win64 2 4.0 2024/05/17 13:34:00 47 2024/05/17 14:42:00 39
3.3.1 38 76.0 2024/05/17 12:19:00 173 2024/05/17 23:31:00 40
3.2.2 2 4.0 2024/05/17 12:06:00 45 2024/05/17 12:24:00 45
3.2.3 10 20.0 2024/05/17 12:15:00 38 2024/05/17 23:30:00 38

Source:

{ %FAIL }
unit tw1995;

interface

type
  TMemoryManager = record
    FreememSize : Function(p:pointer;Size:Longint):Longint;
  end;

  TMemoryManager2 = record
    FreememSize : Function(var p:pointer;Size:Longint):Longint;
  end;

  Function CFreeMemSize(var p:pointer;Size:Longint):Longint;
  Function CFreeMemSize2(p:pointer;Size:Longint):Longint;


Const
 CMemoryManager : TMemoryManager =
    (
      FreememSize : {$ifdef fpc}@{$endif}CFreememSize;
    );

 CMemoryManager2 : TMemoryManager2 =
    (
      FreememSize : {$ifdef fpc}@{$endif}CFreememSize2;
    );

implementation

Function CFreeMemSize(var p:pointer;Size:Longint):Longint;
begin
  CFreeMemSize:=0;
end;

Function CFreeMemSize2(p:pointer;Size:Longint):Longint;
begin
  CFreeMemSize2:=0;
end;

end.


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