Do not skip tst_QClipboard::copy_exit_paste on QNX

This test is valid on QNX platforms.

Change-Id: Ic9657c2b92628a649ab52367135dcb3a77450913
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
Rafael Roquetto 2012-10-10 14:29:10 -03:00 committed by The Qt Project
parent 2230e349df
commit 703fa6c361

View File

@ -233,7 +233,7 @@ static bool runHelper(const QString &program, const QStringList &arguments, QByt
void tst_QClipboard::copy_exit_paste()
{
#ifndef QT_NO_PROCESS
#if !defined(Q_OS_WIN) && !defined(Q_OS_MAC)
#if !defined(Q_OS_WIN) && !defined(Q_OS_MAC) && !defined(Q_OS_QNX)
QSKIP("This test does not make sense on X11 and embedded, copied data disappears from the clipboard when the application exits ");
// ### It's still possible to test copy/paste - just keep the apps running
#endif