-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
QtTestDriverTest doesn't get built nor executed and leaks #190
Comments
Yes I know about that for some time - one user send me email that Qt test driver doesn't work for him. I've quickly fixed that typo on my branch, but then noticed the leak. I was investigating it for some time but haven't been able to fix it. |
I've tried to fix leak by adding qcoreapp: |
Yes, if we're not misusing any API then suppression is fine. |
Mentioned bug is fixed in Qt version 5.10.0. I can no longer reproduce the problem with Qt 5.15.10. |
Because of a typo in
tests/CMakeLists.txt
QtTestDriverTest doesn't get built and thus not executed either:if(Qt5TEST_FOUND)
This should be (note the title case instead of full upper case):
if(Qt5Test_FOUND)
When fixing that however, I'm getting a memory leak: https://travis-ci.org/muggenhor/cucumber-cpp/jobs/381075041
@konserw Given that you originally introduced the QtTest driver in #165, can you have a look at this and try to fix it?
This is the output:
The text was updated successfully, but these errors were encountered: