diff options
author | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-12-22 18:06:37 +0100 |
---|---|---|
committer | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-12-22 18:07:07 +0100 |
commit | 6eb059a56d6575496265e4c552f79e8946640d52 (patch) | |
tree | 521fa2d86a7da77a161296a7c2df3582d5ec7b18 | |
parent | f5c48e690fefbc2bd970485c480d7d07f1936ab9 (diff) |
This test fails for Windows, so skip it for now.
Change-Id: I33e480e756cd5cc88e119b47022646a4db3f4f96
-rw-r--r-- | sd/qa/unit/export-tests.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sd/qa/unit/export-tests.cxx b/sd/qa/unit/export-tests.cxx index 9f00db1bcf4d..19c5ed385295 100644 --- a/sd/qa/unit/export-tests.cxx +++ b/sd/qa/unit/export-tests.cxx @@ -81,7 +81,9 @@ public: void testSwappedOutImageExport(); void testLinkedGraphicRT(); void testImageWithSpecialID(); +#if !defined WNT void testBnc822341(); +#endif CPPUNIT_TEST_SUITE(SdExportTest); CPPUNIT_TEST(testN821567); @@ -101,7 +103,9 @@ public: CPPUNIT_TEST(testSwappedOutImageExport); CPPUNIT_TEST(testLinkedGraphicRT); CPPUNIT_TEST(testImageWithSpecialID); +#if !defined WNT CPPUNIT_TEST(testBnc822341); +#endif CPPUNIT_TEST_SUITE_END(); }; @@ -722,6 +726,8 @@ void SdExportTest::testImageWithSpecialID() } } +#if !defined WNT + void SdExportTest::testBnc822341() { // Check import / export of embedded text document @@ -757,6 +763,8 @@ void SdExportTest::testBnc822341() xDocShRef->DoClose(); } +#endif + CPPUNIT_TEST_SUITE_REGISTRATION(SdExportTest); CPPUNIT_PLUGIN_IMPLEMENT(); |