fpc/tests/test/tcpstr9.pp
yury 0ed82d7218 * Use cwstring on unix.
git-svn-id: trunk@23672 -
2013-02-28 19:32:06 +00:00

17 lines
416 B
ObjectPascal

{ %skiptarget=android }
program tcpstr9;
{$mode delphiunicode}
{$apptype console}
{$ifdef unix} uses cwstring; {$endif}
begin
// this test can be only run with the compiler built right now on the
// same system
if StringCodePage(AnsiString('test')) <> DefaultSystemCodePage then
begin
WriteLn(StringCodePage(AnsiString('test')), ' <> ', DefaultSystemCodePage);
halt(1);
end;
Writeln('ok');
end.