Skip to content

Commit

Permalink
update instance_too_large test
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-emrich committed Feb 16, 2024
1 parent 2ee0834 commit 1dcf9ca
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/all/pooling_allocator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -661,12 +661,12 @@ configured maximum of 16 bytes; breakdown of allocation requirement:
"
} else {
"\
instance allocation for this module requires 320 bytes which exceeds the \
instance allocation for this module requires 272 bytes which exceeds the \
configured maximum of 16 bytes; breakdown of allocation requirement:
* 50.00% - 160 bytes - instance state management
* 10.00% - 32 bytes - typed continuations payloads object
* 10.00% - 32 bytes - typed continuations main stack limits
* 58.82% - 160 bytes - instance state management
* 8.82% - 24 bytes - typed continuations payloads object
* 5.88% - 16 bytes - jit store state
"
};
match Module::new(&engine, "(module)") {
Expand All @@ -690,11 +690,11 @@ configured maximum of 16 bytes; breakdown of allocation requirement:
"
} else {
"\
instance allocation for this module requires 1920 bytes which exceeds the \
instance allocation for this module requires 1872 bytes which exceeds the \
configured maximum of 16 bytes; breakdown of allocation requirement:
* 8.33% - 160 bytes - instance state management
* 83.33% - 1600 bytes - defined globals
* 8.55% - 160 bytes - instance state management
* 85.47% - 1600 bytes - defined globals
"
};
match Module::new(&engine, &lots_of_globals) {
Expand Down

0 comments on commit 1dcf9ca

Please sign in to comment.