forked from qt-creator/qt-creator
Fix in 5a5acd664e was incomplete.
Change-Id: I36a0666d2a6a8ccb514ebf612fbac2eded150102
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
13 lines
440 B
QML
13 lines
440 B
QML
import qbs
|
|
|
|
QtcAutotest {
|
|
type: ["application"] // Not to be executed directly by autotest-runner
|
|
name: "Memcheck " + testName + " autotest"
|
|
cpp.warningLevel: "none"
|
|
property string testName
|
|
targetName: testName // Test runner hardcodes the names of the executables
|
|
destinationDirectory: project.buildDirectory + '/'
|
|
+ project.ide_bin_path + '/testapps/' + testName
|
|
files: "main.cpp"
|
|
}
|