00f2d1a09b
After enabling Qt::AA_UseHighDpiPixmaps, QIcon::pixmap() now returns pixmaps larger than the requested size on devicePixelRatio > 1 screens. Adapt tests to account for this changed behavior. Skip tests where it’s unclear what the the expected behavior is, or where the test logic does not apply to dpr > 1. This gives a clearer indication of where we are (39 passed, 0 failed, 9 skipped), and enables using the qicon test to catch regressions also when running at dpr > 1. Remove the "lowdpi" testcase flags from the qmake and cmake project files. Change-Id: Ia7ce722ae356fc496a91b54e9f5d590d13b9df62 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
10 lines
227 B
Prolog
10 lines
227 B
Prolog
CONFIG += testcase
|
|
TARGET = tst_qicon
|
|
|
|
QT += testlib
|
|
qtHaveModule(widgets): QT += widgets
|
|
SOURCES += tst_qicon.cpp
|
|
RESOURCES = tst_qicon.qrc tst_qicon.cpp
|
|
|
|
TESTDATA += icons/* second_icons/* fallback_icons/* *.png *.svg *.svgz
|