1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Skip buggy TestSparseHistogram test on ppc64el
Author: Daniel Swarbrick <dswarbrick@debian.org>
Bug: https://github.com/prometheus/client_golang/issues/1165
Last-Update: 2022-11-09
--- a/prometheus/histogram_test.go
+++ b/prometheus/histogram_test.go
@@ -472,6 +472,10 @@ func TestHistogramExemplar(t *testing.T)
}
func TestSparseHistogram(t *testing.T) {
+ if runtime.GOARCH == "ppc64le" {
+ t.Skip("Skipping buggy test on ppc64el")
+ }
+
scenarios := []struct {
name string
observations []float64 // With simulated interval of 1m.
|