diff options
author | Mayank Gupta <techfreakworm@gmail.com> | 2016-03-11 15:45:43 +0530 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-03-22 12:26:18 +0000 |
commit | af06ced81c640ebbcac037cd610bc99694fb7c13 (patch) | |
tree | 1d283e8cec7e4243ac09ce57b5f776f196c0c558 /sd | |
parent | ac20c17080d0942531f35015da7131d5275fdbe1 (diff) |
add HAVE_FEATURE_ATL to disable failing tests due to ATL
Change-Id: Ifcdf8bf9eb4c22df6493f85592c9c72fac28876e
Reviewed-on: https://gerrit.libreoffice.org/23144
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/qa/unit/export-tests.cxx | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sd/qa/unit/export-tests.cxx b/sd/qa/unit/export-tests.cxx index a81d32f3a16c..59e49d2d21f1 100644 --- a/sd/qa/unit/export-tests.cxx +++ b/sd/qa/unit/export-tests.cxx @@ -75,7 +75,6 @@ #include <svx/svdotable.hxx> - #include <config_features.h> #include <com/sun/star/document/XDocumentPropertiesSupplier.hpp> @@ -147,7 +146,10 @@ public: void testFdo90607(); void testTdf91378(); +//This test gives errors due to ATL +#if HAVE_FEATURE_ATL void testBnc822341(); +#endif void testMathObject(); void testMathObjectPPT2010(); void testTdf80224(); @@ -187,8 +189,10 @@ public: CPPUNIT_TEST(testParaMarginAndindentation); CPPUNIT_TEST(testTransparentBackground); CPPUNIT_TEST(testTdf91378); - +//This test gives errors due to ATL +#if HAVE_FEATURE_ATL CPPUNIT_TEST(testBnc822341); +#endif CPPUNIT_TEST(testMathObject); CPPUNIT_TEST(testMathObjectPPT2010); CPPUNIT_TEST(testTdf80224); @@ -1112,6 +1116,8 @@ void SdExportTest::testTdf91378() xDocShRef->DoClose(); } +//This test gives errors due to ATL +#if HAVE_FEATURE_ATL void SdExportTest::testBnc822341() { // Check import / export of embedded text document @@ -1181,6 +1187,7 @@ void SdExportTest::testBnc822341() xDocShRef->DoClose(); } +#endif void SdExportTest::testMathObject() { |