aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata
diff options
context:
space:
mode:
authorIvan Komissarov <abbapoh@gmail.com>2020-04-24 17:38:21 +0200
committerIvan Komissarov <ABBAPOH@gmail.com>2020-04-28 08:47:16 +0000
commit42994febafe0f0f2d2d3a1bfeffa33b854f22132 (patch)
tree0da88f24c84deb5f760c9541f4476701b6dbc1b5 /tests/auto/blackbox/testdata
parent977a1b75664d0ee186ee6e620e8384884bd205a0 (diff)
Fix TestBlackbox::installLocations for mingw
Mingw uses ".debug" files instead of the ".pdb" files for the separated debug info Change-Id: I00d338f797200c0dba0a1cc115e0dc1b2d057416 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'tests/auto/blackbox/testdata')
-rw-r--r--tests/auto/blackbox/testdata/install-locations/install-locations.qbs3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/install-locations/install-locations.qbs b/tests/auto/blackbox/testdata/install-locations/install-locations.qbs
index 4ad37c498..c5d07077f 100644
--- a/tests/auto/blackbox/testdata/install-locations/install-locations.qbs
+++ b/tests/auto/blackbox/testdata/install-locations/install-locations.qbs
@@ -6,6 +6,9 @@ Project {
console.info("is mac");
else
console.info("is unix");
+
+ if (qbs.toolchain.contains("mingw"))
+ console.info("is mingw");
}
CppApplication {
name: "theapp"