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

t_id 886
t_adddate 2003/10/03
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 50 100.0 2024/05/08 03:27:00 38 2024/05/08 04:23:00 0
i386 6 12.0 2024/05/08 03:32:00 26 2024/05/08 03:58:00 25
sparc 2 4.0 2024/05/08 03:54:00 52 2024/05/08 04:02:00 39
x86_64 36 72.0 2024/05/08 03:29:00 26 2024/05/08 04:23:00 0
powerpc64 3 6.0 2024/05/08 03:37:00 60 2024/05/08 04:10:00 55
aarch64 3 6.0 2024/05/08 03:27:00 38 2024/05/08 03:58:00 39
linux 46 92.0 2024/05/08 03:27:00 38 2024/05/08 04:23:00 0
go32v2 1 2.0 2024/05/08 03:49:00 59 2024/05/08 03:49:00 59
solaris 2 4.0 2024/05/08 03:54:00 52 2024/05/08 04:02:00 39
win64 1 2.0 2024/05/08 03:29:00 39 2024/05/08 03:29:00 39
3.3.1 21 42.0 2024/05/08 03:29:00 39 2024/05/08 04:18:00 21
3.2.3 29 58.0 2024/05/08 03:27:00 38 2024/05/08 04:23:00 0

Source:

{ %target=win32 }

  uses  DOS;
  var
    error : boolean;

  procedure Expand(FileMask: string);
    var
      FileMaskOut : string;
    begin
      WriteLn;
      WriteLn('Expanding "',FileMask,'"');
      FileMaskOut := FExpand(FileMask);
      WriteLn('To become "',FileMaskOut,'"');
      if FileMask<>FileMaskOut then
       error:=true;
    end;
  begin
    Expand('C:Windows1System');
    Expand('\.CWindows1System');
    Expand('C:Windows1System');
    if error then
     begin
       Writeln('ERROR!');
       Halt(1);
     end;
  end.

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