Browse Source

* use cwstring on non-windows

git-svn-id: trunk@41813 -
michael 6 years ago
parent
commit
8daccbf4c1
1 changed files with 5 additions and 2 deletions
  1. 5 2
      packages/fcl-registry/tests/regtestframework.pp

+ 5 - 2
packages/fcl-registry/tests/regtestframework.pp

@@ -9,11 +9,14 @@ program regtestframework;
 {$ENDIF}
 
 uses
+  {$ifdef unix}
+  cwstring,
+  {$endif}
   SysUtils,
-  fpcunit,  testreport, testregistry,
+  fpcunit,  testreport, testregistry, consoletestrunner,
 // Units wich contains the tests
   tcxmlreg,
-  testbasics, consoletestrunner;
+  testbasics;
 
 Var
   A : TTestRunner;