fpc/tests/test/ulib2a.pp
sergei e3050439a8 * Reverted r17556 and replaced it with more generic handling of 'rela'-styled relocations. Resolves #19416.
+ Test case added to existing test/ulib2a.pp.

git-svn-id: trunk@17580 -
2011-05-27 18:19:08 +00:00

58 lines
1.1 KiB
ObjectPascal

{ %OPT=-Cg }
{$mode objfpc}
unit ulib2a;
interface
type
ITest=interface(IInterface)['{1C37883B-2909-4A74-A10B-D929D0443B1F}']
procedure DoSomething;
end;
resourcestring
STest = 'A test resourcestring';
const
// a resourcestring consists of 3 strings (name,current value,default value)
// Pointer to it actually points to symbol+sizeof(pointer); this offset must not be lost (bug #19416)
pTest:PAnsiString = @STest;
implementation
// must be declared in implementation, so DoSomething is not global
type
TObj=class(TInterfacedObject,ITest)
procedure DoSomething;
end;
// this is located at the start of .text section. If relocation offset is lost,
// calling DoSomething will likely transfer control here.
procedure DoSomethingElse;
begin
writeln('wrong!!!');
halt(1);
end;
procedure test_resourcestring;
begin
if (pTest<>@STest) or (pTest^<>'A test resourcestring') then
begin
writeln('resourcestring relocation error');
Halt(2);
end;
end;
procedure TObj.DoSomething;
begin
writeln('correct method called');
end;
var t: ITest;
initialization
test_resourcestring;
t := TObj.Create;
t.DoSomething;
end.