wip: checking if valgrind fails
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
light7734 2025-07-17 11:33:18 +03:30
parent 3e79504fac
commit 8ca1ed2bd6
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

View file

@ -28,6 +28,9 @@ lt::test::Suite raii = [] {
Timer {};
}
};
int *leak = new int(42); // Allocated memory, never freed
std::cout << "Hello, Valgrind!" << *leak << std::endl;
};
lt::test::Suite reset_and_elapsed_time = [] {