Skip to content

Commit ce1e3f3

Browse files
authored
[Parse incomplete chunks 1/9] Raise kFileSizeLimit for dbg builds in 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>
1 parent 0e6ef3e commit ce1e3f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stirling/e2e_tests/stirling_wrapper_size_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace stirling {
3030
#ifdef __OPTIMIZE__
3131
constexpr uint64_t kFileSizeLimitMB = 118;
3232
#else
33-
constexpr uint64_t kFileSizeLimitMB = 300;
33+
constexpr uint64_t kFileSizeLimitMB = 305;
3434
#endif
3535

3636
TEST(StirlingWrapperSizeTest, ExecutableSizeLimit) {

0 commit comments

Comments
 (0)