mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-01 00:46:20 -05:00
Server labeling test fixes
This commit is contained in:
parent
9f0ea0c2fd
commit
d50798cc4c
@ -10,6 +10,10 @@ IF (CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES RelWithDebInfo)
|
||||
ADD_DEFINITIONS(-DQGSMSDEBUG=1)
|
||||
ENDIF (CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES RelWithDebInfo)
|
||||
|
||||
IF (ENABLE_TESTS)
|
||||
ADD_DEFINITIONS(-DENABLE_MS_TESTS=1)
|
||||
ENDIF (ENABLE_TESTS)
|
||||
|
||||
########################################################
|
||||
# Files
|
||||
|
||||
|
@ -313,7 +313,7 @@ int main( int argc, char * argv[] )
|
||||
QScopedPointer< QgsMapRenderer > theMapRenderer( new QgsMapRenderer );
|
||||
theMapRenderer->setLabelingEngine( new QgsPalLabeling() );
|
||||
|
||||
#ifdef QGSMSDEBUG
|
||||
#ifdef ENABLE_MS_TESTS
|
||||
QgsFontUtils::loadStandardTestFonts( QStringList() << "Roman" << "Bold" );
|
||||
#endif
|
||||
|
||||
|
@ -117,7 +117,7 @@ class TestQgisLocalServer(TestCase):
|
||||
# chk.setMapRenderer(None)
|
||||
res = chk.compareImages(test_name, 0, str(img_path))
|
||||
if QGIS_TEST_REPORT and not res: # don't report ok checks
|
||||
TESTREPORTS[test_name] = str(chk.report().toLocal8Bit())
|
||||
TESTREPORTS[test_name] = chk.report()
|
||||
msg = '\nRender check failed for "{0}"'.format(test_name)
|
||||
assert res, msg
|
||||
|
||||
|
@ -363,7 +363,7 @@ class TestQgsPalLabeling(TestCase):
|
||||
res = chk.runTest(self._Test, mismatch)
|
||||
if PALREPORT and not res: # don't report ok checks
|
||||
testname = self._TestGroup + ' . ' + self._Test
|
||||
PALREPORTS[testname] = str(chk.report().toLocal8Bit())
|
||||
PALREPORTS[testname] = chk.report()
|
||||
msg = '\nRender check failed for "{0}"'.format(self._Test)
|
||||
return res, msg
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user