summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@digia.com>2012-10-29 23:13:05 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-10-30 12:53:46 +0100
commitbf722c1ab387e8892242dcaacd8afd36d592ebb6 (patch)
tree2562e25c639ffc54dabc418d32bc3a76fafa9ed0 /tests
parentfd7b3ffe5cbedb180f7cfb9975437f0eb285d05a (diff)
test: Remove QSKIP from tst_QByteArray::literals()
Change-Id: I07b53cd12790d2161964dd09c5a69fe8aff7c90d Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/corelib/tools/qbytearray/tst_qbytearray.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/auto/corelib/tools/qbytearray/tst_qbytearray.cpp b/tests/auto/corelib/tools/qbytearray/tst_qbytearray.cpp
index 331024c560..848fdb14a4 100644
--- a/tests/auto/corelib/tools/qbytearray/tst_qbytearray.cpp
+++ b/tests/auto/corelib/tools/qbytearray/tst_qbytearray.cpp
@@ -147,7 +147,9 @@ private slots:
void reserveExtended();
void movablity_data();
void movablity();
+#if defined(Q_COMPILER_LAMBDA)
void literals();
+#endif
};
static const struct StaticByteArrays {
@@ -1878,9 +1880,10 @@ void tst_QByteArray::movablity()
QVERIFY(true);
}
+#if defined(Q_COMPILER_LAMBDA)
+// Only tested on c++0x compliant compiler or gcc
void tst_QByteArray::literals()
{
-#if defined(Q_COMPILER_LAMBDA)
QByteArray str(QByteArrayLiteral("abcd"));
QVERIFY(str.length() == 4);
@@ -1897,10 +1900,8 @@ void tst_QByteArray::literals()
QVERIFY(str2.constData() == s);
QVERIFY(str2.data() != s);
-#else
- QSKIP("Only tested on c++0x compliant compiler or gcc");
-#endif
}
+#endif
const char globalChar = '1';