basic/qa/cppunit/test_vba.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
New commits: commit 30a5db17751ded87ca4c0f7203aa0d01dae6259d Author: Noel Power <[email protected]> Date: Mon Mar 11 17:29:20 2013 +0000 don't even attempt the ole related test except on windows Change-Id: I971cf33e96c435cd3fa27766e79c2638b69eecb5 diff --git a/basic/qa/cppunit/test_vba.cxx b/basic/qa/cppunit/test_vba.cxx index 5b56ea6..703884f 100644 --- a/basic/qa/cppunit/test_vba.cxx +++ b/basic/qa/cppunit/test_vba.cxx @@ -28,8 +28,10 @@ namespace // Declares the method as a test to call CPPUNIT_TEST(testMiscVBAFunctions); +// not much point even trying to run except on windows +#if defined(WNT) CPPUNIT_TEST(testObjAssignWithDefaultMember); - //CPPUNIT_TEST(testOle); +#endif // End of test suite definition CPPUNIT_TEST_SUITE_END(); _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
