Test suite results for test file tbs/tb0046.pp

Test run data :

Run ID:
Operating system: linux
Processor: mipsel
Version: 3.2.3
Fails/OK/Total: 39/7930/7969
Version: 3.2.3
Full version: 3.2.3-1373-gae0fe8a6a0
Comment: -ao-xgot -fPIC -XR/home/pierre/sys-root/mipsel-linux -Xd -Xr/home/pierre/sys-root/mipsel-linux
Machine: gcclocal
Category: 1
SVN revisions: fdf93c5b29:c17a0e20f5:ae0fe8a6a0:d1c29e6cb9
Submitter: pierre
Date: 2024/04/19 11:06:00 <> 2024/04/09
Previous run: 934320
Next run: 935640

Hide skipped tests

Hide successful tests

Test file "tbs/tb0046.pp" information:

t_id 1028
t_adddate 2003/10/14
Flag t_graph set
t_result 0
t_knownrunerror 0

Detailed test run results:

tr_idruntr_oktr_skiptr_result
443671522934967FalseTrueSkipping test because it uses graph

Record count: 1

No log of 934967.

Source:

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

{ Old file: tbs0052.pp }
{  Graph, collects missing graph unit routines          OK 0.99.9 (PM) }

uses
  crt,graph;

const
  Triangle: array[1..3] of PointType = ((X: 50; Y: 100), (X: 100; Y:100),
    (X: 150; Y: 150));
  Rect : array[1..4] of PointType = ((X: 50; Y: 100), (X: 100; Y:100),
    (X: 75; Y: 150), (X: 80; Y : 50));
  Penta : array[1..5] of PointType = ((X: 250; Y: 100), (X: 300; Y:100),
    (X: 275; Y: 150), (X: 280; Y : 50), (X:295; Y : 80) );

var Gd, Gm: Integer;
begin
  Gd := Detect;
  InitGraph(Gd, Gm, 'c:pgi');
  if GraphResult <> grOk then
    Halt(1);
  drawpoly(SizeOf(Triangle) div SizeOf(PointType), Triangle);
  {readln;}delay(1000);
  setcolor(red);
  fillpoly(SizeOf(Triangle) div SizeOf(PointType), Triangle);
  {readln;}delay(1000);
  SetFillStyle(SolidFill,blue);
  Bar(0,0,GetMaxX,GetMaxY);
  Rectangle(25,25,GetMaxX-25,GetMaxY-25);
  setViewPort(25,25,GetMaxX-25,GetMaxY-25,true);
  clearViewPort;
  setcolor(magenta);
  SetFillStyle(SolidFill,red);
  fillpoly(SizeOf(Rect) div SizeOf(PointType), Rect);
  fillpoly(SizeOf(Penta) div SizeOf(PointType), Penta);
  graphdefaults;
  {readln;}delay(1000);
  CloseGraph;
end.

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