[Libreoffice-commits] core.git: qadevOOo/runner

Rene Engelhard rene at debian.org
Fri Aug 16 04:35:02 PDT 2013


 qadevOOo/runner/lib/TestParameters.java |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b118c88a83da383a3f7fb1a1de2a3cb9a89d4452
Author: Rene Engelhard <rene at debian.org>
Date:   Fri Aug 16 13:32:17 2013 +0200

    qadevOOo: handle kfreebsd as UNXLNGI
    
    Change-Id: Ib3be1e407a9a3716fe171eb0586f03174015d844

diff --git a/qadevOOo/runner/lib/TestParameters.java b/qadevOOo/runner/lib/TestParameters.java
index 9b05147..66050ee 100644
--- a/qadevOOo/runner/lib/TestParameters.java
+++ b/qadevOOo/runner/lib/TestParameters.java
@@ -314,7 +314,7 @@ public class TestParameters extends HashMap<String,Object> {
         String operatingSystem = "";
         if (osname.indexOf ("windows")>-1) {
             operatingSystem = PropertyName.WNTMSCI;
-        } else if (osname.indexOf ("linux")>-1) {
+        } else if (osname.indexOf ("linux")>-1 || osname.indexOf ("kfreebsd")>-1) {
             operatingSystem = PropertyName.UNXLNGI;
         } else if (osname.indexOf ("sunos")>-1) {
             if (osarch.equals ("x86")) {


More information about the Libreoffice-commits mailing list