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 0eaa794 commit 05b26caCopy full SHA for 05b26ca
sdk/test/trace/sampler_benchmark.cc
@@ -42,6 +42,11 @@ void BM_AlwaysOnSamplerConstruction(benchmark::State &state)
42
}
43
BENCHMARK(BM_AlwaysOnSamplerConstruction);
44
45
+/*
46
+ Fails to build with GCC.
47
+ See upstream bug: https://github.com/google/benchmark/issues/1675
48
+*/
49
+#if 0
50
void BM_ParentBasedSamplerConstruction(benchmark::State &state)
51
{
52
while (state.KeepRunning())
@@ -59,6 +64,7 @@ void BM_TraceIdRatioBasedSamplerConstruction(benchmark::State &state)
59
64
60
65
61
66
BENCHMARK(BM_TraceIdRatioBasedSamplerConstruction);
67
+#endif
62
68
63
69
// Sampler Helper Function
70
void BenchmarkShouldSampler(Sampler &sampler, benchmark::State &state)
0 commit comments