Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add used data #54

Merged
merged 16 commits into from
Oct 12, 2024
Next Next commit
Add used data
  • Loading branch information
magnmaeh committed Oct 12, 2024
commit 3ace2c1ed32ac8262225faa39dbca340d807c002
2 changes: 2 additions & 0 deletions test/unit/delayed_conn_test.c
Original file line number Diff line number Diff line change
@@ -140,6 +140,8 @@ void Main_ctor(struct Main *self, Environment *env) {
}

void test_simple() {
static uint8_t lots_of_data[100] = { 0 };
printf("lots of data ptr: %p", lots_of_data);
struct Main main;
Environment env;
Environment_ctor(&env, (Reactor *)&main);
Loading