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

t_id 1557
t_adddate 2005/04/26
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 run because it is a unit 50 100.0 2024/05/17 13:34:00 47 2024/05/17 23:42:00 43
i386 17 34.0 2024/05/17 22:07:00 21 2024/05/17 23:41:00 23
sparc 14 28.0 2024/05/17 23:24:00 38 2024/05/17 23:42:00 43
powerpc 1 2.0 2024/05/17 21:13:00 42 2024/05/17 21:13:00 42
x86_64 2 4.0 2024/05/17 13:34:00 47 2024/05/17 14:42:00 39
powerpc64 13 26.0 2024/05/17 20:12:00 105 2024/05/17 20:54:00 132
aarch64 3 6.0 2024/05/17 16:15:00 32 2024/05/17 16:28:00 32
linux 14 28.0 2024/05/17 20:12:00 105 2024/05/17 21:13:00 42
win32 5 10.0 2024/05/17 22:07:00 21 2024/05/17 23:41:00 23
solaris 26 52.0 2024/05/17 23:23:00 25 2024/05/17 23:42:00 43
darwin 3 6.0 2024/05/17 16:15:00 32 2024/05/17 16:28:00 32
win64 2 4.0 2024/05/17 13:34:00 47 2024/05/17 14:42:00 39
3.3.1 40 80.0 2024/05/17 13:34:00 47 2024/05/17 23:42:00 43
3.2.3 10 20.0 2024/05/17 16:15:00 32 2024/05/17 23:41:00 38

Source:

{ Source provided for Free Pascal Bug Report 3687 }
{ Submitted by "marco" on  2005-02-24 }
{ e-mail:  }
unit tw3687;

{$WRITEABLECONST OFF}

interface

type
  PByte = ^Byte;
  PWord = ^Word;
  PLongWord = ^LongWord;
  T128BitDigest = record end;

implementation

{                                                                              }
{ MD5 hashing                                                                  }
{                                                                              }
const
  MD5Table_1 : Array [0..15] of LongWord = (
      $D76AA478, $E8C7B756, $242070DB, $C1BDCEEE,
      $F57C0FAF, $4787C62A, $A8304613, $FD469501,
      $698098D8, $8B44F7AF, $FFFF5BB1, $895CD7BE,
      $6B901122, $FD987193, $A679438E, $49B40821);

Procedure TransformMD5Buffer (var Digest : T128BitDigest);
var A, B, C, D : LongWord;
    P2          : PLongWord;
    I          : Integer;
    J          : Byte;
  Begin
    P2 := @MD5Table_1;
  End;
end.

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