Browse Source

* patch from #28557 by Oliver, correct libroot for Haiku

git-svn-id: trunk@31361 -
marco 10 years ago
parent
commit
70df08d5be
1 changed files with 5 additions and 1 deletions
  1. 5 1
      tests/webtbs/tw1255.pp

+ 5 - 1
tests/webtbs/tw1255.pp

@@ -20,7 +20,11 @@ end;
 
 
 begin
 begin
 {$ifdef UNIX}
 {$ifdef UNIX}
-  testff('/etc/host*');
+  {$ifdef haiku}
+    testff('/boot/system/lib/libroot.*');
+  {$else}
+    testff('/etc/host*');
+  {$endif}
 {$else}
 {$else}
   {$ifdef wince}
   {$ifdef wince}
     testff('\windows\calc.*');
     testff('\windows\calc.*');