Browse Source

tests: removed accidentally committed test file

git-svn-id: trunk@19171 -
paul 14 năm trước cách đây
mục cha
commit
eefdd29151
2 tập tin đã thay đổi với 0 bổ sung28 xóa
  1. 0 1
      .gitattributes
  2. 0 27
      tests/test/units/character/tfpwidestring.pp

+ 0 - 1
.gitattributes

@@ -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

+ 0 - 27
tests/test/units/character/tfpwidestring.pp

@@ -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.