Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
da-liii committed Oct 23, 2023
1 parent 90ade28 commit c18a38a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Kernel/Containers/list_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ TEST_CASE ("long list under stack size") {
cout << "Initial mem used: " << initial_mem_used << LF;
list<string> long_l;
// increase the size to 5000, there will be a stackoverflow on Windows
for (int i=0; i<4000; i++) {
for (int i= 0; i < 4000; i++) {
long_l= list<string> ("88888888", long_l);
}
int final_mem_used= mem_used ();
Expand Down

0 comments on commit c18a38a

Please sign in to comment.