summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/io/qtemporaryfile
diff options
context:
space:
mode:
authorKrzysztof Sommerfeld <krzysztof.sommerfeld@siili.com>2023-12-19 03:16:06 +0100
committerKrzysztof Sommerfeld <krzysztof.sommerfeld@siili.com>2024-01-09 07:03:11 +0000
commit9735b105588d74c47d4195d367bcac89d3472643 (patch)
tree8ae4f5cd250ac22b71e9e38f32e24193b688fba0 /tests/auto/corelib/io/qtemporaryfile
parent83ab7d21150115fbbe954af7d87f1597bf65d206 (diff)
Exclude VxWorks from trash bin tests
The XDG trash bin code in 6.7 onwards doesn't compile because VxWorks is missing the POSIX at-file system calls and we're working with WRS to find out more. Currently there is ongoing request to add this and more POSIX system calls. Task-number: QTBUG-115777 Pick-to: 6.7 Change-Id: I83fd2ab7130362c06c694195e7b33b6ba8011101 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'tests/auto/corelib/io/qtemporaryfile')
-rw-r--r--tests/auto/corelib/io/qtemporaryfile/tst_qtemporaryfile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/corelib/io/qtemporaryfile/tst_qtemporaryfile.cpp b/tests/auto/corelib/io/qtemporaryfile/tst_qtemporaryfile.cpp
index 3d25027503..fad1f3d411 100644
--- a/tests/auto/corelib/io/qtemporaryfile/tst_qtemporaryfile.cpp
+++ b/tests/auto/corelib/io/qtemporaryfile/tst_qtemporaryfile.cpp
@@ -630,7 +630,7 @@ void tst_QTemporaryFile::renameFdLeak()
void tst_QTemporaryFile::moveToTrash()
{
-#if defined(Q_OS_ANDROID) || defined(Q_OS_WEBOS)
+#if defined(Q_OS_ANDROID) || defined(Q_OS_WEBOS) || defined(Q_OS_VXWORKS)
QSKIP("This platform doesn't implement a trash bin");
#endif
#ifdef Q_OS_WIN