diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-01-24 22:39:31 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-01-24 22:47:59 +0100 |
commit | acdfb2593564ea23d4bbb999856922568d7ab2c3 (patch) | |
tree | 288298a0abfda578cfc53667224883f36dcdcfe1 | |
parent | f453cf1d328f96dd5ad8e94b102bff3124e06154 (diff) |
dbaccess: disable hanging close() for now
I don't know why it hangs, but seems even without closing, the test
still fails after reverting fc9080a0c60f263d00eb71111fcda72b3c0a2ebb
(fdo#67685 open xSourceLibrariesStor only when needed, 2013-08-02).
Once the test no longer hangs, of course feel free to add this back.
Change-Id: If124b7f57a8fa2d522ebdb448366aec6f1ff4987
-rw-r--r-- | dbaccess/qa/extras/dialog-save.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/qa/extras/dialog-save.cxx b/dbaccess/qa/extras/dialog-save.cxx index aaa7593a890e..4b162ad23565 100644 --- a/dbaccess/qa/extras/dialog-save.cxx +++ b/dbaccess/qa/extras/dialog-save.cxx @@ -101,7 +101,7 @@ void DialogSaveTest::test() // close uno::Reference< util::XCloseable > xDocCloseable(xComponent, UNO_QUERY_THROW); CPPUNIT_ASSERT(xDocCloseable.is()); - xDocCloseable->close(false); + //xDocCloseable->close(false); // All our uno::References are (should?) be invalid now -> let them go out of scope } |