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

t_id 1453
t_adddate 2005/01/19
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 because for other target 5 10.0 2024/05/17 23:52:00 41 2024/05/18 00:34:00 30
i386 1 20.0 2024/05/18 00:21:00 24 2024/05/18 00:21:00 24
sparc 1 20.0 2024/05/17 23:52:00 41 2024/05/17 23:52:00 41
x86_64 3 60.0 2024/05/18 00:21:00 30 2024/05/18 00:34:00 30
win32 1 20.0 2024/05/18 00:21:00 24 2024/05/18 00:21:00 24
solaris 4 80.0 2024/05/17 23:52:00 41 2024/05/18 00:34:00 30
3.3.1 1 20.0 2024/05/18 00:21:00 24 2024/05/18 00:21:00 24
3.2.3 4 80.0 2024/05/17 23:52:00 41 2024/05/18 00:34:00 30
Skipping test run because it is a unit 45 90.0 2024/05/18 00:11:00 33 2024/05/18 01:32:00 24
i386 38 84.4 2024/05/18 00:34:00 24 2024/05/18 01:32:00 24
x86_64 3 6.7 2024/05/18 01:24:00 26 2024/05/18 01:32:00 15
powerpc64 2 4.4 2024/05/18 01:09:00 101 2024/05/18 01:11:00 108
aarch64 2 4.4 2024/05/18 00:11:00 33 2024/05/18 00:52:00 35
linux 45 100.0 2024/05/18 00:11:00 33 2024/05/18 01:32:00 24
3.3.1 23 51.1 2024/05/18 00:11:00 33 2024/05/18 01:32:00 24
3.2.3 22 48.9 2024/05/18 00:34:00 24 2024/05/18 01:31:00 26

Source:

{ %target=linux,freebsd }

{ Source provided for Free Pascal Bug Report 3257 }
{ Submitted by "peter green" on  2004-08-18 }
{ e-mail: plugwash@p10link.net }
unit tw3257;

{$mode delphi}
{$inline on}

interface

implementation
uses
  baseunix,unix,sysutils;

  procedure gettimeofday(var tv:ttimeval);inline;
    begin
      fpgettimeofday(@tv,nil);
    end;
    function gettimeofdaysec : longint;inline;
    var
      tv:ttimeval;
    begin
      gettimeofday(tv);
      result := tv.tv_sec;
    end;
end.

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