tests: removed accidentally committed test file

git-svn-id: trunk@19171 -
This commit is contained in:
paul 2011-09-22 00:56:24 +00:00
parent 59a69eaeba
commit eefdd29151
2 changed files with 0 additions and 28 deletions

1
.gitattributes vendored
View File

@ -10611,7 +10611,6 @@ tests/test/ulib2a.pp svneol=native#text/plain
tests/test/umaclocalprocparam3f.pp svneol=native#text/plain
tests/test/umacpas1.pp svneol=native#text/plain
tests/test/umainnam.pp svneol=native#text/plain
tests/test/units/character/tfpwidestring.pp svneol=native#text/pascal
tests/test/units/character/tgetnumericvalue.pp svneol=native#text/pascal
tests/test/units/character/tgetnumericvalue2.pp svneol=native#text/pascal
tests/test/units/character/tiscontrol.pp svneol=native#text/pascal

View File

@ -1,27 +0,0 @@
program tfpwidestring;
{$ifdef FPC}
{$mode objfpc}
{$H+}
{$endif fpc}
{$ifndef FPC}
{$APPTYPE CONSOLE}
{$endif}
uses
SysUtils,
character, fpwidestring;
{$ifndef FPC}
type UnicodeChar = WideChar;
{$endif}
var
e, i, j : Integer;
uc : UnicodeChar;
begin
e := 1;
WriteLn('ok');
end.