summaryrefslogtreecommitdiff
path: root/testautomation/dbaccess
diff options
context:
space:
mode:
authorMarc Neumann [msc] <Marc.Neumann@oracle.com>2010-07-26 14:20:11 +0200
committerMarc Neumann [msc] <Marc.Neumann@oracle.com>2010-07-26 14:20:11 +0200
commitc3885f7ae33c36988accb45bd154f10deac19e3a (patch)
treeed2e7d641f008fdca2cb521a8167e39efdf175e9 /testautomation/dbaccess
parent68ad606715002d9acd1ccfbfdfc5bf72d15b8bc3 (diff)
automationooo330m1: #113339# disable mozilla test on mac
Diffstat (limited to 'testautomation/dbaccess')
-rwxr-xr-xtestautomation/dbaccess/optional/includes/wiz_DatabaseWizard.inc32
1 files changed, 18 insertions, 14 deletions
diff --git a/testautomation/dbaccess/optional/includes/wiz_DatabaseWizard.inc b/testautomation/dbaccess/optional/includes/wiz_DatabaseWizard.inc
index bd25224ba429..e5528ceebc0d 100755
--- a/testautomation/dbaccess/optional/includes/wiz_DatabaseWizard.inc
+++ b/testautomation/dbaccess/optional/includes/wiz_DatabaseWizard.inc
@@ -208,23 +208,27 @@ endcase
'-------------------------------------------------------------------------
testcase tMozilla
- if ( fCreateMozillaAddressbookDatasource(gOfficePath + "user/work/tt_mozilla.odb") = true) then
- if ( fOpendatabase(gOfficePath + "user/work/tt_mozilla.odb") = true) then
- Kontext "ContainerView"
- ViewTables
- else
- warnlog "mozilla database could not be open."
+ if(gPlatform = "osx") then
+ qaerrorlog "Mozilla address book not supported under Mac."
+ else
+ if ( fCreateMozillaAddressbookDatasource(gOfficePath + "user/work/tt_mozilla.odb") = true) then
+ if ( fOpendatabase(gOfficePath + "user/work/tt_mozilla.odb") = true) then
+ Kontext "ContainerView"
+ ViewTables
+ else
+ warnlog "mozilla database could not be open."
+ endif
+ else
+ qaerrorlog "mozilla database could not be created. Maybe you have no mozilla installed."
+ Kontext "MessageBox"
+ if (MessageBox.exists(1)) then
+ MessageBox.OK
+ endif
endif
- else
- qaerrorlog "mozilla database could not be created. Maybe you have no mozilla installed."
- Kontext "MessageBox"
- if (MessageBox.exists(1)) then
- MessageBox.OK
- endif
+ ' try to close the database
+ call fCloseDatabase(false)
endif
- ' try to close the database
- call fCloseDatabase(false)
endcase
'-------------------------------------------------------------------------