summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/core/vector3d_sse/tst_vector3d_sse.cpp16
-rw-r--r--tests/auto/core/vector4d_sse/tst_vector4d_sse.cpp15
2 files changed, 0 insertions, 31 deletions
diff --git a/tests/auto/core/vector3d_sse/tst_vector3d_sse.cpp b/tests/auto/core/vector3d_sse/tst_vector3d_sse.cpp
index 8e6be5b3f..be9fbc347 100644
--- a/tests/auto/core/vector3d_sse/tst_vector3d_sse.cpp
+++ b/tests/auto/core/vector3d_sse/tst_vector3d_sse.cpp
@@ -35,22 +35,6 @@ class tst_Vector3D_SSE: public QObject
{
Q_OBJECT
private Q_SLOTS:
-
- void checkAllocationAndAlignment()
- {
- // GIVEN
- Vector3D_SSE *m = new Vector3D_SSE();
-
- // THEN
- QVERIFY((uintptr_t)m % 16 == 0);
-
- // WHEN
- delete m;
-
- // THEN
- // Should not crash
- }
-
void defaultConstruction()
{
// GIVEN
diff --git a/tests/auto/core/vector4d_sse/tst_vector4d_sse.cpp b/tests/auto/core/vector4d_sse/tst_vector4d_sse.cpp
index b57d52b86..e7b58c8cf 100644
--- a/tests/auto/core/vector4d_sse/tst_vector4d_sse.cpp
+++ b/tests/auto/core/vector4d_sse/tst_vector4d_sse.cpp
@@ -36,21 +36,6 @@ class tst_Vector4D_SSE: public QObject
{
Q_OBJECT
private Q_SLOTS:
- void checkAllocationAndAlignment()
- {
- // GIVEN
- Vector4D_SSE *m = new Vector4D_SSE();
-
- // THEN
- QVERIFY((uintptr_t)m % 16 == 0);
-
- // WHEN
- delete m;
-
- // THEN
- // Should not crash
- }
-
void defaultConstruction()
{
// GIVEN