1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
#find -name '*.py'|awk '{ print "\ttests/light/functional_tests/"substr($0,3); }'|sort
EXTRA_DIST += \
tests/light/functional_tests/config_change/test_backtick_substitution.py \
tests/light/functional_tests/config_change/test_manipulating_config_between_reload.py \
tests/light/functional_tests/conftest.py \
tests/light/functional_tests/destination_drivers/example_destination/test_example_destination.py \
tests/light/functional_tests/destination_drivers/network_destination/test_network_destination_transport.py \
tests/light/functional_tests/destination_drivers/snmp_destination/general/test_snmp_destination_acceptance.py \
tests/light/functional_tests/destination_drivers/snmp_destination/general/test_snmp_destination_missing_snmp_obj.py \
tests/light/functional_tests/destination_drivers/snmp_destination/general/test_snmp_destination_missing_trap_obj.py \
tests/light/functional_tests/destination_drivers/snmp_destination/general/test_snmp_destination_reload_statistics.py \
tests/light/functional_tests/destination_drivers/snmp_destination/general/test_snmp_destination_wrong_version.py \
tests/light/functional_tests/destination_drivers/snmp_destination/v2c/test_snmp_destination_v2c_cisco_ios_traps.py \
tests/light/functional_tests/destination_drivers/snmp_destination/v2c/test_snmp_destination_v2c_custom_community.py \
tests/light/functional_tests/destination_drivers/snmp_destination/v2c/test_snmp_destination_v2c_using_macro_snmp_obj.py \
tests/light/functional_tests/destination_drivers/unix_dgram_destination/test_unix_dgram_destination.py \
tests/light/functional_tests/destination_drivers/unix_stream_destination/test_unix_stream_destination.py \
tests/light/functional_tests/filters/rate-limit/test_rate_limit_filter_acceptance.py \
tests/light/functional_tests/filters/test_filter_reference.py \
tests/light/functional_tests/filters/test_multiple_filters.py \
tests/light/functional_tests/logpath/__init__.py \
tests/light/functional_tests/logpath/test_conditionals.py \
tests/light/functional_tests/logpath/test_flags_catch_all.py \
tests/light/functional_tests/logpath/test_flags_fallback.py \
tests/light/functional_tests/logpath/test_flags_final.py \
tests/light/functional_tests/logpath/test_midpoint_destinations.py \
tests/light/functional_tests/logpath/test_multiple_embedded_logpaths.py \
tests/light/functional_tests/logpath/test_multiple_flags.py \
tests/light/functional_tests/logpath/test_named_logpaths.py \
tests/light/functional_tests/logpath/test_named_logpaths_with_catchall_flag.py \
tests/light/functional_tests/logpath/test_named_logpaths_with_fallback_flag.py \
tests/light/functional_tests/logpath/test_named_logpaths_with_final_flag.py \
tests/light/functional_tests/parsers/app-parser/test_topic_syslog.py \
tests/light/functional_tests/parsers/app-parser/test_topic_syslog_raw.py \
tests/light/functional_tests/parsers/checkpoint/test_checkpoint.py \
tests/light/functional_tests/parsers/cisco-parser/test_cisco_parser.py \
tests/light/functional_tests/parsers/csv-parser/test_csv_parser.py \
tests/light/functional_tests/parsers/db_parser/test_db_parser.py \
tests/light/functional_tests/parsers/mariadb-parser/test_mariadb_audit_parser.py \
tests/light/functional_tests/parsers/postgresql-csvlog-parser/test_postgresql_csvlog_parser.py \
tests/light/functional_tests/parsers/panos/test_panos_parser.py \
tests/light/functional_tests/parsers/regexp-parser/test_regexp_parser.py \
tests/light/functional_tests/parsers/sdata-parser/test_sdata_parser.py \
tests/light/functional_tests/rewrites/cc-mask/test_cc_mask_and_cc_hash.py \
tests/light/functional_tests/rewrites/set-pri/test_set_pri.py \
tests/light/functional_tests/rewrites/set-tag/test_set_tag.py \
tests/light/functional_tests/source_drivers/file_source/test_acceptance.py \
tests/light/functional_tests/source_drivers/file_source/test_follow_freq_value.py \
tests/light/functional_tests/source_drivers/file_source/test_no_header_flag.py \
tests/light/functional_tests/source_drivers/generator_source/test_generator_source.py \
tests/light/functional_tests/source_drivers/internal_source/test_internal_acceptance.py \
tests/light/functional_tests/source_drivers/network_source/proxyprotocol/test_pp_acceptance.py \
tests/light/functional_tests/source_drivers/network_source/proxyprotocol/test_pp_reload.py \
tests/light/functional_tests/source_drivers/network_source/proxyprotocol/test_pp_tls_passthrough.py \
tests/light/functional_tests/source_drivers/network_source/proxyprotocol/test_pp_tls.py \
tests/light/functional_tests/source_drivers/network_source/proxyprotocol/test_pp_tls_with_passphrase.py \
tests/light/functional_tests/source_drivers/network_source/proxyprotocol/test_pp_with_multiple_clients.py \
tests/light/functional_tests/source_drivers/network_source/proxyprotocol/test_pp_with_simple_tcp_connection.py \
tests/light/functional_tests/source_drivers/network_source/proxyprotocol/test_pp_with_syslog_proto.py \
tests/light/functional_tests/source_drivers/network_source/test_syslog_parser_timestamp_spinning.py \
tests/light/functional_tests/source_drivers/network_source/text_with_nuls/test_nul_acceptance.py \
tests/light/functional_tests/source_options/test_use_syslogng_pid.py \
tests/light/functional_tests/template_functions/graphite-output/test_graphite_output.py \
tests/light/functional_tests/template_functions/slog/test_secure_logging.py \
tests/light/functional_tests/value-pairs/test_value_pairs.py \
tests/light/functional_tests/tools/loggen/test_loggen_with_reconnect.py
|