Kaydet (Commit) b118c88a authored tarafından Rene Engelhard's avatar Rene Engelhard

qadevOOo: handle kfreebsd as UNXLNGI

Change-Id: Ib3be1e407a9a3716fe171eb0586f03174015d844
üst d812281f
......@@ -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")) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment