Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 319254f0 authored by gama's avatar gama
Browse files

[TEST] Fix case for Linux

parent 5b06ac5b
No related branches found
No related tags found
No related merge requests found
Pipeline #65384 passed
......@@ -246,7 +246,7 @@ TEST_CASE("BasicSTLContainers")
const auto& count =
heaptracker::ThreadMemoryStats::GetCountFromDetailedStats(scope.GetUpToNow());
// Depending on STL implementations
CHECK(count.total_ > 5);
CHECK(count.total_ >= 5);
CHECK(count.total_ < 10);
const auto& size = heaptracker::ThreadMemoryStats::GetSizeFromDetailedStats(scope.GetUpToNow());
CHECK(size.current_ == GetNextPowerOfTwo(sizeof(int) * test.size()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment