Removed folder 'Testing' - not needed yet
This commit is contained in:
BIN
tests/CMakeFiles/tests.dir/filter-test.cpp.o
Normal file
BIN
tests/CMakeFiles/tests.dir/filter-test.cpp.o
Normal file
Binary file not shown.
7
tests/CTestTestfile.cmake
Normal file
7
tests/CTestTestfile.cmake
Normal file
@@ -0,0 +1,7 @@
|
||||
# CMake generated Testfile for
|
||||
# Source directory: /home/k4/tmp/bbr-algo/BinderBeispielRegler/tests
|
||||
# Build directory: /home/k4/tmp/bbr-algo/BinderBeispielRegler/tests
|
||||
#
|
||||
# This file includes the relevant testing commands required for
|
||||
# testing this directory and lists subdirectories to be tested as well.
|
||||
include("/home/k4/tmp/bbr-algo/BinderBeispielRegler/tests/tests[1]_include.cmake")
|
||||
50
tests/cmake_install.cmake
Normal file
50
tests/cmake_install.cmake
Normal file
@@ -0,0 +1,50 @@
|
||||
# Install script for directory: /home/k4/tmp/bbr-algo/BinderBeispielRegler/tests
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
set(CMAKE_INSTALL_PREFIX "/tmp")
|
||||
endif()
|
||||
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
||||
|
||||
# Set the install configuration name.
|
||||
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
||||
if(BUILD_TYPE)
|
||||
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
||||
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_CONFIG_NAME "Debug")
|
||||
endif()
|
||||
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
||||
endif()
|
||||
|
||||
# Set the component getting installed.
|
||||
if(NOT CMAKE_INSTALL_COMPONENT)
|
||||
if(COMPONENT)
|
||||
message(STATUS "Install component: \"${COMPONENT}\"")
|
||||
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
||||
else()
|
||||
set(CMAKE_INSTALL_COMPONENT)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Install shared libraries without execute permission?
|
||||
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
||||
set(CMAKE_INSTALL_SO_NO_EXE "1")
|
||||
endif()
|
||||
|
||||
# Is this installation the result of a crosscompile?
|
||||
if(NOT DEFINED CMAKE_CROSSCOMPILING)
|
||||
set(CMAKE_CROSSCOMPILING "FALSE")
|
||||
endif()
|
||||
|
||||
# Set path to fallback-tool for dependency-resolution.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "/bin/objdump")
|
||||
endif()
|
||||
|
||||
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||
if(CMAKE_INSTALL_LOCAL_ONLY)
|
||||
file(WRITE "/home/k4/tmp/bbr-algo/BinderBeispielRegler/tests/install_local_manifest.txt"
|
||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||
endif()
|
||||
27
tests/cmake_test_discovery_59830ebc3a.json
Normal file
27
tests/cmake_test_discovery_59830ebc3a.json
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"tests": 3,
|
||||
"name": "AllTests",
|
||||
"testsuites": [
|
||||
{
|
||||
"name": "PT1FilterTest",
|
||||
"tests": 3,
|
||||
"testsuite": [
|
||||
{
|
||||
"name": "InitialOutputIsZero",
|
||||
"file": "\/home\/k4\/tmp\/bbr-algo\/BinderBeispielRegler\/tests\/filter-test.cpp",
|
||||
"line": 6
|
||||
},
|
||||
{
|
||||
"name": "StepResponse",
|
||||
"file": "\/home\/k4\/tmp\/bbr-algo\/BinderBeispielRegler\/tests\/filter-test.cpp",
|
||||
"line": 11
|
||||
},
|
||||
{
|
||||
"name": "FilterFactorEffect",
|
||||
"file": "\/home\/k4\/tmp\/bbr-algo\/BinderBeispielRegler\/tests\/filter-test.cpp",
|
||||
"line": 20
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
tests/tests
Executable file
BIN
tests/tests
Executable file
Binary file not shown.
5
tests/tests[1]_include.cmake
Normal file
5
tests/tests[1]_include.cmake
Normal file
@@ -0,0 +1,5 @@
|
||||
if(EXISTS "/home/k4/tmp/bbr-algo/BinderBeispielRegler/tests/tests[1]_tests.cmake")
|
||||
include("/home/k4/tmp/bbr-algo/BinderBeispielRegler/tests/tests[1]_tests.cmake")
|
||||
else()
|
||||
add_test(tests_NOT_BUILT tests_NOT_BUILT)
|
||||
endif()
|
||||
25
tests/tests[1]_tests.cmake
Normal file
25
tests/tests[1]_tests.cmake
Normal file
@@ -0,0 +1,25 @@
|
||||
add_test([=[PT1FilterTest.InitialOutputIsZero]=] /home/k4/tmp/bbr-algo/BinderBeispielRegler/tests/tests [==[--gtest_filter=PT1FilterTest.InitialOutputIsZero]==] --gtest_also_run_disabled_tests)
|
||||
set_tests_properties([=[PT1FilterTest.InitialOutputIsZero]=]
|
||||
PROPERTIES
|
||||
|
||||
DEF_SOURCE_LINE [==[/home/k4/tmp/bbr-algo/BinderBeispielRegler/tests/filter-test.cpp:6]==]
|
||||
WORKING_DIRECTORY [==[/home/k4/tmp/bbr-algo/BinderBeispielRegler/tests]==]
|
||||
SKIP_REGULAR_EXPRESSION [==[\[ SKIPPED \]]==]
|
||||
)
|
||||
add_test([=[PT1FilterTest.StepResponse]=] /home/k4/tmp/bbr-algo/BinderBeispielRegler/tests/tests [==[--gtest_filter=PT1FilterTest.StepResponse]==] --gtest_also_run_disabled_tests)
|
||||
set_tests_properties([=[PT1FilterTest.StepResponse]=]
|
||||
PROPERTIES
|
||||
|
||||
DEF_SOURCE_LINE [==[/home/k4/tmp/bbr-algo/BinderBeispielRegler/tests/filter-test.cpp:11]==]
|
||||
WORKING_DIRECTORY [==[/home/k4/tmp/bbr-algo/BinderBeispielRegler/tests]==]
|
||||
SKIP_REGULAR_EXPRESSION [==[\[ SKIPPED \]]==]
|
||||
)
|
||||
add_test([=[PT1FilterTest.FilterFactorEffect]=] /home/k4/tmp/bbr-algo/BinderBeispielRegler/tests/tests [==[--gtest_filter=PT1FilterTest.FilterFactorEffect]==] --gtest_also_run_disabled_tests)
|
||||
set_tests_properties([=[PT1FilterTest.FilterFactorEffect]=]
|
||||
PROPERTIES
|
||||
|
||||
DEF_SOURCE_LINE [==[/home/k4/tmp/bbr-algo/BinderBeispielRegler/tests/filter-test.cpp:20]==]
|
||||
WORKING_DIRECTORY [==[/home/k4/tmp/bbr-algo/BinderBeispielRegler/tests]==]
|
||||
SKIP_REGULAR_EXPRESSION [==[\[ SKIPPED \]]==]
|
||||
)
|
||||
set( tests_TESTS PT1FilterTest.InitialOutputIsZero PT1FilterTest.StepResponse PT1FilterTest.FilterFactorEffect)
|
||||
Reference in New Issue
Block a user