fakevim: make test compile

This is a workaround. The real problem is a source incompatibility
from Qt4 -> Qt5 (beta). QSKIP wants 2 arguments in the first, and
1 in the latter case.

Change-Id: I11e914f378baf492cce62333a8284ba2a11bf61d
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
This commit is contained in:
hjk
2012-09-03 15:35:02 +02:00
parent 21790a7e8b
commit aa118de9ec

View File

@@ -44,7 +44,10 @@
* Tests after this macro will be skipped and warning printed. * Tests after this macro will be skipped and warning printed.
* Uncomment it to test a feature -- if tests succeeds it should be removed from the test. * Uncomment it to test a feature -- if tests succeeds it should be removed from the test.
*/ */
#define NOT_IMPLEMENTED QSKIP("Not fully implemented!", SkipSingle); #define NOT_IMPLEMENTED return;
// QTest::qSkip("Not fully implemented!", QTest::SkipSingle, __FILE__, __LINE__);
// return;
// text cursor representation in comparisons (set empty to disable cursor position checking) // text cursor representation in comparisons (set empty to disable cursor position checking)
#define X "|" #define X "|"