summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Bosbach <tbo@OpenOffice.org>2010-07-02 19:29:17 +0200
committerThorsten Bosbach <tbo@OpenOffice.org>2010-07-02 19:29:17 +0200
commit06c3be9d33f2b1bd5fe15978f066ac1be401da5e (patch)
treeb1ec1e248b325f1753b44d97d2d2082f68a05f08
parentffb470ae7dd6358a4cef7ac70cea055365679664 (diff)
#i112893# added exeption for osx
-rw-r--r--testautomation/framework/required/includes/window_functions.inc7
1 files changed, 6 insertions, 1 deletions
diff --git a/testautomation/framework/required/includes/window_functions.inc b/testautomation/framework/required/includes/window_functions.inc
index 779ab3c0a8aa..2adb42638d02 100644
--- a/testautomation/framework/required/includes/window_functions.inc
+++ b/testautomation/framework/required/includes/window_functions.inc
@@ -250,7 +250,12 @@ testcase tCheckWindowTitle( sApplication as string, sReference as string )
' Verify that the productname is contained within the string
if ( iProductNamePosition = STRING_NOT_FOUND ) then
- warnlog( "The product name is missing" )
+ if ( lcase( gPlatform ) = "osx" ) then
+ printlog( "The product name is missing" )
+ ' life is different on that platform compared to testtool world
+ else
+ warnlog( "The product name is missing" )
+ endif
endif
' Verify that the application name (e.g. "Writer") is contained in the string