Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix disabling QEXPECT_FAIL in tst_qlineedit for VxWorks
Amends 3e1d584, in which I failed to replace "#ifdef" with "#if defined" when adding condition to turn off QEXPECT_FAIL for VxWorks in tst_QLineEdit::testQuickSelectionWithMouse test function. This ends up with additional warning from compilers ("extra tokens at end of #ifdef directive" from both clang and gcc), and ignoring check for Q_OS_VXWORKS, causing 3e1d584 patch effectively not changing anything. Fix this by replacing "#ifdef Q_PROCESSOR_ARM_32" with proper "#if defined(Q_PROCESSOR_ARM_32)". Task-number: QTBUG-115777 Task-number: QTBUG-131362 Change-Id: I915789ece497879d557e95bc7ded51116d6ea167 Reviewed-by: Volker Hilsheimer <[email protected]>
- Loading branch information