qtcharts/tests/auto
Volker Hilsheimer 5c4ddaae03 GLWidget: disconnect during destruction and cleanup
The GLWidget instance cleans up its data structures when the OpenGL
context is about to be destroyed, but the context might be destroyed as
part of destroying the GLWidget (typically when the QOpenGLWidget
destructor runs).
To prevent that the cleanup() function gets called after the GLWidget
destructor has run (which triggers the assert in QObject), disconnect
explicitly.

The crash reproduces with any of the tests using a QAbstractSeries
implementation when the useOpenGL property is set, so add a data-row
to one of them that provokes the assert without the fix.

Fixes: QTBUG-119900
Pick-to: 6.7 6.6 6.5
Change-Id: Ib4badd0c5df68ed60df6f492cada7954f0cb220a
Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
2023-12-12 10:50:03 +01:00
..
chartdataset CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
cmake Change the license of all CMakeLists.txt and *.cmake files to BSD 2022-08-24 01:37:18 +02:00
domain CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
inc Use SPDX license identifiers 2022-06-16 10:24:16 +02:00
qabstractaxis Port from container::count() and length() to size() - V4 2022-10-10 21:07:06 +02:00
qareaseries CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qbarcategoryaxis Mark the module as free of Q_FOREACH, except where it isn't 2023-08-18 10:30:49 +00:00
qbarmodelmapper CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qbarseries Mark the module as free of Q_FOREACH, except where it isn't 2023-08-18 10:30:49 +00:00
qbarset CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qcandlestickmodelmapper CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qcandlestickseries CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qcandlestickset CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qcategoryaxis CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qchart CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qchartview CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qdatetimeaxis CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qhorizontalbarseries Mark the module as free of Q_FOREACH, except where it isn't 2023-08-18 10:30:49 +00:00
qhorizontalpercentbarseries CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qhorizontalstackedbarseries CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qlegend Mark the module as free of Q_FOREACH, except where it isn't 2023-08-18 10:30:49 +00:00
qlineseries GLWidget: disconnect during destruction and cleanup 2023-12-12 10:50:03 +01:00
qlogvalueaxis CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qml Mark the module as free of Q_FOREACH, except where it isn't 2023-08-18 10:30:49 +00:00
qml-qtquicktest CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qpercentbarseries CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qpiemodelmapper CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qpieseries Mark the module as free of Q_FOREACH, except where it isn't 2023-08-18 10:30:49 +00:00
qpieslice CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qscatterseries CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qsplineseries CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qstackedbarseries CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qvalueaxis CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qxymodelmapper CMake: Make qtcharts tests standalone projects 2023-07-12 18:23:37 +02:00
qxyseries Mark the module as free of Q_FOREACH, except where it isn't 2023-08-18 10:30:49 +00:00
CMakeLists.txt Change the license of all CMakeLists.txt and *.cmake files to BSD 2022-08-24 01:37:18 +02:00
README Add Polar chart support 2013-04-17 10:14:43 +03:00

README

Testing polar chart:

Since the tests typically initialize the chart once for the whole test case,
it is difficult to test the components against polar chart unless all tests
are duplicated or massively refactored. Neither option is desirable, so instead
we check environment variable TEST_POLAR_CHART. If it is not empty, we run
the tests that are relevant for polar chart against polar chart. Unfortunately
This means two runs of the tests with different environment are required for
full coverage.