Test suite results for test file tbs/tb0046.pp

Test run data :

Run ID:
Operating system: linux
Processor: mipsel
Version: 3.3.1
Fails/OK/Total: 185/9025/9210
Version: 3.3.1
Full version: 3.3.1-15584-g2f9ed0576e
Comment: -ao-xgot -fPIC -XR/home/muller/sys-root/mipsel-linux -Xd -Xr/home/muller/sys-root/mipsel-linux
Machine: cfarm421
Category: 1
SVN revisions: 2f9ed0576e:8b7dbb81b1:3f8bbd3b00:2f9ed0576e
Submitter: muller
Date: 2024/04/19 11:23:00 <> 2024/04/18
Previous run: 934335
Next run: 935671

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
443745426934980FalseTrueSkipping test because it uses graph

Record count: 1

No log of 934980.

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.