diff options
author | Jo Asplin <jo.asplin@nokia.com> | 2011-11-08 14:06:10 +0100 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2011-11-10 09:32:07 +0100 |
commit | 598953a99f4ae15def34d3f796065f04f0732792 (patch) | |
tree | 996b8b8b0c4ef1070a4502b0aae32e100563938d /tests/auto/sphere | |
parent | dca7840ee4d64fb6e88a7b1d06dc8d233189df78 (diff) | |
download | qtlocation-598953a99f4ae15def34d3f796065f04f0732792.tar.gz |
Fixed typo: private-tests -> private_tests
Change-Id: Id55ffc6d06e7d136d493007e4af2a27aeb17c285
Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
Diffstat (limited to 'tests/auto/sphere')
-rw-r--r-- | tests/auto/sphere/tst_sphere.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/sphere/tst_sphere.cpp b/tests/auto/sphere/tst_sphere.cpp index e0319073..dc9aa098 100644 --- a/tests/auto/sphere/tst_sphere.cpp +++ b/tests/auto/sphere/tst_sphere.cpp @@ -62,6 +62,9 @@ public: } +public slots: + void initTestCase(); + private slots: void x_plane(); void x_plane_data(); @@ -87,6 +90,12 @@ private: Sphere planeTest(const QList<QPlane3D> &planes, const QList<int> &planeIndices) const; }; +void tst_Sphere::initTestCase() +{ +#if defined(Q_OS_LINUX) + QSKIP("Fails on Linux - see QTBUG-22634"); +#endif +} Sphere tst_Sphere::emptySphere(double radius) const { |