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

t_id 282
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/17 16:15:00 32 2024/05/17 23:49:00 41
i386 18 36.0 2024/05/17 22:07:00 21 2024/05/17 23:46:00 27
sparc 17 34.0 2024/05/17 23:24:00 38 2024/05/17 23:49:00 41
powerpc 1 2.0 2024/05/17 21:13:00 42 2024/05/17 21:13:00 42
powerpc64 13 26.0 2024/05/17 20:12:00 105 2024/05/17 20:54:00 132
aarch64 1 2.0 2024/05/17 16:15:00 32 2024/05/17 16:15:00 32
linux 15 30.0 2024/05/17 20:12:00 105 2024/05/17 23:46:00 27
win32 5 10.0 2024/05/17 22:07:00 21 2024/05/17 23:41:00 23
solaris 29 58.0 2024/05/17 23:23:00 25 2024/05/17 23:49:00 41
darwin 1 2.0 2024/05/17 16:15:00 32 2024/05/17 16:15:00 32
3.3.1 40 80.0 2024/05/17 20:12:00 105 2024/05/17 23:46:00 27
3.2.3 10 20.0 2024/05/17 16:15:00 32 2024/05/17 23:49:00 41

Source:

{ Old file: tbs0026.pp }
{  tests for a wrong unused. var. warning              OK 0.9.4 }

const
  HexTbl : array[0..15] of char=('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F');
function HexB(b:byte):string;
begin
  HexB[0]:=#2;
  HexB[1]:=HexTbl[b shr 4];
  HexB[2]:=HexTbl[b and $f];
end;



function HexW(w:word):string;
begin
  HexW:=HexB(w shr 8)+HexB(w and $ff);
end;



begin
  HexW($fff);
end.

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