aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/sanitizer
Commit message (Collapse)AuthorAgeFilesLines
* Skip sanitizer test when run using VS clang for x86_64Ivan Komissarov2020-08-311-1/+7
| | | | | | | | 32-bit clang doesn't support building 64-bit sanitized apps and the one shipped with VS is 32-bit Change-Id: I6b8b75ebe00ea7786be649128ea10a0789e207a0 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
* Fix or skip tests to be able to run with the iOS profileIvan Komissarov2020-05-221-0/+4
| | | | | | | | | | | | This skips tests that are not possible to run without the device and fixes other tests for the iOS profile. Also, adds Travis job that runs tests using iOS profile. This is the squashed merge commit of the wip/ci-ios branch. Change-Id: Ia0c1fc05fdb8c6e269f5e66f979f2ae19465433c Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
* Tests: Do not expect sanitizers for MinGWChristian Stenger2020-01-301-0/+2
| | | | | | Change-Id: I283836a7009f63bc3c8c5aabae221ec7763ddcef Reviewed-by: Ivan Komissarov <ABBAPOH@gmail.com> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
* MSVC: Use compiler driver for linkingIvan Komissarov2020-01-242-0/+32
To be able to use cpp.driverFlags and cpp.driverLinkerFlags with clang- cl. This patchset makes possible to use clang-cl with "- fsanitize=address" flag without passing the sanitizer libraries manually to the linker There's also a behavior change in which linker is used - clang-cl uses native linker by default. Old behavior can be restored by setting cpp.linkerVariant to "lld" Fixes: QBS-1522 Change-Id: I9528ce40aa5fdfab987672b15fffd830fa2d6376 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>