Test suite results for test file webtbs/tw3235.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-1376-gbff5cbd342
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: bff5cbd342:c17a0e20f5:4f3b6199df:d1c29e6cb9
Submitter: pierre
Date: 2024/05/08 11:01:00 <> 2024/05/04
Previous run: 947396
Next run: 948785

Hide skipped tests

Hide successful tests

Test file "webtbs/tw3235.pp" information:

t_id 1332
t_adddate 2004/08/10
t_result 0
t_knownrunerror 0

Detailed test run results:

tr_idruntr_oktr_skiptr_result
524998256948112TrueFalseSuccessfully run

Record count: 1

No log of 948112.

Source:

program TestStrIComp;
  uses
    SysUtils;

var l: longint;
begin
  l := StrIComp('abcdefghijklmnopqrstuvwxyz', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ');
  if (l <> 0) then
    begin
      writeln('error: expected 0, got ',l);
      halt(1);
    end;
  l := StrIComp('ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz');
  if (l <> 0) then
    begin
      writeln('error: expected 0, got ',l);
      halt(1);
    end;
end.

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