From 487876477507038067ad3f019d58c257fc06dfda Mon Sep 17 00:00:00 2001 From: Mitya Selivanov <0x7fffff@guattari.ru> Date: Tue, 9 Aug 2022 22:10:12 +0400 Subject: Add noexcept for C++ --- source/test/programs/CMakeLists.txt | 10 ++++++++++ source/test/programs/cpp.cpp | 13 +++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 source/test/programs/cpp.cpp (limited to 'source/test/programs') diff --git a/source/test/programs/CMakeLists.txt b/source/test/programs/CMakeLists.txt index 4fd3660..641aa16 100644 --- a/source/test/programs/CMakeLists.txt +++ b/source/test/programs/CMakeLists.txt @@ -18,4 +18,14 @@ if(KIT_ENABLE_TESTING) too_many_assertions_test PROPERTIES TIMEOUT "30") + + add_executable(cpp cpp.cpp) + target_link_libraries(cpp ${KIT_TEST_LIBRARY}) + add_test( + NAME cpp_test + COMMAND cpp) + set_tests_properties( + cpp_test + PROPERTIES + TIMEOUT "30") endif() diff --git a/source/test/programs/cpp.cpp b/source/test/programs/cpp.cpp new file mode 100644 index 0000000..ca0b4c7 --- /dev/null +++ b/source/test/programs/cpp.cpp @@ -0,0 +1,13 @@ +#include "../../kit_test/test.h" + +TEST("foo") { + REQUIRE(20 + 22 == 42); +} + +TEST("bar") { + REQUIRE(true); +} + +auto main(int argc, char **argv) -> int { + return run_tests(argc, argv); +} -- cgit v1.2.3