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

t_id 1026
t_adddate 2003/10/14
Flag t_graph set
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 it uses graph 50 100.0 2024/05/08 23:35:00 32 2024/05/09 01:09:00 101
i386 24 48.0 2024/05/08 23:35:00 32 2024/05/09 01:09:00 28
sparc 8 16.0 2024/05/08 23:40:00 46 2024/05/09 00:54:00 39
x86_64 7 14.0 2024/05/08 23:44:00 22 2024/05/09 01:05:00 24
powerpc64 9 18.0 2024/05/09 00:20:00 46 2024/05/09 01:09:00 101
aarch64 2 4.0 2024/05/09 00:13:00 32 2024/05/09 00:58:00 35
linux 38 76.0 2024/05/08 23:35:00 32 2024/05/09 01:09:00 101
win32 1 2.0 2024/05/08 23:57:00 23 2024/05/08 23:57:00 23
solaris 8 16.0 2024/05/08 23:40:00 46 2024/05/09 00:54:00 39
win64 3 6.0 2024/05/08 23:44:00 22 2024/05/09 00:57:00 26
3.3.1 26 52.0 2024/05/08 23:40:00 46 2024/05/09 01:09:00 101
3.2.3 24 48.0 2024/05/08 23:35:00 32 2024/05/09 01:02:00 26

Source:

{ %GRAPH }
{ %TARGET=go32v2,win32,linux }

{ Old file: tbs0048.pp }
{  shows a problem with putimage on some computers       OK 0.99.13 (JM) }

uses
   graph,crt;

var
   gd,gm : integer;
   i,size : longint;
   p : pointer;

begin
   gd:=detect;
   initgraph(gd,gm,'');
   setcolor(brown);
   line(0,0,getmaxx,0);
   {readkey;}delay(1000);
   size:=imagesize(0,0,getmaxx,0);
   getmem(p,size);
   getimage(0,0,getmaxx,0,p^);
   cleardevice;
   for i:=0 to getmaxy do
     begin
        putimage(0,i,p^,xorput);
     end;
   {readkey;}delay(1000);
   for i:=0 to getmaxy do
     begin
        putimage(0,i,p^,xorput);
     end;
   {readkey;}delay(1000);
   closegraph;
end.

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