summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTatiana Borisova <tatiana.borisova@qt.io>2022-01-21 13:18:54 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-01-24 07:35:13 +0000
commit012b770ff4403ee170319df4bdce98bf81ff31b6 (patch)
treec85ecd3adc849f82d083829ef8e8aee08fd4ee22
parent743a10af43e61d008ea713e72a2b2c615919a6af (diff)
Fix tst_qicns test for INTEGRITY
- There is no possibility to use file system on our INTEGRITY test device. Add test sciping Task-number: QTBUG-99123 Change-Id: Icb84eb73b6010d4aa4ca19a4d3a0ecaa02216a6f Reviewed-by: Eirik Aavitsland <eirik.aavitsland@qt.io> (cherry picked from commit 85a2a1c9a7e4dd1fac5da5ef814b4560c42a6848) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--tests/auto/icns/tst_qicns.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/icns/tst_qicns.cpp b/tests/auto/icns/tst_qicns.cpp
index a9e8016..95e5784 100644
--- a/tests/auto/icns/tst_qicns.cpp
+++ b/tests/auto/icns/tst_qicns.cpp
@@ -100,6 +100,9 @@ void tst_qicns::writeIcons_data()
void tst_qicns::writeIcons()
{
+#ifdef Q_OS_INTEGRITY
+ QSKIP("Unable to create temp dir on INTEGRITY device.");
+#endif
QTemporaryDir temp(QDir::tempPath() + QStringLiteral("/tst_qincs"));
QVERIFY2(temp.isValid(), "Unable to create temp dir.");