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

t_id 1063
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 11:24:00 238 2024/05/08 13:43:00 62
i386 6 12.0 2024/05/08 11:43:00 35 2024/05/08 13:27:00 22
m68k 2 4.0 2024/05/08 12:40:00 244 2024/05/08 12:52:00 58
sparc 5 10.0 2024/05/08 11:58:00 56 2024/05/08 13:43:00 62
powerpc 5 10.0 2024/05/08 11:24:00 238 2024/05/08 13:17:00 181
arm 2 4.0 2024/05/08 12:28:00 33 2024/05/08 12:36:00 210
x86_64 5 10.0 2024/05/08 12:06:00 41 2024/05/08 13:35:00 32
powerpc64 8 16.0 2024/05/08 11:36:00 242 2024/05/08 13:33:00 60
mips 2 4.0 2024/05/08 12:44:00 239 2024/05/08 13:01:00 154
mipsel 2 4.0 2024/05/08 12:48:00 183 2024/05/08 13:10:00 228
aarch64 4 8.0 2024/05/08 11:57:00 41 2024/05/08 12:29:00 32
sparc64 5 10.0 2024/05/08 11:58:00 155 2024/05/08 13:32:00 159
riscv64 3 6.0 2024/05/08 11:52:00 30 2024/05/08 12:10:00 36
loongarch64 1 2.0 2024/05/08 12:37:00 36 2024/05/08 12:37:00 36
linux 46 92.0 2024/05/08 11:24:00 238 2024/05/08 13:43:00 62
win32 4 8.0 2024/05/08 11:43:00 35 2024/05/08 13:27:00 22
3.3.1 32 64.0 2024/05/08 11:24:00 238 2024/05/08 13:35:00 32
3.2.3 18 36.0 2024/05/08 11:43:00 35 2024/05/08 13:43:00 62

Source:

{ %GRAPH }

uses graph;
var
 gd,gm:integer;
 testimage:array[1..50000] of byte; {this is plenty big}
begin
 gd:=VESA;
 gm:=$100; { 640 x 400 x 256 }
 initgraph(gd,gm,'');
 if graphresult<>grOk then
   begin
     Writeln('Unable to open driver ',gd,' in mode ',gm);
     Halt(1);
   end;
 line(0,0,639,399);
 getimage(190,49,257,125,testimage);
 { a simple statement, and yet
   it throws a General Protection fault, but only with certain
   numbers for getimage.  The numbers i have here do not produce
   too big an image for the array testimage, and yet it faults.
   Is this a bug in getimage, or is there something i am
   missing here?
  }
 closegraph;
end.

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