aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/tst_blackboxandroid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/tst_blackboxandroid.cpp')
-rw-r--r--tests/auto/blackbox/tst_blackboxandroid.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/blackbox/tst_blackboxandroid.cpp b/tests/auto/blackbox/tst_blackboxandroid.cpp
index bf47c241c..e02f70213 100644
--- a/tests/auto/blackbox/tst_blackboxandroid.cpp
+++ b/tests/auto/blackbox/tst_blackboxandroid.cpp
@@ -192,7 +192,7 @@ void TestBlackboxAndroid::android_data()
const SettingsPtr s = settings();
const Profile p(profileName(), s.get());
const Profile pQt(theProfileName(true), s.get());
- QStringList archsStringList = p.value(QLatin1String("qbs.architectures")).toStringList();
+ QStringList archsStringList = p.value(QStringLiteral("qbs.architectures")).toStringList();
if (archsStringList.empty())
archsStringList << QStringLiteral("armv7a"); // must match default in common.qbs
QByteArrayList archs;
@@ -203,7 +203,7 @@ void TestBlackboxAndroid::android_data()
.replace("arm64", "arm64-v8a");
});
const auto cxxLibPath = [&p, &pQt](const QByteArray &oldcxxLib, bool forQt) {
- const bool usesClang = (forQt ? pQt : p).value(QLatin1String("qbs.toolchainType"))
+ const bool usesClang = (forQt ? pQt : p).value(QStringLiteral("qbs.toolchainType"))
.toString() == "clang";
return QByteArray("lib/${ARCH}/") + (usesClang ? "libc++_shared.so" : oldcxxLib);
};