diff options
author | Denis Shienkov <denis.shienkov@gmail.com> | 2022-02-21 21:28:56 +0300 |
---|---|---|
committer | Denis Shienkov <denis.shienkov@gmail.com> | 2022-02-28 12:26:11 +0000 |
commit | e378b8a0d1141b68bc9a8017b043ee2abcd53afb (patch) | |
tree | ed35df7896eaf1454293c11e068fc15dc625058e | |
parent | c67ff8a11d3a4e7b54aff9060daa6714a2ba61d2 (diff) | |
download | qbs-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.qbs | 2 |
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 + "%%"); |