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 5ac77d2 commit a3c63efCopy full SHA for a3c63ef
conformance_tests/tools/metrics/src/test_metric.cpp
@@ -1847,6 +1847,14 @@ void run_ip_sampling_with_validation(
1847
LOG_WARNING << "elapsed time for workload completion is too short";
1848
}
1849
1850
+ const char *sleep_in_buffer_overflow_test_environment_variable =
1851
+ std::getenv("LZT_METRICS_BUFFER_OVERFLOW_SLEEP_MS");
1852
+
1853
+ if (sleep_in_buffer_overflow_test_environment_variable != nullptr) {
1854
+ uint32_t value = atoi(sleep_in_buffer_overflow_test_environment_variable);
1855
+ std::this_thread::sleep_for(std::chrono::milliseconds(value));
1856
+ }
1857
1858
size_t rawDataSize = 0;
1859
std::vector<uint8_t> rawData;
1860
rawDataSize = lzt::metric_streamer_read_data_size(metricStreamerHandle,
0 commit comments