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

t_id 461
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/10/19 09:39:00 55 2024/10/19 19:16:00 192
i386 5 10.0 2024/10/19 09:39:00 55 2024/10/19 11:13:00 63
m68k 2 4.0 2024/10/19 09:50:00 39 2024/10/19 10:22:00 40
sparc 2 4.0 2024/10/19 10:30:00 43 2024/10/19 11:16:00 40
powerpc 5 10.0 2024/10/19 10:03:00 203 2024/10/19 13:52:00 63
x86_64 10 20.0 2024/10/19 10:50:00 30 2024/10/19 13:40:00 19
powerpc64 10 20.0 2024/10/19 10:06:00 62 2024/10/19 16:33:00 58
mipsel 2 4.0 2024/10/19 09:59:00 38 2024/10/19 10:35:00 142
aarch64 6 12.0 2024/10/19 09:57:00 26 2024/10/19 19:05:00 35
wasm32 4 8.0 2024/10/19 17:01:00 237 2024/10/19 19:16:00 192
sparc64 1 2.0 2024/10/19 11:33:00 117 2024/10/19 11:33:00 117
riscv64 2 4.0 2024/10/19 10:25:00 33 2024/10/19 11:10:00 26
loongarch64 1 2.0 2024/10/19 10:17:00 30 2024/10/19 10:17:00 30
linux 19 38.0 2024/10/19 09:40:00 209 2024/10/19 11:33:00 117
go32v2 3 6.0 2024/10/19 09:39:00 55 2024/10/19 11:13:00 63
solaris 9 18.0 2024/10/19 13:22:00 24 2024/10/19 13:40:00 19
darwin 5 10.0 2024/10/19 17:12:00 31 2024/10/19 19:05:00 35
aix 10 20.0 2024/10/19 10:06:00 62 2024/10/19 16:33:00 58
wasi 4 8.0 2024/10/19 17:01:00 237 2024/10/19 19:16:00 192
3.3.1 38 76.0 2024/10/19 09:39:00 55 2024/10/19 19:16:00 192
3.2.3 12 24.0 2024/10/19 10:06:00 62 2024/10/19 13:40:00 19

Source:

{ Old file: tbs0268.pp }
{ crash with exceptions                                OK 0.99.13 (FK) }

PROGRAM Test2;

{$MODE DELPHI}

USES SysUtils;  // Dos for DosError because FindFirst is not a Function?

PROCEDURE DirList;
(* Show all Files, gives me "unhandled exception occurred at xxx, access
   violation" after inserting Try Except it worked but i got a "forever
   scrolling screen", then i inserted raise and got a correct "Exception
   in FindFirst" and "At end of ExceptionAddressStack"
   Next i inserted the ON E:EXCEPTION and ,E.Message an got 9999 *)
VAR SR : TSearchRec;
BEGIN
  TRY
    FindFirst ('*',faAnyFile,SR);  // why not a function ?
  EXCEPT
    ON E:EXCEPTION DO
      WriteLn ('Exception in FindFirst !-', E.Message);
  END;
  repeat
    Write (SR.Name,' ');
  until FindNext (SR)<>0;
  FindClose (SR);                  // and this is Delphi ?
END;

BEGIN
  WriteLn ('Hello, this is my first FPC-Program');
  DirList;
END.

Link to SVN view of tbs/tb0229.pp source.