Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/doxygen/mainpage.dox
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
*
* # Use case examples of schema rules and parsing results:
*
* - @ref test_buffer_parser_no_capture "Basic log parser"
* - @ref test_buffer_parser_no_capture "Basic log buffer parser"
* - @ref test_reader_parser_no_capture "Basic log file parser"
* - @ref test_buffer_parser_capture "Captures"
* - @ref test_buffer_parser_default_schema "Default CLP schema"
* - @ref test_buffer_parser_delimited_variables "Backtracking on delimited variables"
Expand All @@ -19,6 +20,7 @@
* - @ref unit_tests_prefix_tree "Prefix tree"
* - @ref unit_tests_query "Query"
* - @ref unit_tests_query_interpretation "Query Interpretation"
* - @ref unit_tests_reader_parser_wrap_around "Reader Parser"
* - @ref unit_tests_regex_ast "Regex AST"
* - @ref unit_tests_register_handler "Register handler"
* - @ref unit_tests_schema "Schema"
Expand Down
1 change: 1 addition & 0 deletions src/log_surgeon/Constants.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ constexpr char cTokenHex[] = "hex";
constexpr char cTokenFirstTimestamp[] = "firstTimestamp";
constexpr char cTokenNewlineTimestamp[] = "newLineTimestamp";
constexpr char cTokenNewline[] = "newLine";
// Buffer size cannot be odd, so always use a multiple of 2
constexpr uint32_t cStaticByteBuffSize = 48'000;

namespace utf8 {
Expand Down
1 change: 1 addition & 0 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ target_sources(
test-prefix-tree.cpp
test-query.cpp
test-query-interpretation.cpp
test-reader-parser.cpp
test-regex-ast.cpp
test-register-handler.cpp
test-schema.cpp
Expand Down
Loading
Loading