summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Shienkov <denis.shienkov@gmail.com>2022-02-21 21:28:56 +0300
committerDenis Shienkov <denis.shienkov@gmail.com>2022-02-28 12:26:11 +0000
commite378b8a0d1141b68bc9a8017b043ee2abcd53afb (patch)
treeed35df7896eaf1454293c11e068fc15dc625058e
parentc67ff8a11d3a4e7b54aff9060daa6714a2ba61d2 (diff)
downloadqbs-e378b8a0d1141b68bc9a8017b043ee2abcd53afb.tar.gz
baremetal: Skip `shared-libraries` test for GCC toolchains
... because we can't detect the target 'none' platform in case of a bare-metal GCC (this feature is not implemented yet). In other words, the barametal platforms do not support the shared libraries. Change-Id: I8ea62e649474e57ecc363b556e5f901a35c3fa85 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-rw-r--r--tests/auto/blackbox/testdata-baremetal/shared-libraries/shared-libraries.qbs2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/auto/blackbox/testdata-baremetal/shared-libraries/shared-libraries.qbs b/tests/auto/blackbox/testdata-baremetal/shared-libraries/shared-libraries.qbs
index f55b4d400..fded553f6 100644
--- a/tests/auto/blackbox/testdata-baremetal/shared-libraries/shared-libraries.qbs
+++ b/tests/auto/blackbox/testdata-baremetal/shared-libraries/shared-libraries.qbs
@@ -11,8 +11,6 @@ Project {
if (qbs.toolchainType === "msvc")
return true;
- if (qbs.toolchainType === "gcc")
- return true;
console.info("unsupported toolset: %%"
+ qbs.toolchainType + "%%, %%" + qbs.architecture + "%%");