Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ cmake_policy(VERSION 3.12)

# Define project
project(Monitoring
VERSION 3.19.15
VERSION 3.19.16
DESCRIPTION "O2 Monitoring library"
LANGUAGES CXX
)
Expand Down
8 changes: 7 additions & 1 deletion test/testProcessMonitor.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ void disableRedirect()
}



/*
Temporarily disabling test on metrics output
because the list of metric that shall be returned in the different scenarios is unknown (depends on system and options).
Current test implementation relies on hardcoded duplicated list, which gets wrong when the library is updated with more metrics.
*/
/*
BOOST_AUTO_TEST_CASE(monitorProcessDefaultCount)
{
{
Expand Down Expand Up @@ -104,6 +109,7 @@ BOOST_AUTO_TEST_CASE(monitorProcessAll)
// On linux 14 and macOS 6
BOOST_CHECK(countMetrics == 11 || countMetrics == 6);
}
*/

BOOST_AUTO_TEST_CASE(monitorProcessMetricName)
{
Expand Down