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

t_id 1181
t_adddate 2003/11/02
t_result 0
t_knownrunerror 0

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 test run because it is a unit 50 100.0 2024/06/02 05:33:00 33 2024/06/02 09:07:00 31
i386 4 8.0 2024/06/02 06:52:00 176 2024/06/02 09:07:00 31
m68k 3 6.0 2024/06/02 06:59:00 190 2024/06/02 07:38:00 58
sparc 3 6.0 2024/06/02 07:40:00 63 2024/06/02 07:48:00 74
powerpc 5 10.0 2024/06/02 06:28:00 184 2024/06/02 07:58:00 246
arm 1 2.0 2024/06/02 07:18:00 40 2024/06/02 07:18:00 40
x86_64 5 10.0 2024/06/02 05:33:00 33 2024/06/02 08:10:00 31
powerpc64 6 12.0 2024/06/02 07:20:00 242 2024/06/02 07:35:00 71
mips 3 6.0 2024/06/02 07:06:00 240 2024/06/02 07:45:00 246
mipsel 5 10.0 2024/06/02 06:21:00 148 2024/06/02 07:53:00 52
aarch64 9 18.0 2024/06/02 06:09:00 30 2024/06/02 08:02:00 37
sparc64 4 8.0 2024/06/02 07:14:00 164 2024/06/02 08:05:00 175
riscv64 1 2.0 2024/06/02 07:42:00 31 2024/06/02 07:42:00 31
loongarch64 1 2.0 2024/06/02 07:32:00 38 2024/06/02 07:32:00 38
linux 41 82.0 2024/06/02 06:21:00 148 2024/06/02 08:10:00 31
go32v2 1 2.0 2024/06/02 07:53:00 69 2024/06/02 07:53:00 69
solaris 3 6.0 2024/06/02 05:33:00 33 2024/06/02 09:07:00 31
darwin 5 10.0 2024/06/02 06:09:00 30 2024/06/02 07:14:00 47
3.3.1 26 52.0 2024/06/02 05:33:00 33 2024/06/02 08:10:00 31
3.2.3 24 48.0 2024/06/02 06:21:00 148 2024/06/02 09:07:00 31

Source:

{ Source provided for Free Pascal Bug Report 2536 }
{ Submitted by "Michael Van Canneyt" on  2003-06-14 }
{ e-mail: Michael.VanCanneyt@wisa.be }
unit tw2536;

interface

Type
  TWSAData = Pointer;

var

  // Delphi accepts this.
  WSAStartup: function(wVersionRequired: Word; var WSData: TWSAData): Integer stdcall = nil;
  // FPC accepts this.
  WSAStartup2: function(wVersionRequired: Word; var WSData: TWSAData): Integer = nil; stdcall;

implementation

end.unit testu2;

interface

Type
  TWSAData = Pointer;

const

  // FPC and Delphi accepts this.
  WSAStartup: function(wVersionRequired: Word; var WSData: TWSAData): Integer stdcall = nil;
  // FPC does not accept this.
  WSAStartup2: function(wVersionRequired: Word; var WSData: TWSAData): Integer = nil; stdcall;

implementation
end.

unit testu3;

interface

Type
  TWSAData = Pointer;
  TStartupFunction = function(wVersionRequired: Word; var WSData: TWSAData): Integer stdcall;
  TStartupFunction2 = function(wVersionRequired: Word; var WSData: TWSAData): Integer; stdcall;

var

  WSAStartup: TStartupFunction = nil;
  WSAStartup2: TStartupFunction2 = Nil;

implementation

end.

Link to SVN view of webtbs/tw2536.pp source.