2009-09-14 01:07:32 +00:00
|
|
|
|
2013-04-19 14:03:42 +00:00
|
|
|
TESTS_ENVIRONMENT = $(SHELL) $(top_builddir)/TESTS_ENVIRONMENT
|
2013-04-19 05:46:49 +00:00
|
|
|
LOG_COMPILER = $(SHELL) $(top_builddir)/TESTS_ENVIRONMENT
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2015-03-25 09:13:18 +00:00
|
|
|
RM_V = $(RM_V_@AM_V@)
|
|
|
|
RM_V_ = $(RM_V_@AM_DEFAULT_V@)
|
|
|
|
RM_V_0 = @echo " RM " $@;
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
AM_CPPFLAGS = \
|
2015-04-05 01:10:57 +00:00
|
|
|
-Wall \
|
2009-09-14 01:07:32 +00:00
|
|
|
-I$(top_srcdir)/src \
|
2015-03-29 08:19:51 +00:00
|
|
|
$(READLINE_CFLAGS) \
|
2009-10-06 21:14:49 +00:00
|
|
|
$(SQLITE3_CFLAGS)
|
2009-09-14 01:07:32 +00:00
|
|
|
|
|
|
|
# AM_CFLAGS = -fprofile-arcs -ftest-coverage
|
|
|
|
# AM_CXXFLAGS = -fprofile-arcs -ftest-coverage
|
|
|
|
|
|
|
|
check_PROGRAMS = \
|
2011-06-13 14:46:03 +00:00
|
|
|
drive_data_scanner \
|
2009-09-14 01:07:32 +00:00
|
|
|
drive_line_buffer \
|
|
|
|
drive_grep_proc \
|
|
|
|
drive_listview \
|
|
|
|
drive_logfile \
|
2014-03-08 13:26:49 +00:00
|
|
|
drive_mvwattrline \
|
2011-06-01 14:28:46 +00:00
|
|
|
drive_sequencer \
|
2015-12-19 06:39:27 +00:00
|
|
|
drive_shlexer \
|
2013-05-29 14:28:57 +00:00
|
|
|
drive_sql \
|
2017-03-26 13:02:53 +00:00
|
|
|
drive_sql_anno \
|
2012-06-05 20:18:59 +00:00
|
|
|
drive_view_colors \
|
2009-09-14 01:07:32 +00:00
|
|
|
drive_vt52_curses \
|
|
|
|
drive_readline_curses \
|
2017-04-25 12:41:14 +00:00
|
|
|
lnav_doctests \
|
2009-09-14 01:07:32 +00:00
|
|
|
slicer \
|
|
|
|
scripty \
|
2016-08-22 13:45:27 +00:00
|
|
|
test_abbrev \
|
2013-06-08 17:51:54 +00:00
|
|
|
test_ansi_scrubber \
|
2009-09-14 01:07:32 +00:00
|
|
|
test_auto_fd \
|
|
|
|
test_auto_mem \
|
|
|
|
test_bookmarks \
|
2014-03-22 15:02:48 +00:00
|
|
|
test_date_time_scanner \
|
2009-09-14 01:07:32 +00:00
|
|
|
test_grep_proc2 \
|
|
|
|
test_line_buffer2 \
|
2014-03-16 22:07:08 +00:00
|
|
|
test_log_accel \
|
2017-08-01 17:17:30 +00:00
|
|
|
test_ncurses_unicode \
|
2010-04-26 04:12:25 +00:00
|
|
|
test_pcrepp \
|
2015-09-14 15:56:42 +00:00
|
|
|
test_reltime \
|
2019-05-08 12:30:59 +00:00
|
|
|
test_top_status
|
2009-09-14 01:07:32 +00:00
|
|
|
|
|
|
|
AM_LDFLAGS = \
|
2013-08-28 14:28:31 +00:00
|
|
|
$(STATIC_LDFLAGS) \
|
2013-08-29 04:22:04 +00:00
|
|
|
$(SQLITE3_LDFLAGS) \
|
2015-03-29 08:19:51 +00:00
|
|
|
$(READLINE_LDFLAGS) \
|
2017-04-24 13:36:17 +00:00
|
|
|
$(CURSES_LIB) \
|
2013-08-29 04:22:04 +00:00
|
|
|
-pthread
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2017-01-21 15:41:28 +00:00
|
|
|
CONFIG_OBJS = \
|
2019-05-15 16:13:56 +00:00
|
|
|
../src/ansi-palette-json.o \
|
|
|
|
../src/default-config.o \
|
|
|
|
../src/xterm-palette-json.o
|
2017-01-21 15:41:28 +00:00
|
|
|
|
2017-04-05 14:05:19 +00:00
|
|
|
TEXT2C_OBJS = \
|
2019-05-08 12:30:59 +00:00
|
|
|
../src/default-log-formats-json.o \
|
2019-05-15 16:13:56 +00:00
|
|
|
../src/builtin-scripts.o \
|
|
|
|
../src/builtin-sh-scripts.o
|
2017-04-05 14:05:19 +00:00
|
|
|
|
2019-05-08 12:30:59 +00:00
|
|
|
LDADD = \
|
|
|
|
-lz \
|
|
|
|
$(CONFIG_OBJS) \
|
|
|
|
$(TEXT2C_OBJS) \
|
2019-05-08 16:11:22 +00:00
|
|
|
$(top_builddir)/src/libdiag.a \
|
2019-05-08 12:30:59 +00: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 16:11:22 +00:00
|
|
|
$(top_builddir)/src/base/libbase.a \
|
|
|
|
$(CURSES_LIB) \
|
|
|
|
$(SQLITE3_LIBS) \
|
|
|
|
$(PCRE_LIBS) \
|
|
|
|
$(READLINE_LIBS) \
|
|
|
|
$(LIBCURL) \
|
2019-05-08 12:30:59 +00:00
|
|
|
-lpcrecpp
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2013-06-08 17:51:54 +00:00
|
|
|
test_ansi_scrubber_SOURCES = test_ansi_scrubber.cc
|
|
|
|
|
2009-09-14 01:07:32 +00:00
|
|
|
test_auto_fd_SOURCES = test_auto_fd.cc
|
|
|
|
|
|
|
|
test_auto_mem_SOURCES = test_auto_mem.cc
|
|
|
|
|
2013-07-28 21:33:11 +00:00
|
|
|
test_bookmarks_SOURCES = test_bookmarks.cc
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2014-03-22 15:02:48 +00:00
|
|
|
test_date_time_scanner_SOURCES = test_date_time_scanner.cc
|
|
|
|
|
2013-07-28 21:33:11 +00:00
|
|
|
test_grep_proc2_SOURCES = test_grep_proc2.cc
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2013-07-28 21:33:11 +00:00
|
|
|
test_line_buffer2_SOURCES = test_line_buffer2.cc
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2014-03-16 22:07:08 +00:00
|
|
|
test_log_accel_SOURCES = test_log_accel.cc
|
|
|
|
|
2013-07-28 21:33:11 +00:00
|
|
|
test_pcrepp_SOURCES = test_pcrepp.cc
|
2010-04-26 04:12:25 +00:00
|
|
|
|
2013-06-08 17:51:54 +00:00
|
|
|
test_top_status_SOURCES = test_top_status.cc
|
2013-06-26 01:52:51 +00:00
|
|
|
|
2016-08-22 13:45:27 +00:00
|
|
|
test_abbrev_SOURCES = test_abbrev.cc
|
2014-05-05 13:44:58 +00:00
|
|
|
|
2015-09-14 15:56:42 +00:00
|
|
|
test_reltime_SOURCES = test_reltime.cc
|
|
|
|
|
2017-08-01 17:17:30 +00:00
|
|
|
test_ncurses_unicode_SOURCES = test_ncurses_unicode.cc
|
|
|
|
|
2017-04-25 12:41:14 +00:00
|
|
|
lnav_doctests_SOURCES = lnav_doctests.cc
|
|
|
|
|
2013-07-28 21:33:11 +00:00
|
|
|
drive_line_buffer_SOURCES = drive_line_buffer.cc
|
|
|
|
|
|
|
|
drive_grep_proc_SOURCES = drive_grep_proc.cc
|
2014-05-05 13:44:58 +00:00
|
|
|
|
2013-07-28 21:33:11 +00:00
|
|
|
drive_listview_SOURCES = drive_listview.cc
|
|
|
|
|
|
|
|
drive_logfile_SOURCES = drive_logfile.cc
|
2009-09-14 01:07:32 +00:00
|
|
|
|
2013-07-28 21:33:11 +00:00
|
|
|
drive_sequencer_SOURCES = drive_sequencer.cc
|
2011-06-01 14:28:46 +00:00
|
|
|
|
2015-12-19 06:39:27 +00:00
|
|
|
drive_shlexer_SOURCES = drive_shlexer.cc
|
|
|
|
|
2011-06-13 14:46:03 +00:00
|
|
|
drive_data_scanner_SOURCES = \
|
|
|
|
drive_data_scanner.cc
|
|
|
|
|
2014-03-08 13:26:49 +00:00
|
|
|
drive_mvwattrline_SOURCES = drive_mvwattrline.cc
|
|
|
|
|
2013-07-28 21:33:11 +00: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
|
2013-05-29 14:28:57 +00:00
|
|
|
|
2019-05-08 12:30:59 +00:00
|
|
|
drive_sql_SOURCES = drive_sql.cc
|
|
|
|
|
|
|
|
drive_sql_anno_SOURCES = drive_sql_anno.cc
|
2017-03-26 13:02:53 +00:00
|
|
|
|
2013-07-28 21:33:11 +00:00
|
|
|
slicer_SOURCES = slicer.cc
|
2009-09-14 01:07:32 +00:00
|
|
|
|
|
|
|
scripty_SOURCES = scripty.cc
|
|
|
|
|
2009-09-29 23:21:33 +00:00
|
|
|
dist_noinst_SCRIPTS = \
|
2013-06-08 13:10:18 +00:00
|
|
|
parser_debugger.py \
|
2015-08-20 04:02:26 +00:00
|
|
|
test_cli.sh \
|
2014-03-03 00:52:18 +00:00
|
|
|
test_cmds.sh \
|
2019-05-03 20:50:19 +00:00
|
|
|
test_config.sh \
|
2015-08-02 13:43:57 +00:00
|
|
|
test_curl.sh \
|
2011-06-18 20:42:07 +00:00
|
|
|
test_data_parser.sh \
|
2015-08-10 04:03:23 +00:00
|
|
|
test_format_installer.sh \
|
2015-07-20 13:33:52 +00:00
|
|
|
test_format_loader.sh \
|
2009-09-29 23:21:33 +00:00
|
|
|
test_grep_proc.sh \
|
2014-03-03 06:26:41 +00:00
|
|
|
test_json_format.sh \
|
2009-09-29 23:21:33 +00:00
|
|
|
test_line_buffer.sh \
|
|
|
|
test_listview.sh \
|
|
|
|
test_logfile.sh \
|
2018-05-17 14:06:50 +00:00
|
|
|
test_meta.sh \
|
2014-03-08 13:26:49 +00:00
|
|
|
test_mvwattrline.sh \
|
2016-03-07 07:58:37 +00:00
|
|
|
test_scripts.sh \
|
2014-03-07 13:20:49 +00:00
|
|
|
test_sessions.sh \
|
2015-12-19 06:39:27 +00:00
|
|
|
test_shlexer.sh \
|
2014-03-03 00:52:18 +00:00
|
|
|
test_sql.sh \
|
2013-06-06 14:01:32 +00:00
|
|
|
test_sql_coll_func.sh \
|
2014-05-05 13:44:58 +00:00
|
|
|
test_sql_json_func.sh \
|
2013-07-09 13:51:18 +00:00
|
|
|
test_sql_str_func.sh \
|
2015-10-03 21:58:01 +00:00
|
|
|
test_sql_time_func.sh \
|
2013-05-29 14:28:57 +00:00
|
|
|
test_sql_fs_func.sh \
|
2012-07-03 19:01:09 +00:00
|
|
|
test_view_colors.sh \
|
2015-04-19 07:00:43 +00:00
|
|
|
test_vt52_curses.sh \
|
|
|
|
test_pretty_print.sh
|
2009-09-29 23:21:33 +00:00
|
|
|
|
|
|
|
dist_noinst_DATA = \
|
2013-06-08 14:57:40 +00:00
|
|
|
ansi-colors.0.in \
|
2015-07-20 13:33:52 +00:00
|
|
|
bad-config/formats/invalid-regex/format.json \
|
|
|
|
bad-config/formats/invalid-sample/format.json \
|
2015-11-27 06:19:53 +00:00
|
|
|
bad-config/formats/invalid-sql/init.sql \
|
2015-08-13 05:34:41 +00:00
|
|
|
bad-config/formats/no-samples/format.json \
|
2019-05-03 21:29:27 +00:00
|
|
|
bad-config2/formats/invalid-config/config.json \
|
2019-05-04 17:35:23 +00:00
|
|
|
bad-config2/formats/invalid-config/config.malformed.json \
|
|
|
|
bad-config2/formats/invalid-config/config.truncated.json \
|
2017-04-24 13:18:04 +00:00
|
|
|
bad-config-json/formats/invalid-json/format.json \
|
2017-04-24 13:36:17 +00:00
|
|
|
bad-config-json/formats/invalid-key/format.json \
|
2011-06-18 20:42:07 +00:00
|
|
|
datafile_simple.0 \
|
|
|
|
datafile_simple.1 \
|
|
|
|
datafile_simple.2 \
|
|
|
|
datafile_simple.3 \
|
|
|
|
datafile_simple.4 \
|
|
|
|
datafile_simple.5 \
|
2013-05-24 14:55:56 +00:00
|
|
|
datafile_simple.6 \
|
|
|
|
datafile_simple.7 \
|
2014-03-09 19:55:02 +00:00
|
|
|
datafile_simple.8 \
|
|
|
|
datafile_simple.9 \
|
|
|
|
datafile_simple.10 \
|
2014-03-11 10:49:47 +00:00
|
|
|
datafile_simple.11 \
|
2014-04-01 20:07:58 +00:00
|
|
|
datafile_simple.12 \
|
|
|
|
datafile_simple.13 \
|
2016-04-29 06:34:13 +00:00
|
|
|
datafile_simple.14 \
|
|
|
|
datafile_simple.15 \
|
|
|
|
datafile_simple.16 \
|
|
|
|
datafile_simple.17 \
|
|
|
|
datafile_simple.18 \
|
|
|
|
datafile_simple.19 \
|
|
|
|
datafile_simple.20 \
|
2015-03-17 06:10:34 +00:00
|
|
|
datafile_xml.0 \
|
2017-04-15 05:49:36 +00:00
|
|
|
expected_help.txt \
|
2009-09-29 23:21:33 +00:00
|
|
|
listview_output.0 \
|
|
|
|
listview_output.1 \
|
|
|
|
listview_output.2 \
|
|
|
|
listview_output.3 \
|
|
|
|
listview_output.4 \
|
|
|
|
listview_output.5 \
|
|
|
|
listview_output.6 \
|
2016-08-23 13:34:18 +00:00
|
|
|
log.clog \
|
2009-09-29 23:21:33 +00:00
|
|
|
logfile_access_log.0 \
|
2013-06-22 14:00:59 +00:00
|
|
|
logfile_access_log.1 \
|
2015-07-11 23:32:48 +00:00
|
|
|
logfile_bad_access_log.0 \
|
|
|
|
logfile_bad_syslog.0 \
|
2017-04-23 14:11:21 +00:00
|
|
|
logfile_bro_conn.log.0 \
|
|
|
|
logfile_bro_http.log.0 \
|
2015-04-05 14:12:20 +00:00
|
|
|
logfile_blued.0 \
|
2018-10-12 14:46:18 +00:00
|
|
|
logfile_crlf.0 \
|
2018-04-02 20:25:07 +00:00
|
|
|
logfile_cxx.0 \
|
2009-09-29 23:21:33 +00:00
|
|
|
logfile_empty.0 \
|
2015-04-11 07:52:06 +00:00
|
|
|
logfile_epoch.0 \
|
2016-11-22 18:02:38 +00:00
|
|
|
logfile_epoch.1 \
|
2014-12-10 15:03:01 +00:00
|
|
|
logfile_filter.0 \
|
2014-11-04 04:41:38 +00:00
|
|
|
logfile_for_join.0 \
|
2012-07-03 19:01:09 +00:00
|
|
|
logfile_generic.0 \
|
2015-05-02 03:52:00 +00:00
|
|
|
logfile_generic.1 \
|
2015-05-17 12:15:41 +00:00
|
|
|
logfile_generic.2 \
|
2019-05-17 14:42:05 +00:00
|
|
|
logfile_generic_with_header.0 \
|
2013-05-18 00:44:55 +00:00
|
|
|
logfile_glog.0 \
|
2019-03-13 23:37:41 +00:00
|
|
|
logfile_haproxy.0 \
|
2019-09-03 14:27:24 +00:00
|
|
|
logfile_invalid_json.json
|
2018-08-21 18:21:57 +00:00
|
|
|
logfile_journald.json \
|
2014-03-03 06:26:41 +00:00
|
|
|
logfile_json.json \
|
2016-03-27 22:28:47 +00:00
|
|
|
logfile_json2.json \
|
2017-04-07 06:20:02 +00:00
|
|
|
logfile_json3.json \
|
2016-07-01 04:59:51 +00:00
|
|
|
logfile_leveltest.0 \
|
2014-03-03 00:52:18 +00:00
|
|
|
logfile_multiline.0 \
|
2015-04-26 14:12:30 +00:00
|
|
|
logfile_nested_json.json \
|
2014-11-04 04:41:38 +00:00
|
|
|
logfile_openam.0 \
|
2015-03-28 13:30:30 +00:00
|
|
|
logfile_plain.0 \
|
2015-04-08 04:37:25 +00:00
|
|
|
logfile_pretty.0 \
|
2016-05-03 13:43:00 +00:00
|
|
|
logfile_rollover.0 \
|
2017-04-24 14:29:55 +00:00
|
|
|
logfile_rollover.1 \
|
2010-02-24 04:35:52 +00:00
|
|
|
logfile_strace_log.0 \
|
2009-09-29 23:21:33 +00:00
|
|
|
logfile_syslog.0 \
|
|
|
|
logfile_syslog.1 \
|
2014-11-04 04:41:38 +00:00
|
|
|
logfile_syslog.2 \
|
2018-08-22 04:43:32 +00:00
|
|
|
logfile_syslog_fr.0 \
|
2015-07-19 09:40:02 +00:00
|
|
|
logfile_syslog_with_access_log.0 \
|
2019-05-17 14:42:05 +00:00
|
|
|
logfile_syslog_with_header.0 \
|
2015-09-14 15:56:42 +00:00
|
|
|
logfile_syslog_with_mixed_times.0 \
|
2016-04-03 03:58:20 +00:00
|
|
|
logfile_tai64n.0 \
|
2014-04-07 05:11:04 +00:00
|
|
|
logfile_tcf.0 \
|
|
|
|
logfile_tcf.1 \
|
2009-09-29 23:21:33 +00:00
|
|
|
logfile_tcsh_history.0 \
|
2015-04-05 20:19:45 +00:00
|
|
|
logfile_vami.0 \
|
2014-11-11 16:44:44 +00:00
|
|
|
logfile_vdsm.0 \
|
2009-09-29 23:21:33 +00:00
|
|
|
logfile_with_a_really_long_name_to_test_a_bug_with_long_names.0 \
|
2015-04-08 05:13:44 +00:00
|
|
|
multiline.lnav \
|
2015-12-19 14:18:47 +00:00
|
|
|
nested.lnav \
|
2014-03-08 13:26:49 +00:00
|
|
|
mvwattrline_output.0 \
|
2015-08-19 03:58:20 +00:00
|
|
|
textfile_json_indented.0 \
|
|
|
|
textfile_json_one_line.0 \
|
2015-08-27 04:28:30 +00:00
|
|
|
textfile_quoted_json.0 \
|
2015-12-19 14:18:47 +00:00
|
|
|
toplevel.lnav \
|
2018-10-17 14:03:33 +00:00
|
|
|
UTF-8-test.txt \
|
2012-07-03 19:01:09 +00:00
|
|
|
view_colors_output.0 \
|
2009-09-29 23:21:33 +00:00
|
|
|
vt52_curses_input.0 \
|
|
|
|
vt52_curses_input.1 \
|
|
|
|
vt52_curses_output.0 \
|
2013-06-03 14:45:19 +00:00
|
|
|
vt52_curses_output.1 \
|
2015-04-05 14:12:20 +00:00
|
|
|
formats/collision/format.json \
|
2016-07-01 04:59:51 +00:00
|
|
|
formats/customlevel/format.json \
|
2014-03-03 06:26:41 +00:00
|
|
|
formats/jsontest/format.json \
|
2016-08-23 13:50:01 +00:00
|
|
|
formats/jsontest/lnav-logstash.json \
|
2016-12-06 15:14:54 +00:00
|
|
|
formats/jsontest/rewrite-user.lnav \
|
2016-03-27 22:28:47 +00:00
|
|
|
formats/jsontest2/format.json \
|
2017-04-07 06:20:02 +00:00
|
|
|
formats/jsontest3/format.json \
|
2015-04-26 14:12:30 +00:00
|
|
|
formats/nestedjson/format.json \
|
2016-03-07 07:58:37 +00:00
|
|
|
formats/scripts/multiline-echo.lnav \
|
2018-10-12 14:12:35 +00:00
|
|
|
formats/scripts/redirecting.lnav \
|
|
|
|
formats/scripts/nested-redirecting.lnav \
|
2015-11-27 06:19:53 +00:00
|
|
|
formats/sqldir/init.sql \
|
2015-04-11 07:52:06 +00:00
|
|
|
formats/timestamp/format.json \
|
2013-06-03 14:45:19 +00:00
|
|
|
log-samples/sample-27353a72ba4025448f261dcfa6ea16e474187795.txt \
|
|
|
|
log-samples/sample-70c906b3c1a1cf03f15bde92ee78edfa6f9b7960.txt \
|
|
|
|
log-samples/sample-ad31f12d2adabd07e3ddda3ad5b0dbf6b49c4c99.txt
|
2009-09-29 23:21:33 +00:00
|
|
|
|
2013-06-08 17:51:54 +00:00
|
|
|
TESTS = \
|
2017-04-25 12:41:14 +00:00
|
|
|
lnav_doctests \
|
2016-08-22 13:45:27 +00:00
|
|
|
test_abbrev \
|
2013-06-08 17:51:54 +00:00
|
|
|
test_ansi_scrubber \
|
2009-09-14 01:07:32 +00:00
|
|
|
test_auto_fd \
|
|
|
|
test_auto_mem \
|
2013-06-08 17:51:54 +00:00
|
|
|
test_bookmarks \
|
2014-03-22 15:02:48 +00:00
|
|
|
test_date_time_scanner \
|
2015-08-10 04:03:23 +00:00
|
|
|
test_format_installer.sh \
|
2015-07-20 13:33:52 +00:00
|
|
|
test_format_loader.sh \
|
2015-08-20 04:02:26 +00:00
|
|
|
test_cli.sh \
|
2014-03-03 00:52:18 +00:00
|
|
|
test_cmds.sh \
|
2019-05-03 20:50:19 +00:00
|
|
|
test_config.sh \
|
2009-09-14 01:07:32 +00:00
|
|
|
test_line_buffer2 \
|
2014-03-08 05:53:24 +00:00
|
|
|
test_line_buffer.sh \
|
2014-02-21 04:00:51 +00:00
|
|
|
test_listview.sh \
|
2018-05-17 14:06:50 +00:00
|
|
|
test_meta.sh \
|
2009-09-14 01:07:32 +00:00
|
|
|
test_grep_proc.sh \
|
|
|
|
test_grep_proc2 \
|
2014-03-03 06:26:41 +00:00
|
|
|
test_json_format.sh \
|
2014-03-16 22:07:08 +00:00
|
|
|
test_log_accel \
|
2014-03-15 11:40:58 +00:00
|
|
|
test_logfile.sh \
|
2010-04-26 04:12:25 +00:00
|
|
|
test_pcrepp \
|
2015-09-14 15:56:42 +00:00
|
|
|
test_reltime \
|
2016-03-07 07:58:37 +00:00
|
|
|
test_scripts.sh \
|
2014-03-07 13:20:49 +00:00
|
|
|
test_sessions.sh \
|
2015-12-19 06:39:27 +00:00
|
|
|
test_shlexer.sh \
|
2014-03-02 16:55:00 +00:00
|
|
|
test_sql.sh \
|
2013-06-06 14:01:32 +00:00
|
|
|
test_sql_coll_func.sh \
|
2014-05-05 13:44:58 +00:00
|
|
|
test_sql_json_func.sh \
|
2013-05-29 14:28:57 +00:00
|
|
|
test_sql_fs_func.sh \
|
2013-07-06 16:16:01 +00:00
|
|
|
test_sql_str_func.sh \
|
2015-10-03 21:58:01 +00:00
|
|
|
test_sql_time_func.sh \
|
2013-06-26 01:52:51 +00:00
|
|
|
test_data_parser.sh \
|
2015-04-19 07:00:43 +00:00
|
|
|
test_pretty_print.sh
|
2010-01-02 20:28:14 +00:00
|
|
|
|
2018-08-19 06:20:12 +00:00
|
|
|
DISABLED_TESTS = \
|
2018-11-15 17:47:54 +00:00
|
|
|
test_top_status \
|
2018-11-09 17:45:19 +00:00
|
|
|
test_view_colors.sh \
|
|
|
|
test_vt52_curses.sh
|
2018-08-19 06:20:12 +00:00
|
|
|
|
2015-08-02 13:43:57 +00:00
|
|
|
if HAVE_LIBCURL
|
|
|
|
TESTS += \
|
|
|
|
test_curl.sh
|
|
|
|
endif
|
|
|
|
|
2010-01-02 20:28:14 +00:00
|
|
|
DISTCLEANFILES = \
|
|
|
|
*.dat \
|
2014-03-03 06:26:41 +00:00
|
|
|
*.err \
|
2013-06-08 13:10:18 +00:00
|
|
|
*.db \
|
|
|
|
*.dpt \
|
2013-05-31 15:01:31 +00:00
|
|
|
*.diff \
|
2010-01-02 20:28:14 +00:00
|
|
|
*.index \
|
2014-03-15 11:40:58 +00:00
|
|
|
*.tmp \
|
|
|
|
*.gz \
|
2014-11-04 04:41:38 +00:00
|
|
|
*.bz2 \
|
2018-10-12 14:23:28 +00:00
|
|
|
hw.txt \
|
|
|
|
hw2.txt \
|
2019-07-25 14:31:46 +00:00
|
|
|
reload_test.0 \
|
2014-11-04 04:41:38 +00:00
|
|
|
truncfile.0 \
|
2014-11-07 04:41:25 +00:00
|
|
|
logfile_append.0 \
|
2015-12-23 06:44:42 +00:00
|
|
|
logfile_changed.0 \
|
2017-04-24 14:29:55 +00:00
|
|
|
logfile_rollover.1.live \
|
2015-04-04 22:12:26 +00:00
|
|
|
test.log \
|
2015-11-15 14:25:08 +00:00
|
|
|
logfile_stdin.log \
|
|
|
|
logfile_syslog.0 \
|
2018-08-22 04:43:32 +00:00
|
|
|
logfile_syslog_fr.0 \
|
2018-08-22 12:33:20 +00:00
|
|
|
logfile_syslog_with_mixed_times.0 \
|
2015-11-15 14:25:08 +00:00
|
|
|
unreadable.log \
|
2016-03-07 07:58:37 +00:00
|
|
|
empty \
|
|
|
|
scripts-empty
|
2014-03-07 14:29:20 +00:00
|
|
|
|
|
|
|
distclean-local:
|
2015-03-25 09:13:18 +00:00
|
|
|
$(RM_V)rm -rf sessions
|
2018-05-17 14:37:58 +00:00
|
|
|
$(RM_V)rm -rf meta-sessions
|
2019-08-11 04:59:43 +00:00
|
|
|
$(RM_V)rm -rf test-config
|
2015-03-25 09:13:18 +00:00
|
|
|
$(RM_V)rm -rf .lnav
|
2015-08-10 04:03:23 +00:00
|
|
|
$(RM_V)rm -rf ../installer-test-home
|