2019-07-09 15:34:55 +00:00
|
|
|
enable_testing()
|
|
|
|
|
2019-06-22 00:19:56 +00:00
|
|
|
include_directories(
|
2022-03-17 05:29:45 +00:00
|
|
|
. ${CMAKE_SOURCE_DIR}/src ${CMAKE_SOURCE_DIR}/src/fmtlib
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/../src ${CMAKE_CURRENT_BINARY_DIR})
|
2014-09-29 05:36:07 +00:00
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(test_abbrev test_abbrev.cc test_stubs.cc)
|
2022-03-16 22:38:08 +00:00
|
|
|
target_link_libraries(test_abbrev diag)
|
2021-01-02 04:40:52 +00:00
|
|
|
add_test(NAME test_abbrev COMMAND test_abbrev)
|
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(test_ansi_scrubber test_ansi_scrubber.cc test_stubs.cc)
|
|
|
|
target_link_libraries(test_ansi_scrubber diag)
|
2020-09-05 21:41:05 +00:00
|
|
|
add_test(NAME test_ansi_scrubber COMMAND test_ansi_scrubber)
|
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(test_auto_fd test_auto_fd.cc test_stubs.cc)
|
2022-03-16 22:38:08 +00:00
|
|
|
target_link_libraries(test_auto_fd diag)
|
2021-01-02 04:40:52 +00:00
|
|
|
add_test(NAME test_auto_fd COMMAND test_auto_fd)
|
2019-07-09 15:34:55 +00:00
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(test_auto_mem test_auto_mem.cc test_stubs.cc)
|
2022-03-16 22:38:08 +00:00
|
|
|
target_link_libraries(test_auto_mem diag)
|
2021-01-02 04:40:52 +00:00
|
|
|
add_test(NAME test_auto_mem COMMAND test_auto_mem)
|
|
|
|
|
2022-07-01 23:02:14 +00:00
|
|
|
add_executable(test_column_namer test_column_namer.cc test_stubs.cc)
|
|
|
|
target_include_directories(test_column_namer PUBLIC ../src/third-party/doctest-root)
|
|
|
|
target_link_libraries(test_column_namer diag)
|
|
|
|
add_test(NAME test_column_namer COMMAND test_column_namer)
|
|
|
|
|
2022-05-23 03:44:18 +00:00
|
|
|
add_executable(document.sections.tests document.sections.tests.cc test_stubs.cc)
|
|
|
|
target_include_directories(document.sections.tests PUBLIC ../src/third-party/doctest-root)
|
|
|
|
target_link_libraries(document.sections.tests diag)
|
|
|
|
add_test(NAME document.sections.tests COMMAND document.sections.tests)
|
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(test_bookmarks test_bookmarks.cc test_stubs.cc)
|
2022-03-16 22:38:08 +00:00
|
|
|
target_link_libraries(test_bookmarks diag)
|
2021-01-02 04:40:52 +00:00
|
|
|
add_test(NAME test_bookmarks COMMAND test_bookmarks)
|
|
|
|
|
|
|
|
add_executable(test_date_time_scanner test_date_time_scanner.cc)
|
2022-03-16 22:38:08 +00:00
|
|
|
target_link_libraries(test_date_time_scanner base lnavdt)
|
2021-01-02 04:40:52 +00:00
|
|
|
add_test(NAME test_date_time_scanner COMMAND test_date_time_scanner)
|
|
|
|
|
|
|
|
add_executable(test_grep_proc2 test_grep_proc2.cc)
|
2022-03-16 22:38:08 +00:00
|
|
|
target_link_libraries(test_grep_proc2 lnavfileio)
|
2021-01-02 04:40:52 +00:00
|
|
|
add_test(NAME test_grep_proc2 COMMAND test_grep_proc2)
|
2019-07-15 17:08:14 +00:00
|
|
|
|
|
|
|
add_executable(test_line_buffer2 test_line_buffer2.cc)
|
2022-03-16 22:38:08 +00:00
|
|
|
target_link_libraries(test_line_buffer2 lnavfileio)
|
2019-07-15 17:08:14 +00:00
|
|
|
add_test(NAME test_line_buffer2 COMMAND test_line_buffer2)
|
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(test_log_accel test_log_accel.cc test_stubs.cc)
|
|
|
|
target_link_libraries(test_log_accel diag)
|
2021-01-02 04:40:52 +00:00
|
|
|
add_test(NAME test_log_accel COMMAND test_log_accel)
|
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(lnav_doctests lnav_doctests.cc test_stubs.cc)
|
2021-09-27 22:54:10 +00:00
|
|
|
target_include_directories(lnav_doctests PUBLIC ../src/third-party/doctest-root)
|
2022-03-17 05:29:45 +00:00
|
|
|
target_link_libraries(lnav_doctests diag ${lnav_LIBS})
|
2021-01-02 04:40:52 +00:00
|
|
|
add_test(NAME lnav_doctests COMMAND lnav_doctests)
|
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(test_reltime test_reltime.cc test_stubs.cc)
|
2021-09-27 22:54:10 +00:00
|
|
|
target_include_directories(test_reltime PUBLIC ../src/third-party/doctest-root)
|
2022-03-17 05:29:45 +00:00
|
|
|
target_link_libraries(test_reltime diag)
|
2019-07-15 17:08:14 +00:00
|
|
|
add_test(NAME test_reltime COMMAND test_reltime)
|
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(test_top_status test_top_status.cc test_stubs.cc)
|
|
|
|
target_link_libraries(test_top_status diag logfmt)
|
2021-01-02 04:40:52 +00:00
|
|
|
add_test(NAME test_top_status COMMAND test_top_status)
|
2019-07-15 17:08:14 +00:00
|
|
|
|
2022-09-16 04:11:30 +00:00
|
|
|
add_executable(test_text_anonymizer test_text_anonymizer.cc test_stubs.cc)
|
|
|
|
target_include_directories(test_text_anonymizer PUBLIC ../src/third-party/doctest-root)
|
|
|
|
target_link_libraries(test_text_anonymizer diag)
|
|
|
|
add_test(NAME test_text_anonymizer COMMAND test_text_anonymizer)
|
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(drive_view_colors drive_view_colors.cc test_stubs.cc)
|
|
|
|
target_link_libraries(drive_view_colors diag)
|
2021-02-13 20:41:48 +00:00
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(drive_vt52_curses drive_vt52_curses.cc test_stubs.cc)
|
|
|
|
target_link_libraries(drive_vt52_curses diag)
|
2021-01-08 22:08:52 +00:00
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(drive_logfile drive_logfile.cc test_stubs.cc)
|
|
|
|
target_link_libraries(drive_logfile diag)
|
2021-05-29 05:53:50 +00:00
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(drive_sql_anno drive_sql_anno.cc test_stubs.cc)
|
|
|
|
target_link_libraries(drive_sql_anno diag)
|
2019-07-30 05:18:32 +00:00
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(drive_data_scanner drive_data_scanner.cc test_stubs.cc)
|
|
|
|
target_link_libraries(drive_data_scanner diag logfmt)
|
2020-12-31 21:55:21 +00:00
|
|
|
|
2022-03-17 05:29:45 +00:00
|
|
|
add_executable(scripty scripty.cc test_stubs.cc)
|
|
|
|
target_link_libraries(scripty diag)
|