94.64% (53/56) Uncovered changed code (with context): ================================================================================ src/Common/ProgressIndication.cpp ================================================================================ --- uncovered block 192-192 --- 190 | profiling_msg_builder << ", " << formatReadableSizeWithDecimalSuffix(memory_usage) << " RAM"; 191 | if (max_host_usage < memory_usage) >> 192 | profiling_msg_builder << ", " << formatReadableSizeWithDecimalSuffix(max_host_usage) << " max/host"; 193 | if (temp_data_on_disk_usage > 0) 194 | profiling_msg_builder << ", " << formatReadableSizeWithDecimalSuffix(temp_data_on_disk_usage) << " disk"; --- uncovered block 194-194 --- 192 | profiling_msg_builder << ", " << formatReadableSizeWithDecimalSuffix(max_host_usage) << " max/host"; 193 | if (temp_data_on_disk_usage > 0) >> 194 | profiling_msg_builder << ", " << formatReadableSizeWithDecimalSuffix(temp_data_on_disk_usage) << " disk"; 195 | if (max_host_temp_data_on_disk_usage < temp_data_on_disk_usage) 196 | profiling_msg_builder << ", " << formatReadableSizeWithDecimalSuffix(max_host_temp_data_on_disk_usage) << " max/host"; --- uncovered block 196-196 --- 194 | profiling_msg_builder << ", " << formatReadableSizeWithDecimalSuffix(temp_data_on_disk_usage) << " disk"; 195 | if (max_host_temp_data_on_disk_usage < temp_data_on_disk_usage) >> 196 | profiling_msg_builder << ", " << formatReadableSizeWithDecimalSuffix(max_host_temp_data_on_disk_usage) << " max/host"; 197 | 198 | profiling_msg_builder << ")"; === Lost Baseline Coverage: 3 lines === ================================================================================ src/Client/ClientBase.cpp ================================================================================ --- lost coverage block 2267-2269 --- 2265 | break; 2266 | >> 2267 | case Protocol::Server::TimezoneUpdate: >> 2268 | onTimezoneUpdate(packet.server_timezone); >> 2269 | break; 2270 | 2271 | default: WARNING: Failed to get start time for [Print Uncovered Code] - start time and duration won't be set --- Coverage counts --- Lines : baseline 768,261/912,766 -> current 768,739/912,801 (delta +478 / +35) Functions : baseline 884,225/967,426 -> current 884,221/967,434 (delta -4 / +8) Branches : baseline 250,602/327,384 -> current 250,891/327,398 (delta +289 / +14)