summaryrefslogtreecommitdiff
path: root/testautomation/framework/required/includes
diff options
context:
space:
mode:
authorJoerg Skottke [jsk] <jsk@openoffice.org>2010-07-22 14:21:33 +0200
committerJoerg Skottke [jsk] <jsk@openoffice.org>2010-07-22 14:21:33 +0200
commitb0d9d1c7851de1871e9f344f757afdd61bf3d2f2 (patch)
tree1f5badc200a1db76d179e5189d01bf9749bc8070 /testautomation/framework/required/includes
parent79b96e8d786ced077d65b04db09f27aafe4e9eff (diff)
jl154: #i113234# References for Windows
Diffstat (limited to 'testautomation/framework/required/includes')
-rwxr-xr-xtestautomation/framework/required/includes/script_organizers.inc5
1 files changed, 2 insertions, 3 deletions
diff --git a/testautomation/framework/required/includes/script_organizers.inc b/testautomation/framework/required/includes/script_organizers.inc
index 0dc71aec926c..b9ed8420134e 100755
--- a/testautomation/framework/required/includes/script_organizers.inc
+++ b/testautomation/framework/required/includes/script_organizers.inc
@@ -51,11 +51,10 @@ testcase tUpdtScripts
' This is the build specific part of the filename including substrings for
' the productname and language.
dim sProductString as string : sProductString = gProductName & "_" & gISOLang & "_"
- dim sPlatform = lcase( gPlatform )
' define platforms that have different scriptcount
- if ( instr( sPlatform, "win" ) > 0 ) then sProductString = sProductString & "win_"
- if ( sPlatform = "osx" ) then sProductString = sProductString & "osx_"
+ if ( lcase( gPlatGroup ) = "w95" ) then sProductString = sProductString & "win_"
+ if ( lcase( gPlatform ) = "osx" ) then sProductString = sProductString & "osx_"
' replace all blanks
sProductString = hStringReplaceChar( sProductString, " ", "-" )