Files
qt-creator/tests/auto/valgrind/memcheck/testapps/testapp.qbs
Orgad Shaneh 79525981dc Tests: Refix MSVC warnings for valgrind tests
Fix in 5a5acd664e was incomplete.

Change-Id: I36a0666d2a6a8ccb514ebf612fbac2eded150102
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
2015-03-02 09:53:14 +00:00

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"
}