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

t_id 677
t_adddate 2003/10/03
t_result 0
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
Successfully run 50 100.0 2024/05/21 02:33:00 24 2024/05/21 06:46:00 0
i386 3 6.0 2024/05/21 03:08:00 33 2024/05/21 06:01:00 28
m68k 2 4.0 2024/05/21 05:47:00 63 2024/05/21 06:07:00 190
sparc 1 2.0 2024/05/21 06:46:00 0 2024/05/21 06:46:00 0
powerpc 8 16.0 2024/05/21 06:13:00 42 2024/05/21 06:36:00 43
arm 3 6.0 2024/05/21 05:29:00 69 2024/05/21 06:43:00 0
x86_64 15 30.0 2024/05/21 02:33:00 24 2024/05/21 06:23:00 27
powerpc64 5 10.0 2024/05/21 05:39:00 106 2024/05/21 06:38:00 212
mips 3 6.0 2024/05/21 04:05:00 47 2024/05/21 06:16:00 240
mipsel 1 2.0 2024/05/21 06:23:00 148 2024/05/21 06:23:00 148
aarch64 9 18.0 2024/05/21 05:20:00 46 2024/05/21 06:36:00 32
linux 32 64.0 2024/05/21 02:33:00 24 2024/05/21 06:46:00 0
win32 1 2.0 2024/05/21 06:01:00 28 2024/05/21 06:01:00 28
solaris 10 20.0 2024/05/21 05:55:00 29 2024/05/21 06:19:00 29
darwin 7 14.0 2024/05/21 05:49:00 25 2024/05/21 06:35:00 23
3.3.1 19 38.0 2024/05/21 02:33:00 24 2024/05/21 06:36:00 43
3.2.3 31 62.0 2024/05/21 03:08:00 33 2024/05/21 06:46:00 0

Source:

uses
  sysutils;

var
  S : string;
  SR : TSearchRec;
  r : longint;
begin
r:=FindFirst('*.*',faAnyFile,SR);
while r=0 do
  begin
    r:=FileAge(SR.Name);
    if r<>-1 then
      begin
        S:=DateTimeToStr(FileDateToDateTime(r));
        Writeln(SR.Name,' has Date ',S);
      end;
    r:=FindNext(SR);
  end;
FindClose(SR);
end.

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