Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-08-11 11:08:23 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-08-11 11:08:23 +0300
commita501668cc5f11f15af9fb47ea3c8c7fc910e8722 (patch)
treef5d1390c7cffe55cb5b6502db5878a9a17884cd1 /intern/cycles/test
parent7c3a06c34918567e6b0ab67bded60725ff63073b (diff)
Revert "Cycles Tests: Add test for correct 16 byte alignment of KernelData structs"
Using unit tests is a wrong way to control static behavior of the application. They should only be used for checking dynamic behavior, all the rest is easily controllable at compile time. Doing tests at ocmpile time are actually more robust approach since we don't have strict policy of runnign unit tests before accepting any change. Proper alignment control is coming shortly. This reverts commit 7c3a06c34918567e6b0ab67bded60725ff63073b.
Diffstat (limited to 'intern/cycles/test')
-rw-r--r--intern/cycles/test/CMakeLists.txt1
-rw-r--r--intern/cycles/test/kernel_struct_align_test.cpp60
2 files changed, 0 insertions, 61 deletions
diff --git a/intern/cycles/test/CMakeLists.txt b/intern/cycles/test/CMakeLists.txt
index e97332392a0..9af777fb9dd 100644
--- a/intern/cycles/test/CMakeLists.txt
+++ b/intern/cycles/test/CMakeLists.txt
@@ -69,4 +69,3 @@ CYCLES_TEST(util_aligned_malloc "cycles_util")
CYCLES_TEST(util_path "cycles_util;${BOOST_LIBRARIES};${OPENIMAGEIO_LIBRARIES}")
CYCLES_TEST(util_string "cycles_util;${BOOST_LIBRARIES}")
CYCLES_TEST(util_task "cycles_util;${BOOST_LIBRARIES}")
-CYCLES_TEST(kernel_struct_align "")
diff --git a/intern/cycles/test/kernel_struct_align_test.cpp b/intern/cycles/test/kernel_struct_align_test.cpp
deleted file mode 100644
index d078b8d0524..00000000000
--- a/intern/cycles/test/kernel_struct_align_test.cpp
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * Copyright 2011-2016 Blender Foundation
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include "testing/testing.h"
-
-#include "kernel/kernel_types.h"
-
-CCL_NAMESPACE_BEGIN
-
-#define TEST_IS_ALIGNED(name) ((sizeof(name) % 16) == 0)
-
-TEST(kernel_struct_align, KernelCamera)
-{
- EXPECT_TRUE(TEST_IS_ALIGNED(KernelCamera));
-}
-
-TEST(kernel_struct_align, KernelFilm)
-{
- EXPECT_TRUE(TEST_IS_ALIGNED(KernelFilm));
-}
-
-TEST(kernel_struct_align, KernelBackground)
-{
- EXPECT_TRUE(TEST_IS_ALIGNED(KernelBackground));
-}
-
-TEST(kernel_struct_align, KernelIntegrator)
-{
- EXPECT_TRUE(TEST_IS_ALIGNED(KernelIntegrator));
-}
-
-TEST(kernel_struct_align, KernelBVH)
-{
- EXPECT_TRUE(TEST_IS_ALIGNED(KernelBVH));
-}
-
-TEST(kernel_struct_align, KernelCurves)
-{
- EXPECT_TRUE(TEST_IS_ALIGNED(KernelCurves));
-}
-
-TEST(kernel_struct_align, KernelTables)
-{
- EXPECT_TRUE(TEST_IS_ALIGNED(KernelTables));
-}
-
-CCL_NAMESPACE_END