1
1
mirror of https://github.com/tstack/lnav.git synced 2024-09-11 13:05:51 +03:00
lnav/test/Makefile.am

366 lines
8.3 KiB
Makefile
Raw Normal View History

2009-09-14 05:07:32 +04:00
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 " $@;
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 \
$(READLINE_CFLAGS) \
2009-10-07 01:14:49 +04:00
$(SQLITE3_CFLAGS)
2009-09-14 05:07:32 +04:00
# AM_CFLAGS = -fprofile-arcs -ftest-coverage
# AM_CXXFLAGS = -fprofile-arcs -ftest-coverage
check_PROGRAMS = \
2011-06-13 18:46:03 +04:00
drive_data_scanner \
2009-09-14 05:07:32 +04:00
drive_line_buffer \
drive_grep_proc \
2014-05-05 17:44:58 +04:00
drive_json_op \
drive_json_ptr_walk \
2009-09-14 05:07:32 +04:00
drive_listview \
drive_logfile \
drive_mvwattrline \
2011-06-01 18:28:46 +04:00
drive_sequencer \
drive_shlexer \
drive_sql \
drive_view_colors \
2009-09-14 05:07:32 +04:00
drive_vt52_curses \
drive_readline_curses \
slicer \
scripty \
test_ansi_scrubber \
2009-09-14 05:07:32 +04:00
test_auto_fd \
test_auto_mem \
test_bookmarks \
test_chunky_index \
2014-04-20 21:40:28 +04:00
test_concise \
test_date_time_scanner \
2009-09-14 05:07:32 +04:00
test_grep_proc2 \
test_hist_source \
2014-05-05 17:44:58 +04:00
test_json_ptr \
2009-09-14 05:07:32 +04:00
test_line_buffer2 \
test_log_accel \
2010-04-26 08:12:25 +04:00
test_pcrepp \
2015-09-14 18:56:42 +03:00
test_reltime \
test_top_status \
test_yajlpp
2009-09-14 05:07:32 +04:00
AM_LDFLAGS = \
2013-08-28 18:28:31 +04:00
$(STATIC_LDFLAGS) \
2013-08-29 08:22:04 +04:00
$(SQLITE3_LDFLAGS) \
$(READLINE_LDFLAGS) \
2013-08-29 08:22:04 +04:00
-pthread
2009-09-14 05:07:32 +04:00
LDADD = -lz
test_ansi_scrubber_SOURCES = test_ansi_scrubber.cc
test_ansi_scrubber_LDADD = ../src/libdiag.a $(CURSES_LIB)
2009-09-14 05:07:32 +04:00
test_auto_fd_SOURCES = test_auto_fd.cc
test_auto_fd_LDADD = ../src/libdiag.a
2009-09-14 05:07:32 +04:00
test_auto_mem_SOURCES = test_auto_mem.cc
2013-07-29 01:33:11 +04:00
test_bookmarks_SOURCES = test_bookmarks.cc
test_bookmarks_LDADD = ../src/libdiag.a
2009-09-14 05:07:32 +04:00
test_chunky_index_SOURCES = test_chunky_index.cc
test_chunky_index_LDADD = ../src/libdiag.a
test_date_time_scanner_SOURCES = test_date_time_scanner.cc
2014-04-06 09:56:02 +04:00
test_date_time_scanner_LDADD = ../src/libdiag.a $(SQLITE3_LIBS)
2013-07-29 01:33:11 +04:00
test_grep_proc2_SOURCES = test_grep_proc2.cc
test_grep_proc2_LDADD = ../src/libdiag.a $(PCRE_LIBS) -lz
2009-09-14 05:07:32 +04:00
2013-07-29 01:33:11 +04:00
test_hist_source_SOURCES = test_hist_source.cc
test_hist_source_LDADD = ../src/libdiag.a $(CURSES_LIB) -lz
2013-07-29 01:33:11 +04:00
test_line_buffer2_SOURCES = test_line_buffer2.cc
test_line_buffer2_LDADD = ../src/libdiag.a
2009-09-14 05:07:32 +04:00
test_log_accel_SOURCES = test_log_accel.cc
test_log_accel_LDADD = ../src/libdiag.a
2013-07-29 01:33:11 +04:00
test_pcrepp_SOURCES = test_pcrepp.cc
2013-08-28 18:28:31 +04:00
test_pcrepp_LDADD = ../src/libdiag.a $(PCRE_LIBS) -lz
2010-04-26 08:12:25 +04:00
test_top_status_SOURCES = test_top_status.cc
test_top_status_LDADD = \
../src/libdiag.a \
../src/default-config-json.o \
$(CURSES_LIB) \
$(PCRE_LIBS) \
$(SQLITE3_LIBS) \
$(LIBCURL) \
-lz
2009-09-14 05:07:32 +04:00
test_yajlpp_SOURCES = test_yajlpp.cc
test_yajlpp_LDADD = ../src/libdiag.a
2014-04-20 21:40:28 +04:00
test_concise_SOURCES = test_concise.cc
test_concise_LDADD = ../src/libdiag.a
2014-05-05 17:44:58 +04:00
test_json_ptr_SOURCES = test_json_ptr.cc
test_json_ptr_LDADD = ../src/libdiag.a
2015-09-14 18:56:42 +03:00
test_reltime_SOURCES = test_reltime.cc
test_reltime_LDADD = ../src/libdiag.a
2013-07-29 01:33:11 +04:00
drive_line_buffer_SOURCES = drive_line_buffer.cc
drive_line_buffer_LDADD = ../src/libdiag.a $(CURSES_LIB) -lz
drive_grep_proc_SOURCES = drive_grep_proc.cc
drive_grep_proc_LDADD = ../src/libdiag.a $(PCRE_LIBS) -lz
2014-05-05 17:44:58 +04:00
drive_json_op_SOURCES = drive_json_op.cc
drive_json_op_LDADD = ../src/libdiag.a $(PCRE_LIBS) -lz
drive_json_ptr_walk_SOURCES = drive_json_ptr_walk.cc
drive_json_ptr_walk_LDADD = ../src/libdiag.a $(PCRE_LIBS) -lz
2013-07-29 01:33:11 +04:00
drive_listview_SOURCES = drive_listview.cc
drive_listview_LDADD = ../src/libdiag.a $(CURSES_LIB) -lz
drive_logfile_SOURCES = drive_logfile.cc
drive_logfile_LDADD = \
../src/libdiag.a \
../src/default-log-formats-json.o \
../src/default-config-json.o \
../src/dump-pid-sh.o \
2015-12-29 07:30:04 +03:00
../src/partition-by-boot.o \
$(CURSES_LIB) \
$(SQLITE3_LIBS) \
$(PCRE_LIBS) \
-lpcrecpp
2009-09-14 05:07:32 +04:00
2013-07-29 01:33:11 +04:00
drive_sequencer_SOURCES = drive_sequencer.cc
drive_sequencer_LDADD = ../src/libdiag.a $(CURSES_LIB) $(SQLITE3_LIBS)
2011-06-01 18:28:46 +04:00
drive_shlexer_SOURCES = drive_shlexer.cc
drive_shlexer_LDADD = ../src/libdiag.a
2011-06-13 18:46:03 +04:00
drive_data_scanner_SOURCES = \
drive_data_scanner.cc
2013-06-29 22:00:34 +04:00
drive_data_scanner_LDADD = \
../src/libdiag.a \
../src/default-log-formats-json.o \
../src/default-config-json.o \
../src/dump-pid-sh.o \
2015-12-29 07:30:04 +03:00
../src/partition-by-boot.o \
$(PCRE_LIBS) \
$(SQLITE3_LIBS) \
-lpcrecpp \
2013-06-29 22:00:34 +04:00
$(CURSES_LIB)
2011-06-13 18:46:03 +04:00
drive_mvwattrline_SOURCES = drive_mvwattrline.cc
drive_mvwattrline_LDADD = ../src/libdiag.a $(CURSES_LIB)
2013-07-29 01:33:11 +04:00
drive_view_colors_SOURCES = drive_view_colors.cc
drive_view_colors_LDADD = ../src/libdiag.a $(CURSES_LIB)
drive_vt52_curses_SOURCES = drive_vt52_curses.cc
drive_vt52_curses_LDADD = ../src/libdiag.a $(CURSES_LIB)
drive_readline_curses_SOURCES = drive_readline_curses.cc
2013-08-29 08:22:04 +04:00
drive_readline_curses_LDADD = ../src/libdiag.a $(READLINE_LIBS) $(CURSES_LIB)
2009-09-14 05:07:32 +04:00
drive_sql_SOURCES = \
drive_sql.cc
2013-06-22 18:55:49 +04:00
drive_sql_LDADD = \
../src/libdiag.a \
$(SQLITE3_LIBS) \
$(PCRE_LIBS) \
$(CURSES_LIB) \
$(READLINE_LIBS) \
$(LIBCURL) \
-lpcrecpp
2013-07-29 01:33:11 +04:00
slicer_SOURCES = slicer.cc
slicer_LDADD = ../src/libdiag.a
2009-09-14 05:07:32 +04:00
scripty_SOURCES = scripty.cc
2014-03-06 19:21:08 +04:00
scripty_LDADD = ../src/libdiag.a
2009-09-14 05:07:32 +04:00
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_curl.sh \
test_data_parser.sh \
test_format_installer.sh \
test_format_loader.sh \
2009-09-30 03:21:33 +04:00
test_grep_proc.sh \
test_json_format.sh \
2014-11-04 07:41:38 +03:00
test_json_op.sh \
test_json_ptr_walk.sh \
2009-09-30 03:21:33 +04:00
test_line_buffer.sh \
test_listview.sh \
test_logfile.sh \
test_mvwattrline.sh \
test_sessions.sh \
test_shlexer.sh \
test_sql.sh \
test_sql_coll_func.sh \
2014-05-05 17:44:58 +04:00
test_sql_json_func.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_fs_func.sh \
test_view_colors.sh \
test_vt52_curses.sh \
test_pretty_print.sh
2009-09-30 03:21:33 +04:00
dist_noinst_DATA = \
2013-06-08 18:57:40 +04:00
ansi-colors.0.in \
bad-config/formats/invalid-regex/format.json \
bad-config/formats/invalid-sample/format.json \
2015-11-27 09:19:53 +03:00
bad-config/formats/invalid-sql/init.sql \
bad-config/formats/no-samples/format.json \
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_xml.0 \
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 \
logfile_access_log.0 \
logfile_access_log.1 \
logfile_bad_access_log.0 \
logfile_bad_syslog.0 \
logfile_blued.0 \
2009-09-30 03:21:33 +04:00
logfile_empty.0 \
logfile_epoch.0 \
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_glog.0 \
logfile_json.json \
logfile_multiline.0 \
logfile_nested_json.json \
2014-11-04 07:41:38 +03:00
logfile_openam.0 \
logfile_plain.0 \
logfile_pretty.0 \
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 \
logfile_syslog_with_access_log.0 \
2015-09-14 18:56:42 +03:00
logfile_syslog_with_mixed_times.0 \
logfile_tcf.0 \
logfile_tcf.1 \
2009-09-30 03:21:33 +04:00
logfile_tcsh_history.0 \
logfile_vami.0 \
2014-11-11 19:44:44 +03:00
logfile_vdsm.0 \
2009-09-30 03:21:33 +04:00
logfile_with_a_really_long_name_to_test_a_bug_with_long_names.0 \
multiline.lnav \
2015-12-19 17:18:47 +03:00
nested.lnav \
mvwattrline_output.0 \
textfile_json_indented.0 \
textfile_json_one_line.0 \
textfile_quoted_json.0 \
2015-12-19 17:18:47 +03:00
toplevel.lnav \
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 \
formats/collision/format.json \
formats/jsontest/format.json \
formats/nestedjson/format.json \
2015-11-27 09:19:53 +03:00
formats/sqldir/init.sql \
formats/timestamp/format.json \
2013-06-03 18:45:19 +04:00
log-samples/sample-27353a72ba4025448f261dcfa6ea16e474187795.txt \
log-samples/sample-70c906b3c1a1cf03f15bde92ee78edfa6f9b7960.txt \
log-samples/sample-ad31f12d2adabd07e3ddda3ad5b0dbf6b49c4c99.txt
2009-09-30 03:21:33 +04:00
TESTS = \
test_ansi_scrubber \
2009-09-14 05:07:32 +04:00
test_auto_fd \
test_auto_mem \
test_bookmarks \
test_chunky_index \
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 \
2014-04-20 21:40:28 +04:00
test_concise \
2009-09-14 05:07:32 +04:00
test_line_buffer2 \
test_line_buffer.sh \
test_listview.sh \
test_mvwattrline.sh \
2009-09-14 05:07:32 +04:00
test_grep_proc.sh \
test_grep_proc2 \
test_hist_source \
test_json_format.sh \
2014-05-05 17:44:58 +04:00
test_json_op.sh \
test_json_ptr_walk.sh \
test_log_accel \
test_logfile.sh \
2010-04-26 08:12:25 +04:00
test_pcrepp \
2015-09-14 18:56:42 +03:00
test_reltime \
test_sessions.sh \
test_shlexer.sh \
test_sql.sh \
test_sql_coll_func.sh \
2014-05-05 17:44:58 +04:00
test_sql_json_func.sh \
test_sql_fs_func.sh \
test_sql_str_func.sh \
2015-10-04 00:58:01 +03:00
test_sql_time_func.sh \
test_view_colors.sh \
2009-09-14 05:07:32 +04:00
test_vt52_curses.sh \
test_top_status \
test_data_parser.sh \
test_yajlpp \
test_pretty_print.sh
2010-01-02 23:28:14 +03:00
if HAVE_LIBCURL
TESTS += \
test_curl.sh
endif
2010-01-02 23:28:14 +03:00
DISTCLEANFILES = \
*.dat \
*.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 \
truncfile.0 \
2014-11-07 07:41:25 +03:00
logfile_append.0 \
logfile_changed.0 \
2015-04-05 01:12:26 +03:00
test.log \
2015-11-15 17:25:08 +03:00
logfile_stdin.log \
logfile_syslog.0 \
unreadable.log \
empty
distclean-local:
$(RM_V)rm -rf sessions
$(RM_V)rm -rf .lnav
$(RM_V)rm -rf ../installer-test-home