We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2f740d commit d6a7aedCopy full SHA for d6a7aed
CHANGELOG.md
@@ -15,6 +15,9 @@ Increment the:
15
16
## [Unreleased]
17
18
+* [TEST] Test examples in CI with CMake Part 1
19
+ [#3449](https://github.com/open-telemetry/opentelemetry-cpp/pull/3449)
20
+
21
## [1.21 2025-05-28]
22
23
* [BUILD] Remove WITH_ABSEIL
examples/metrics_simple/CMakeLists.txt
@@ -20,4 +20,7 @@ endif()
if(BUILD_TESTING)
add_test(NAME examples.metrics_simple
COMMAND "$<TARGET_FILE:metrics_ostream_example>")
+ # Disable the metrics_simple example test due to sporadic segfaults on Windows
24
+ # See https://github.com/open-telemetry/opentelemetry-cpp/issues/3458
25
+ set_tests_properties(examples.metrics_simple PROPERTIES DISABLED TRUE)
26
endif()
0 commit comments