summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-10-18 13:14:49 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-10-18 13:20:00 +0000
commit42f767f49c4d7569b305b3a377197ba263b19c39 (patch)
tree1e1e46007e8ff828042c9c867190caa5af4136b2
parentfdfc82ff2af11f37a61ae65da061e7e6ef8966a0 (diff)
CppunitTest_sw_odfimport: enable all but one asserts on OS X
Change-Id: I95421d51a2750507aec5a576e161efe578fef812 Reviewed-on: https://gerrit.libreoffice.org/12020 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
-rw-r--r--sw/qa/extras/odfimport/odfimport.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/sw/qa/extras/odfimport/odfimport.cxx b/sw/qa/extras/odfimport/odfimport.cxx
index 6174dc56c4f2..fb4cf65f3788 100644
--- a/sw/qa/extras/odfimport/odfimport.cxx
+++ b/sw/qa/extras/odfimport/odfimport.cxx
@@ -8,7 +8,7 @@
#include <swmodeltestbase.hxx>
-#if !defined(MACOSX) && !defined(WNT)
+#if !defined(WNT)
#include <com/sun/star/awt/FontWeight.hpp>
#include <com/sun/star/style/PageStyleLayout.hpp>
@@ -450,7 +450,9 @@ DECLARE_ODFIMPORT_TEST(testFdo37606Copy, "fdo37606.odt")
// Previously copy&paste failed to copy the table in case it was the document-starting one.
uno::Reference<text::XTextTablesSupplier> xTablesSupplier(mxComponent, uno::UNO_QUERY);
uno::Reference<container::XIndexAccess> xTables(xTablesSupplier->getTextTables(), uno::UNO_QUERY);
+#ifndef MACOSX // FIXME
CPPUNIT_ASSERT_EQUAL(sal_Int32(2), xTables->getCount());
+#endif
}
DECLARE_ODFIMPORT_TEST(testFdo69862, "fdo69862.odt")