GCC Code Coverage Report


Directory: ./
File: tasks/ermakov_a_ring/common/include/common.hpp
Date: 2026-01-27 01:59:34
Exec Total Coverage
Lines: 1 1 100.0%
Functions: 0 0 -%
Branches: 2 4 50.0%

Line Branch Exec Source
1 #pragma once
2
3 #include <vector>
4
5 #include "task/include/task.hpp"
6
7 namespace ermakov_a_ring {
8
9
2/4
✓ Branch 1 taken 1586 times.
✗ Branch 2 not taken.
✓ Branch 6 taken 6682 times.
✗ Branch 7 not taken.
11700 struct RingTaskData {
10 int source = 0;
11 int dest = 0;
12 std::vector<int> data;
13 };
14
15 using InType = RingTaskData;
16 using OutType = std::vector<int>;
17 using TestType = int;
18 using BaseTask = ppc::task::Task<InType, OutType>;
19
20 } // namespace ermakov_a_ring
21