tst_qfile: skip trash bin test on webOS

Skipping moveToTrash() test is needed because WebOS
does not implement a trash bin directory.

Fixes: QTBUG-104053
Pick-to: 6.4
Change-Id: Id1d1595eb401d8ef3a403c915d95be1cd75368d2
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
This commit is contained in:
Janne Juntunen 2022-06-07 09:59:25 +03:00
parent 0da17e83ec
commit c58e97245d

View File

@ -3797,8 +3797,8 @@ void tst_QFile::moveToTrash_data()
void tst_QFile::moveToTrash()
{
#ifdef Q_OS_ANDROID
QSKIP("Android doesn't implement a trash bin");
#if defined(Q_OS_ANDROID) or defined(Q_OS_WEBOS)
QSKIP("This platform doesn't implement a trash bin");
#endif
QFETCH(QString, source);
QFETCH(bool, create);