Skip to content

Commit

Permalink
[Parse incomplete chunks 1/9] Raise kFileSizeLimit for dbg builds in …
Browse files Browse the repository at this point in the history
…stirling wrapper size test (#1786)

Summary: Raises the stirling size limit for `dbg` builds by 5 MiB (to
305 MiB) to accommodate upcoming changes and additions related to
tracking gaps from bpf and lazily parsing incomplete chunks in the data
stream buffer.

Type of change: /kind cleanup

Test Plan: Existing targets

Signed-off-by: Benjamin Kilimnik <bkilimnik@pixielabs.ai>
  • Loading branch information
benkilimnik committed Dec 7, 2023
1 parent 0e6ef3e commit ce1e3f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stirling/e2e_tests/stirling_wrapper_size_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace stirling {
#ifdef __OPTIMIZE__
constexpr uint64_t kFileSizeLimitMB = 118;
#else
constexpr uint64_t kFileSizeLimitMB = 300;
constexpr uint64_t kFileSizeLimitMB = 305;
#endif

TEST(StirlingWrapperSizeTest, ExecutableSizeLimit) {
Expand Down

0 comments on commit ce1e3f3

Please sign in to comment.