1
1
mirror of https://github.com/tstack/lnav.git synced 2024-08-16 16:30:25 +03:00
lnav/test/Makefile.am

612 lines
15 KiB
Makefile
Raw Permalink Normal View History

2009-09-14 05:07:32 +04:00
include $(top_srcdir)/aminclude_static.am
2013-04-19 18:03:42 +04:00
TESTS_ENVIRONMENT = $(SHELL) $(top_builddir)/TESTS_ENVIRONMENT
LOG_COMPILER = $(SHELL) $(top_builddir)/TESTS_ENVIRONMENT
2009-09-14 05:07:32 +04:00
RM_V = $(RM_V_@AM_V@)
RM_V_ = $(RM_V_@AM_DEFAULT_V@)
RM_V_0 = @echo " RM " $@;
AM_LIBS = $(CODE_COVERAGE_LIBS)
AM_CFLAGS = $(CODE_COVERAGE_CFLAGS)
AM_CXXFLAGS = $(CODE_COVERAGE_CXXFLAGS)
if HAVE_CARGO
2024-03-28 07:27:03 +03:00
RUST_DEPS_CPPFLAGS = -I$(top_srcdir)/src/third-party/prqlc-c -DHAVE_RUST_DEPS=1
PRQLC_DIR = ../src/third-party/prqlc-c/target
2024-03-27 15:40:27 +03:00
RUST_DEPS_LIBS = $(PRQLC_DIR)/release/libprqlc_c.a
else
RUST_DEPS =
RUST_DEPS_CPPFLAGS =
2024-03-27 08:38:46 +03:00
RUST_DEPS_LIBS =
endif
2009-09-14 05:07:32 +04:00
AM_CPPFLAGS = \
2015-04-05 04:10:57 +03:00
-Wall \
2009-09-14 05:07:32 +04:00
-I$(top_srcdir)/src \
2020-04-25 17:32:05 +03:00
-I$(top_srcdir)/src/fmtlib \
2022-05-11 07:58:32 +03:00
-I$(top_srcdir)/src/third-party \
-I$(top_srcdir)/src/third-party/date/include \
2022-07-29 09:31:58 +03:00
-I$(top_srcdir)/src/third-party/scnlib/include \
$(CODE_COVERAGE_CPPFLAGS) \
$(LIBARCHIVE_CFLAGS) \
$(READLINE_CFLAGS) \
2022-07-29 06:24:32 +03:00
$(PCRE_CFLAGS) \
$(SQLITE3_CFLAGS) \
$(RUST_DEPS_CPPFLAGS)
2009-09-14 05:07:32 +04:00
# AM_CFLAGS = -fprofile-arcs -ftest-coverage
# AM_CXXFLAGS = -fprofile-arcs -ftest-coverage
remote/ssh_host_rsa_key:
mkdir -p remote
ssh-keygen -f remote/ssh_host_rsa_key -N '' -t rsa
remote/ssh_host_dsa_key:
mkdir -p remote
ssh-keygen -f remote/ssh_host_dsa_key -N '' -t dsa
2021-05-20 08:44:32 +03:00
remote/id_rsa:
mkdir -p remote
ssh-keygen -f remote/id_rsa -N '' -t rsa
cp -f remote/id_rsa.pub remote/authorized_keys
2021-03-29 19:35:11 +03:00
noinst_LIBRARIES = \
libtestdummy.a
libtestdummy_a_SOURCES = \
test_stubs.cc
2021-03-29 08:42:51 +03:00
DUMMY_OBJS = \
2021-03-29 19:35:11 +03:00
test_stubs.$(OBJEXT)
2021-03-28 23:50:26 +03:00
2009-09-14 05:07:32 +04:00
check_PROGRAMS = \
2011-06-13 18:46:03 +04:00
drive_data_scanner \
drive_doc_discovery \
2009-09-14 05:07:32 +04:00
drive_line_buffer \
drive_grep_proc \
drive_listview \
drive_logfile \
drive_mvwattrline \
drive_shlexer \
drive_sql \
drive_sql_anno \
drive_view_colors \
2009-09-14 05:07:32 +04:00
drive_vt52_curses \
drive_readline_curses \
lnav_doctests \
2009-09-14 05:07:32 +04:00
slicer \
scripty \
test_abbrev \
test_ansi_scrubber \
2009-09-14 05:07:32 +04:00
test_auto_fd \
test_auto_mem \
test_bookmarks \
test_date_time_scanner \
2009-09-14 05:07:32 +04:00
test_grep_proc2 \
test_line_buffer2 \
test_log_accel \
test_ncurses_unicode \
2015-09-14 18:56:42 +03:00
test_reltime \
test_text_anonymizer \
2019-05-08 15:30:59 +03:00
test_top_status
2009-09-14 05:07:32 +04:00
AM_LDFLAGS = \
$(LIBARCHIVE_LDFLAGS) \
2013-08-28 18:28:31 +04:00
$(STATIC_LDFLAGS) \
2013-08-29 08:22:04 +04:00
$(SQLITE3_LDFLAGS) \
$(READLINE_LDFLAGS) \
2024-03-27 15:40:27 +03:00
$(CURSES_LIB)
2009-09-14 05:07:32 +04:00
CONFIG_OBJS = \
2021-03-29 19:35:11 +03:00
../src/ansi-palette-json.$(OBJEXT) \
../src/default-config.$(OBJEXT) \
../src/xterm-palette-json.$(OBJEXT)
2017-04-05 17:05:19 +03:00
TEXT2C_OBJS = \
2021-03-29 19:35:11 +03:00
../src/builtin-scripts.$(OBJEXT) \
../src/builtin-sh-scripts.$(OBJEXT) \
../src/default-formats.$(OBJEXT) \
../src/time_fmts.$(OBJEXT)
2017-04-05 17:05:19 +03:00
2019-05-08 15:30:59 +03:00
LDADD = \
-lz \
$(CONFIG_OBJS) \
$(TEXT2C_OBJS) \
2021-03-29 08:42:51 +03:00
$(DUMMY_OBJS) \
../src/lnav.events.$(OBJEXT) \
2019-05-08 19:11:22 +03:00
$(top_builddir)/src/libdiag.a \
2022-05-23 06:44:18 +03:00
$(top_builddir)/src/libdatascanner.a \
2021-10-03 09:17:33 +03:00
$(top_builddir)/src/formats/logfmt/liblogfmt.a \
2019-05-08 15:30:59 +03:00
$(top_builddir)/src/fmtlib/libcppfmt.a \
$(top_builddir)/src/pcrepp/libpcrepp.a \
$(top_builddir)/src/yajl/libyajl.a \
$(top_builddir)/src/yajlpp/libyajlpp.a \
2019-05-08 19:11:22 +03:00
$(top_builddir)/src/base/libbase.a \
2020-12-24 02:01:21 +03:00
$(top_builddir)/src/pugixml/libpugixml.a \
$(top_builddir)/src/third-party/base64/lib/libbase64.a \
2023-09-06 07:54:49 +03:00
$(top_builddir)/src/third-party/date/src/libdatepp.a \
2022-07-29 10:07:11 +03:00
$(top_builddir)/src/third-party/scnlib/src/libscnlib.a \
2021-04-04 08:30:45 +03:00
$(READLINE_LIBS) \
2019-05-08 19:11:22 +03:00
$(CURSES_LIB) \
$(LIBARCHIVE_LIBS) \
2019-05-08 19:11:22 +03:00
$(SQLITE3_LIBS) \
$(PCRE_LIBS) \
2024-03-27 08:38:46 +03:00
$(LIBCURL) \
$(RUST_DEPS_LIBS)
2009-09-14 05:07:32 +04:00
test_ansi_scrubber_SOURCES = test_ansi_scrubber.cc
2009-09-14 05:07:32 +04:00
test_auto_fd_SOURCES = test_auto_fd.cc
test_auto_mem_SOURCES = test_auto_mem.cc
2013-07-29 01:33:11 +04:00
test_bookmarks_SOURCES = test_bookmarks.cc
2009-09-14 05:07:32 +04:00
test_date_time_scanner_SOURCES = test_date_time_scanner.cc
2013-07-29 01:33:11 +04:00
test_grep_proc2_SOURCES = test_grep_proc2.cc
2009-09-14 05:07:32 +04:00
2013-07-29 01:33:11 +04:00
test_line_buffer2_SOURCES = test_line_buffer2.cc
2009-09-14 05:07:32 +04:00
test_log_accel_SOURCES = test_log_accel.cc
test_text_anonymizer_SOURCES = test_text_anonymizer.cc
test_top_status_SOURCES = test_top_status.cc
test_abbrev_SOURCES = test_abbrev.cc
2014-05-05 17:44:58 +04:00
2015-09-14 18:56:42 +03:00
test_reltime_SOURCES = test_reltime.cc
test_ncurses_unicode_SOURCES = test_ncurses_unicode.cc
lnav_doctests_SOURCES = lnav_doctests.cc
2013-07-29 01:33:11 +04:00
drive_line_buffer_SOURCES = drive_line_buffer.cc
drive_grep_proc_SOURCES = drive_grep_proc.cc
2014-05-05 17:44:58 +04:00
2013-07-29 01:33:11 +04:00
drive_listview_SOURCES = drive_listview.cc
drive_logfile_SOURCES = drive_logfile.cc
2009-09-14 05:07:32 +04:00
drive_shlexer_SOURCES = drive_shlexer.cc
2011-06-13 18:46:03 +04:00
drive_data_scanner_SOURCES = \
drive_data_scanner.cc
drive_doc_discovery_SOURCES = \
drive_doc_discovery.cc
drive_mvwattrline_SOURCES = drive_mvwattrline.cc
2013-07-29 01:33:11 +04:00
drive_view_colors_SOURCES = drive_view_colors.cc
drive_vt52_curses_SOURCES = drive_vt52_curses.cc
drive_readline_curses_SOURCES = drive_readline_curses.cc
2019-05-08 15:30:59 +03:00
drive_sql_SOURCES = drive_sql.cc
drive_sql_anno_SOURCES = drive_sql_anno.cc
2013-07-29 01:33:11 +04:00
slicer_SOURCES = slicer.cc
2009-09-14 05:07:32 +04:00
scripty_SOURCES = scripty.cc
2009-09-30 03:21:33 +04:00
dist_noinst_SCRIPTS = \
parser_debugger.py \
2015-08-20 07:02:26 +03:00
test_cli.sh \
test_cmds.sh \
test_config.sh \
test_curl.sh \
test_data_parser.sh \
test_demux.sh \
test_events.sh \
test_format_installer.sh \
test_format_loader.sh \
test_timeline.sh \
2009-09-30 03:21:33 +04:00
test_grep_proc.sh \
test_json_format.sh \
2009-09-30 03:21:33 +04:00
test_line_buffer.sh \
test_listview.sh \
test_logfile.sh \
test_meta.sh \
test_mvwattrline.sh \
test_prql.sh \
test_regex101.sh \
test_remote.sh \
test_scripts.sh \
test_sessions.sh \
test_shlexer.sh \
test_sql.sh \
test_sql_anno.sh \
test_sql_coll_func.sh \
2022-07-02 02:02:14 +03:00
test_sql_fs_func.sh \
test_sql_indexes.sh \
2014-05-05 17:44:58 +04:00
test_sql_json_func.sh \
2022-08-31 08:28:12 +03:00
test_sql_regexp.sh \
2022-07-02 02:02:14 +03:00
test_sql_search_table.sh \
2013-07-09 17:51:18 +04:00
test_sql_str_func.sh \
2015-10-04 00:58:01 +03:00
test_sql_time_func.sh \
test_sql_views_vtab.sh \
2020-12-24 02:01:21 +03:00
test_sql_xml_func.sh \
test_sql_yaml_func.sh \
test_text_file.sh \
2021-02-03 08:58:42 +03:00
test_tui.sh \
test_view_colors.sh \
test_vt52_curses.sh \
test_pretty_print.sh
2009-09-30 03:21:33 +04:00
include expected/expected.am
2009-09-30 03:21:33 +04:00
dist_noinst_DATA = \
$(EXPECTED_FILES) \
2022-09-22 20:54:09 +03:00
expected/test_tailer.sh_12f539e535df04364316699f9edeac461aa9f9de.err \
expected/test_tailer.sh_12f539e535df04364316699f9edeac461aa9f9de.out \
2013-06-08 18:57:40 +04:00
ansi-colors.0.in \
bad-config/formats/invalid-file-format/format.json \
2022-10-05 07:17:01 +03:00
bad-config/formats/invalid-json-format/format.json \
bad-config/formats/invalid-name/format.json \
bad-config/formats/invalid-no-tscap/format.json \
2022-04-13 02:37:53 +03:00
bad-config/formats/invalid-properties/format.json \
bad-config/formats/invalid-regex/format.json \
bad-config/formats/invalid-sample/format.json \
2022-04-13 02:37:53 +03:00
bad-config/formats/invalid-schema/format.json \
2015-11-27 09:19:53 +03:00
bad-config/formats/invalid-sql/init.sql \
2022-04-13 02:37:53 +03:00
bad-config/formats/invalid-sql/init2.sql \
bad-config/formats/no-regexes/format.json \
bad-config/formats/no-samples/format.json \
bad-config2/configs/invalid-annotation/config.json \
bad-config2/configs/invalid-theme/config.json \
2019-05-04 00:29:27 +03:00
bad-config2/formats/invalid-config/config.json \
2022-04-13 02:37:53 +03:00
bad-config2/formats/invalid-config/config.bad-schema.json \
2019-05-04 20:35:23 +03:00
bad-config2/formats/invalid-config/config.malformed.json \
bad-config2/formats/invalid-config/config.truncated.json \
bad-config-json/formats/invalid-json/format.json \
bad-config-json/formats/invalid-key/format.json \
books.json \
2021-03-20 01:43:03 +03:00
books.xml \
2021-03-29 19:35:11 +03:00
file_for_dot_read.sql \
datafile_simple.0 \
datafile_simple.1 \
datafile_simple.2 \
datafile_simple.3 \
datafile_simple.4 \
datafile_simple.5 \
datafile_simple.6 \
datafile_simple.7 \
2014-03-09 23:55:02 +04:00
datafile_simple.8 \
datafile_simple.9 \
datafile_simple.10 \
2014-03-11 14:49:47 +04:00
datafile_simple.11 \
datafile_simple.12 \
datafile_simple.13 \
datafile_simple.14 \
datafile_simple.15 \
datafile_simple.16 \
datafile_simple.17 \
datafile_simple.18 \
datafile_simple.19 \
datafile_simple.20 \
datafile_simple.21 \
datafile_simple.22 \
datafile_simple.26 \
datafile_xml.0 \
2021-11-06 01:13:16 +03:00
dhcp.pcapng \
dhcp-trunc.pcapng \
empty-result.lnav \
example.patch \
example.toml \
expected_help.txt \
gharchive_log.jsonl \
invalid-books.xml \
2009-09-30 03:21:33 +04:00
listview_output.0 \
listview_output.1 \
listview_output.2 \
listview_output.3 \
listview_output.4 \
listview_output.5 \
listview_output.6 \
2023-04-25 22:38:53 +03:00
listview_output_cursor.0 \
listview_output_cursor.1 \
listview_output_cursor.2 \
listview_output_cursor.3 \
listview_output_cursor.4 \
listview_output_cursor.5 \
listview_output_cursor.6 \
log.clog \
2009-09-30 03:21:33 +04:00
logfile_access_log.0 \
logfile_access_log.1 \
logfile_ansi.0 \
2022-09-20 07:15:28 +03:00
logfile_ansi.1 \
logfile_bad_access_log.0 \
logfile_bad_syslog.0 \
logfile_block.1 \
logfile_block.2 \
logfile_blued.0 \
logfile_bro_conn.log.0 \
logfile_bro_http.log.0 \
logfile_bunyan.0 \
logfile_crlf.0 \
logfile_cloudflare.json \
logfile_cxx.0 \
logfile_docker_compose.0 \
2024-05-08 07:49:08 +03:00
logfile_docker_compose_with_noise.0 \
logfile_docker_compose_with_ts.0 \
2009-09-30 03:21:33 +04:00
logfile_empty.0 \
logfile_epoch.0 \
2016-11-22 21:02:38 +03:00
logfile_epoch.1 \
logfile_filter.0 \
2014-11-04 07:41:38 +03:00
logfile_for_join.0 \
logfile_generic.0 \
logfile_generic.1 \
logfile_generic.2 \
logfile_generic.3 \
logfile_generic_with_header.0 \
logfile_glog.0 \
logfile_haproxy.0 \
2019-09-10 08:10:50 +03:00
logfile_invalid_json.json \
2021-11-06 01:13:16 +03:00
logfile_invalid_json2.json \
logfile_mixed_json2.json \
logfile_mux_zookeeper.0 \
2018-08-21 21:21:57 +03:00
logfile_journald.json \
logfile_json.json \
2016-03-28 01:28:47 +03:00
logfile_json2.json \
2017-04-07 09:20:02 +03:00
logfile_json3.json \
logfile_json_subsec.json \
logfile_leveltest.0 \
2021-10-03 09:17:33 +03:00
logfile_logfmt.0 \
logfile_multiline.0 \
logfile_nested_json.json \
logfile_nextcloud.0 \
2014-11-04 07:41:38 +03:00
logfile_openam.0 \
logfile_partitions.0 \
logfile_plain.0 \
logfile_pretty.0 \
2022-07-02 02:02:14 +03:00
logfile_procstate.0 \
logfile_regexp_access_log.0 \
logfile_rollover.0 \
logfile_rollover.1 \
logfile_strace_log.0 \
2009-09-30 03:21:33 +04:00
logfile_syslog.0 \
logfile_syslog.1 \
2014-11-04 07:41:38 +03:00
logfile_syslog.2 \
2022-08-17 00:51:08 +03:00
logfile_syslog.3 \
logfile_syslog_fr.0 \
logfile_syslog_with_access_log.0 \
logfile_syslog_with_header.0 \
2015-09-14 18:56:42 +03:00
logfile_syslog_with_mixed_times.0 \
logfile_tai64n.0 \
logfile_tcf.0 \
logfile_tcf.1 \
2009-09-30 03:21:33 +04:00
logfile_tcsh_history.0 \
2020-09-24 23:22:42 +03:00
logfile_uwsgi.0 \
logfile_vami.0 \
2014-11-11 19:44:44 +03:00
logfile_vdsm.0 \
logfile_vmw_log.0 \
logfile_vpxd.0 \
2020-12-06 10:33:17 +03:00
logfile_w3c.0 \
logfile_w3c.1 \
logfile_w3c.2 \
logfile_w3c.3 \
logfile_w3c.4 \
logfile_w3c.5 \
logfile_w3c.6 \
logfile_w3c_big.0 \
2009-09-30 03:21:33 +04:00
logfile_with_a_really_long_name_to_test_a_bug_with_long_names.0 \
logfile_with_zones.0 \
2021-03-20 01:43:03 +03:00
logfile_xml_msg.0 \
2023-09-01 08:53:39 +03:00
man_echo.txt \
multiline.lnav \
mvwattrline_output.0 \
nested.lnav \
pyfile_0.py \
2022-09-22 22:27:14 +03:00
textfile_0.md \
2022-08-04 00:19:54 +03:00
textfile_ansi.0 \
textfile_ansi_expanding.0 \
textfile_json_indented.0 \
2024-06-12 09:00:41 +03:00
textfile_json_long.0 \
textfile_json_one_line.0 \
textfile_nonl.txt \
2024-03-07 07:53:08 +03:00
textfile_plain.0 \
textfile_quoted_json.0 \
2015-12-19 17:18:47 +03:00
toplevel.lnav \
2018-10-17 17:03:33 +03:00
UTF-8-test.txt \
view_colors_output.0 \
2009-09-30 03:21:33 +04:00
vt52_curses_input.0 \
vt52_curses_input.1 \
vt52_curses_output.0 \
2013-06-03 18:45:19 +04:00
vt52_curses_output.1 \
xpath_tui.0 \
configs/installed/anno-test.json \
configs/installed/anno-test.sh \
configs/installed/hw-url-handler.json \
configs/installed/hw-url-handler.lnav \
formats/collision/format.json \
formats/customlevel/format.json \
formats/jsontest/format.json \
formats/jsontest/lnav-logstash.json \
2016-12-06 18:14:54 +03:00
formats/jsontest/rewrite-user.lnav \
2016-03-28 01:28:47 +03:00
formats/jsontest2/format.json \
2017-04-07 09:20:02 +03:00
formats/jsontest3/format.json \
formats/jsontest-subsec/format.json \
formats/nestedjson/format.json \
formats/partitions/format.json \
formats/scripts/multiline-echo.lnav \
formats/scripts/redirecting.lnav \
formats/scripts/nested-redirecting.lnav \
2015-11-27 09:19:53 +03:00
formats/sqldir/init.sql \
formats/timestamp/format.json \
2021-03-20 07:29:18 +03:00
formats/xmlmsg/format.json \
2024-01-14 05:24:22 +03:00
log-samples/sample-057d6c669632ef9d07b6adec605f6bdeae19af27.txt \
log-samples/sample-06aaa6f48a801f592558575d886864d6c3ab9ed4.txt \
log-samples/sample-1aeb47c0a97d19bb7418f0172480e05e49c6e53e.txt \
log-samples/sample-27353a72ba4025448f261dcfa6ea16e474187795.txt \
log-samples/sample-3856ad0f551a04fde41a020158d6b33ef97c870a.txt \
log-samples/sample-45364b3fd51af92a4ad8a309b5f4fd88.txt \
log-samples/sample-500c9e492e04f5f58862c8086ca301de0dd976ce.txt \
log-samples/sample-55ac97afae4b0650ccb62e2dbc8d89bb.txt \
log-samples/sample-6049d4309f26eefb1a3406d937a9ba8a0df592a7.txt \
log-samples/sample-62315d884afdc4155b35f905415c74bfcfd39fc2.txt \
log-samples/sample-70c906b3c1a1cf03f15bde92ee78edfa6f9b7960.txt \
log-samples/sample-9cf7fbb3546c676c686fac0ed096d026f46c875f.txt \
log-samples/sample-a74570613c082c7fe283672031e18e54e8887ffb.txt \
log-samples/sample-aca2878a2e50779c6697c0747ab1f60e4b368dcb.txt \
log-samples/sample-ad31f12d2adabd07e3ddda3ad5b0dbf6b49c4c99.txt \
log-samples/sample-bc6f6cf689fa5455616b4d9fbe121a48d3c9de59.txt \
log-samples/sample-c15acd32844669d23d0cbc88ec548129ed2c592e.txt \
log-samples/sample-c23f22c1b932b904203e018f78dead95fb89b15d.txt \
log-samples/sample-d0d6b3fc6766caac5ac3fac4a3754ceaab785eb8.txt \
log-samples/sample-d4a0aedc8350f64b22403eeef4eca71fbf749d2b.txt \
log-samples/sample-d714b5e8cd354321f376ed1c0a70ec9a2f58076d.txt \
log-samples/sample-dd7d406352ec6a11d966b6f015a9482b060f2b29.txt \
log-samples/sample-e779d1771e34f5203ae73e85802e78002be63db6.txt \
log-samples/sample-eef32793daf841a576d8a5cd27239d5d.txt \
log-samples/sample-f2fba0d0b1e57f9a707ea96a8a4efcdc.txt \
log-samples/sample-f5afbee90a8c054061c4e9ffe673293cce7761de.txt \
log-samples/sample-fc8923633e57bacd641d80dde3ff878212230552.txt \
naughty_files.py \
2021-05-21 01:48:05 +03:00
remote-log-dir/logfile_access_log.0 \
remote-log-dir/logfile_access_log.1 \
2021-02-06 03:04:34 +03:00
tui-captures/tui_echo.0 \
2021-02-03 08:58:42 +03:00
tui-captures/tui_help.0
2009-09-30 03:21:33 +04:00
TESTS = \
lnav_doctests \
test_abbrev \
test_ansi_scrubber \
2009-09-14 05:07:32 +04:00
test_auto_fd \
test_auto_mem \
test_bookmarks \
test_date_time_scanner \
test_format_installer.sh \
test_format_loader.sh \
2015-08-20 07:02:26 +03:00
test_cli.sh \
test_cmds.sh \
test_config.sh \
test_data_parser.sh \
test_demux.sh \
test_events.sh \
test_listview.sh \
test_meta.sh \
test_mvwattrline.sh \
test_timeline.sh \
2009-09-14 05:07:32 +04:00
test_grep_proc.sh \
test_grep_proc2 \
test_json_format.sh \
test_log_accel \
test_logfile.sh \
2015-09-14 18:56:42 +03:00
test_reltime \
test_scripts.sh \
test_sessions.sh \
test_shlexer.sh \
test_sql.sh \
test_sql_anno.sh \
test_sql_coll_func.sh \
test_sql_fs_func.sh \
2022-07-02 02:02:14 +03:00
test_sql_indexes.sh \
test_sql_json_func.sh \
2022-08-31 08:28:12 +03:00
test_sql_regexp.sh \
2022-07-02 02:02:14 +03:00
test_sql_search_table.sh \
test_sql_str_func.sh \
2015-10-04 00:58:01 +03:00
test_sql_time_func.sh \
test_sql_views_vtab.sh \
2020-12-24 02:01:21 +03:00
test_sql_xml_func.sh \
test_sql_yaml_func.sh \
test_text_anonymizer \
test_text_file.sh \
2021-02-03 08:58:42 +03:00
test_tui.sh \
test_pretty_print.sh \
test_view_colors.sh \
test_vt52_curses.sh
2010-01-02 23:28:14 +03:00
if HAVE_CARGO
TESTS += test_prql.sh
endif
DISABLED_TESTS = \
2022-05-01 05:27:34 +03:00
test_regex101.sh \
test_remote.sh \
2021-01-30 08:03:42 +03:00
test_top_status \
test_line_buffer2 \
test_line_buffer.sh
if HAVE_LIBCURL
TESTS += \
test_curl.sh
endif
2010-01-02 23:28:14 +03:00
DISTCLEANFILES = \
*.cmd \
2010-01-02 23:28:14 +03:00
*.dat \
*.out \
*.err \
*.db \
*.dpt \
2013-05-31 19:01:31 +04:00
*.diff \
2010-01-02 23:28:14 +03:00
*.index \
*.tmp \
*.gz \
2014-11-04 07:41:38 +03:00
*.bz2 \
*.outbak \
2021-09-08 08:39:39 +03:00
*.errbak \
*.tmpbak \
2021-01-11 09:04:55 +03:00
*.xz \
2022-07-23 07:11:35 +03:00
exported-session.0.lnav \
2018-10-12 17:23:28 +03:00
hw.txt \
hw2.txt \
reload_test.0 \
2014-11-04 07:41:38 +03:00
truncfile.0 \
ln.dbg \
2014-11-07 07:41:25 +03:00
logfile_append.0 \
logfile_changed.0 \
logfile_rollover.1.live \
2015-04-05 01:12:26 +03:00
test.log \
2015-11-15 17:25:08 +03:00
logfile_stdin.log \
2020-12-08 20:29:52 +03:00
logfile_stdin.0.log \
2020-09-04 08:13:21 +03:00
logfile_syslog_test.0 \
logfile_syslog_test.2 \
2020-09-04 08:13:21 +03:00
logfile_syslog_fr_test.0 \
logfile_syslog_with_mixed_times_test.0 \
textfile_long_lines.0 \
not:a:remote:file \
rollover_in.0 \
test-logs.tgz \
test-logs-trunc.tgz \
2020-05-20 08:23:16 +03:00
test_pretty_in.* \
tmp \
2015-11-15 17:25:08 +03:00
unreadable.log \
UTF-8-test.md \
empty \
scripts-empty
test_remote.sh.log: remote/ssh_host_dsa_key remote/ssh_host_rsa_key remote/id_rsa
distclean-local:
$(RM_V)rm -rf remote remote-tmp not:a:remote:dir
$(RM_V)rm -rf sessions
2024-05-01 08:04:18 +03:00
$(RM_V)rm -rf cfg
2024-05-11 08:27:38 +03:00
$(RM_V)rm -rf file-tz
$(RM_V)rm -rf tmp
$(RM_V)rm -rf piper-tmp
$(RM_V)rm -rf rotmp
2018-05-17 17:37:58 +03:00
$(RM_V)rm -rf meta-sessions
2023-07-16 16:14:05 +03:00
$(RM_V)rm -rf mgmt-config
2024-04-05 08:19:40 +03:00
$(RM_V)rm -rf naughty
2023-07-16 16:14:05 +03:00
$(RM_V)rm -rf piper-config
$(RM_V)rm -rf nested
2019-08-11 07:59:43 +03:00
$(RM_V)rm -rf test-config
$(RM_V)rm -rf .lnav
$(RM_V)rm -rf regex101-home
$(RM_V)rm -rf events-home
2022-08-06 08:23:19 +03:00
$(RM_V)rm -rf support-dump
$(RM_V)rm -rf ../installer-test-home
expected:
$(top_srcdir)/update_expected_output.sh $(srcdir) $(builddir)
.PHONY: expected