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

t_id 1061
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 19:44:00 213 2024/05/08 23:48:00 27
i386 8 16.0 2024/05/08 20:34:00 44 2024/05/08 23:48:00 27
m68k 1 2.0 2024/05/08 20:43:00 63 2024/05/08 20:43:00 63
sparc 17 34.0 2024/05/08 20:42:00 81 2024/05/08 23:47:00 41
powerpc 2 4.0 2024/05/08 20:18:00 184 2024/05/08 21:11:00 188
arm 1 2.0 2024/05/08 20:25:00 69 2024/05/08 20:25:00 69
x86_64 9 18.0 2024/05/08 20:10:00 23 2024/05/08 23:14:00 21
powerpc64 5 10.0 2024/05/08 19:44:00 213 2024/05/08 21:28:00 73
mips 2 4.0 2024/05/08 20:03:00 240 2024/05/08 20:52:00 160
mipsel 1 2.0 2024/05/08 21:02:00 151 2024/05/08 21:02:00 151
aarch64 1 2.0 2024/05/08 20:16:00 46 2024/05/08 20:16:00 46
sparc64 3 6.0 2024/05/08 20:18:00 148 2024/05/08 22:05:00 151
linux 29 58.0 2024/05/08 19:44:00 213 2024/05/08 23:48:00 27
solaris 15 30.0 2024/05/08 23:24:00 38 2024/05/08 23:47:00 41
win64 6 12.0 2024/05/08 20:10:00 23 2024/05/08 23:14:00 21
3.3.1 12 24.0 2024/05/08 23:14:00 21 2024/05/08 23:48:00 27
3.2.3 38 76.0 2024/05/08 19:44:00 213 2024/05/08 23:47:00 41

Source:

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

program TestGetPutim; {Compiled with the 0.99.13 version under GO32V2!}

uses
 graph;

var graphdriver,graphmode :integer;

    imsize:longint;

    im:pointer;
begin
{$ifdef win32}
 graphdriver:=VGA;
 graphmode:=detect;
{$else not  win32}
 graphdriver:=VESA;
 graphmode:=$103;
{$endif}
 Initgraph(graphdriver,graphmode,'');

 {************}
(*
 setcolor(6);

 moveto(0,0);   {Some drawing}

 lineto(500,500);

 circle(95,95,80);

{************}



{!!!!!!!!!!!!}

 imsize:= imagesize(0,0,300,300); {This is the part we have problem with.}

 getmem(im,imsize);         {The result we get after PutImage is}

 getimage(0,0,300,300,im^);       {chaotic independently from the graphmode!}

  putimage(50,50,im^,0);           {We tested this on a S3Trio 3D videcard,}

                                  {which is VESA compatible.}

{!!!!!!!!!!!!}



readln;
 {repeat until keypressed;}
   *)
 closegraph;

end.

{

                                                        I. Groma

                                                        groma@metal.elte.hu

                                                        Budapest 11/24/1999

}

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