Files
qt-creator/tests/auto/valgrind/memcheck/testapps/testapp.qbs
Christian Kandeler 3d718d3dae qbs build: Fix valgrind test failure
Change-Id: I563d9b61e0e281058dac46ed913b3102f70c4d90
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
2020-07-27 14:25:07 +00:00

15 lines
408 B
QML

import qbs
QtcTestApp {
name: "Memcheck " + testName + " autotest"
Depends { name: "qtc" }
property string testName
cpp.warningLevel: "none"
targetName: testName // Test runner hardcodes the names of the executables
destinationDirectory: project.buildDirectory + '/'
+ qtc.ide_bin_path + '/testapps/' + testName
files: sourceDirectory + "/main.cpp"
}