GCC Code Coverage Report


Directory: ./
File: src/array.cpp
Date: 2022-06-30 06:29:57
Exec Total Coverage
Lines: 6 6 100.0%
Branches: 5 10 50.0%

Line Branch Exec Source
1 #include "shared_memory/array.hpp"
2
3 namespace shared_memory
4 {
5 22 void clear_array(std::string segment_id)
6 {
7 22 boost::interprocess::shared_memory_object::remove(segment_id.c_str());
8
1/2
✓ Branch 2 taken 22 times.
✗ Branch 3 not taken.
22 boost::interprocess::named_mutex::remove(
9
2/4
✓ Branch 2 taken 22 times.
✗ Branch 3 not taken.
✓ Branch 5 taken 22 times.
✗ Branch 6 not taken.
44 (segment_id + std::string("_mutex")).c_str());
10 22 }
11
12
2/4
✓ Branch 1 taken 54 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 54 times.
✗ Branch 4 not taken.
162 } // namespace shared_memory
13