2013-08-26 17:50:02 +02:00
|
|
|
import qbs
|
|
|
|
|
|
2020-07-27 13:48:01 +02:00
|
|
|
QtcTestApp {
|
2013-08-26 17:50:02 +02:00
|
|
|
name: "Memcheck " + testName + " autotest"
|
2020-07-27 13:48:01 +02:00
|
|
|
|
|
|
|
|
Depends { name: "qtc" }
|
|
|
|
|
|
2013-10-17 16:13:05 +02:00
|
|
|
property string testName
|
2020-07-27 13:48:01 +02:00
|
|
|
cpp.warningLevel: "none"
|
2013-08-26 17:50:02 +02:00
|
|
|
targetName: testName // Test runner hardcodes the names of the executables
|
2014-07-16 13:34:55 +02:00
|
|
|
destinationDirectory: project.buildDirectory + '/'
|
2016-05-17 10:50:51 +02:00
|
|
|
+ qtc.ide_bin_path + '/testapps/' + testName
|
2016-12-01 15:26:16 +01:00
|
|
|
files: sourceDirectory + "/main.cpp"
|
2013-08-26 17:50:02 +02:00
|
|
|
}
|