summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorMitya Selivanov <0x7fffff@guattari.ru>2022-08-19 16:38:45 +0400
committerMitya Selivanov <0x7fffff@guattari.ru>2022-08-19 16:38:45 +0400
commitfeb9aaf22ffba6a238d572c2b89d60ab9ccbd835 (patch)
tree833171cdbec13fd1ac66a5e029cc4115f93fbb5f /source
parent1101403cbbf083c703ff29b6951ca93a6a425adc (diff)
downloadkit-feb9aaf22ffba6a238d572c2b89d60ab9ccbd835.zip
test win32
Diffstat (limited to 'source')
-rw-r--r--source/kit_test/test.c3
-rw-r--r--source/test/programs/CMakeLists.txt54
2 files changed, 30 insertions, 27 deletions
diff --git a/source/kit_test/test.c b/source/kit_test/test.c
index ce3a93b..421a459 100644
--- a/source/kit_test/test.c
+++ b/source/kit_test/test.c
@@ -101,6 +101,7 @@ static int run_test(volatile int i) {
}
int kit_run_tests(int argc, char **argv) {
+ printf(" %% setup_signals\n\n");
setup_signals();
int success_count = 0;
@@ -111,6 +112,7 @@ int kit_run_tests(int argc, char **argv) {
int term_color = 1;
int carriage_return = 1;
+ printf(" %% parse cmd args\n\n");
for (int i = 0; i < argc; i++)
if (strcmp("--no-term-color", argv[i]) == 0)
term_color = 0;
@@ -122,6 +124,7 @@ int kit_run_tests(int argc, char **argv) {
if (quiet)
term_color = 0;
+ printf(" %% testing loop\n\n");
for (int i = 0; i < kit_tests_list.size && i < KIT_TESTS_SIZE_LIMIT;
i++) {
color_code(term_color, yellow);
diff --git a/source/test/programs/CMakeLists.txt b/source/test/programs/CMakeLists.txt
index eea6d87..d6c7968 100644
--- a/source/test/programs/CMakeLists.txt
+++ b/source/test/programs/CMakeLists.txt
@@ -1,33 +1,33 @@
if(KIT_ENABLE_TESTING)
- add_executable(too_many_tests too_many_tests.c)
- target_link_libraries(too_many_tests ${KIT_TEST_LIBRARY})
- add_test(
- NAME too_many_tests_test
- COMMAND too_many_tests --quiet)
- set_tests_properties(
- too_many_tests_test
- PROPERTIES
- TIMEOUT "15")
+ #add_executable(too_many_tests too_many_tests.c)
+ #target_link_libraries(too_many_tests ${KIT_TEST_LIBRARY})
+ #add_test(
+ # NAME too_many_tests_test
+ # COMMAND too_many_tests --quiet)
+ #set_tests_properties(
+ # too_many_tests_test
+ # PROPERTIES
+ # TIMEOUT "15")
- add_executable(too_many_assertions too_many_assertions.c)
- target_link_libraries(too_many_assertions ${KIT_TEST_LIBRARY})
- add_test(
- NAME too_many_assertions_test
- COMMAND too_many_assertions --quiet)
- set_tests_properties(
- too_many_assertions_test
- PROPERTIES
- TIMEOUT "15")
+ #add_executable(too_many_assertions too_many_assertions.c)
+ #target_link_libraries(too_many_assertions ${KIT_TEST_LIBRARY})
+ #add_test(
+ # NAME too_many_assertions_test
+ # COMMAND too_many_assertions --quiet)
+ #set_tests_properties(
+ # too_many_assertions_test
+ # PROPERTIES
+ # TIMEOUT "15")
- add_executable(cpp_example cpp_example.cpp)
- target_link_libraries(cpp_example ${KIT_TEST_LIBRARY})
- add_test(
- NAME cpp_example_test
- COMMAND cpp_example --quiet)
- set_tests_properties(
- cpp_example_test
- PROPERTIES
- TIMEOUT "15")
+ #add_executable(cpp_example cpp_example.cpp)
+ #target_link_libraries(cpp_example ${KIT_TEST_LIBRARY})
+ #add_test(
+ # NAME cpp_example_test
+ # COMMAND cpp_example --quiet)
+ #set_tests_properties(
+ # cpp_example_test
+ # PROPERTIES
+ # TIMEOUT "15")
add_executable(signals signals.c)
target_link_libraries(signals ${KIT_TEST_LIBRARY})