Skip to content

Commit 05b3cd8

Browse files
committed
moved tests to src
1 parent c505d99 commit 05b3cd8

8 files changed

+16
-66
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,4 @@ endif(DBOT_BUILD_GPU)
199199
############################
200200
enable_testing()
201201
include(${CMAKE_MODULE_PATH}/gtest.cmake)
202-
add_subdirectory(test)
202+
include(utests.cmake)

distribution_test.m

Lines changed: 0 additions & 50 deletions
This file was deleted.
File renamed without changes.

test/CMakeLists.txt

Lines changed: 0 additions & 15 deletions
This file was deleted.

utests.cmake

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
dbot_add_test(
3+
NAME object_resource_identifier
4+
SOURCES src/dbot/common/object_resource_identifier_test.cpp
5+
LIBS ${dbot_LIBRARIES})
6+
7+
dbot_add_test(
8+
NAME simple_shader_provider_test
9+
SOURCES src/dbot/common/simple_shader_provider_test.cpp
10+
LIBS ${dbot_LIBRARIES})
11+
12+
dbot_add_test(
13+
NAME file_shader_provider_test
14+
SOURCES src/dbot/common/file_shader_provider_test.cpp
15+
LIBS ${dbot_LIBRARIES})

0 commit comments

Comments
 (0)