diff options
author | Vasily Melenchuk <vasily.melenchuk@cib.de> | 2016-06-20 16:30:58 +0300 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2016-06-23 08:56:03 +0000 |
commit | 535ac37c5ff9b9dc60f6f56e4cfd518eff764975 (patch) | |
tree | fa21ffd21c63394169e15d80241de8d4c783cb5e /sd/qa/unit/sdmodeltestbase.hxx | |
parent | d531743ca34232aedc0b437a9ff5807dea8d51ed (diff) |
support for ms binary format validation in sd module export tests
Change-Id: Ie03b0485bbe8ecaa452f19fbcbfe3bf5829aff68
Reviewed-on: https://gerrit.libreoffice.org/26515
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'sd/qa/unit/sdmodeltestbase.hxx')
-rw-r--r-- | sd/qa/unit/sdmodeltestbase.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sd/qa/unit/sdmodeltestbase.hxx b/sd/qa/unit/sdmodeltestbase.hxx index edf11f949384..0b7e3befe737 100644 --- a/sd/qa/unit/sdmodeltestbase.hxx +++ b/sd/qa/unit/sdmodeltestbase.hxx @@ -204,6 +204,10 @@ protected: { BootstrapFixture::validate(pTempFile->GetFileName(), test::OOXML); } + else if(nExportType == PPT) + { + BootstrapFixture::validate(pTempFile->GetFileName(), test::MSBINARY); + } pTempFile->EnableKillingFile(); return loadURL(pTempFile->GetURL(), nExportType); } |