Test suite results for test file tbs/tb0046.pp

Test run data :

Run ID:
Operating system: linux
Processor: x86_64
Version: 3.2.0
Fails/OK/Total: 30/7756/7786
Version: 3.2.0
Full version: 3.2.0-beta
Comment: -Cg -O4 -Criot -Fd
Machine: gcc121
Category: 1
SVN revisions: 20:44143:1:44109:1:44160:1:44148
Submitter: pierre
Date: 2020/02/18 02:40:00
Previous run: 487938
Next run: 488191

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

Record count: 1

No log of 488056.

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.