diff options
author | Michael Meeks <michael.meeks@suse.com> | 2013-06-11 16:35:49 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2013-06-11 16:35:49 +0100 |
commit | 58b8211f4aa0b227151890d541efa17d04058e05 (patch) | |
tree | 6923d1117ad781a16c6b37da14b5ab44abe1c68a /cppcanvas/qa/unit | |
parent | cb548bc7a1c863d1716ce0f609a64f45a8d73328 (diff) |
canvas unit test - tolerate canvas non-creation: really no X server...
Change-Id: Id8be7bc4ad454e7e246e412803e4d672a921c08e
Diffstat (limited to 'cppcanvas/qa/unit')
-rw-r--r-- | cppcanvas/qa/unit/test.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cppcanvas/qa/unit/test.cxx b/cppcanvas/qa/unit/test.cxx index 03d0e7368939..af652a3cf727 100644 --- a/cppcanvas/qa/unit/test.cxx +++ b/cppcanvas/qa/unit/test.cxx @@ -44,7 +44,8 @@ void CanvasTest::testComposite() CPPUNIT_ASSERT( pWin != NULL ); uno::Reference<rendering::XCanvas> xCanvas = pWin->GetCanvas (); - CPPUNIT_ASSERT( xCanvas.is() ); + if( !xCanvas.is() ) + return; // can't get a canvas working at all - truly headless ? // a huge canvas ... Size aSize (1, 1); |