Blame SOURCES/1003-vendor-skip-goldenfiles-tests.patch

625261
skip goldenfiles tests
625261
625261
The golden files include memory dumps from a x86_64 machine.
625261
Integers are stored as little endian on x86, but as big endian on s390x,
625261
therefore loading this memory dump fails on s390x.
625261
625261
diff --git a/vendor/github.com/grafana/grafana-plugin-sdk-go/experimental/golden_response_checker.go b/vendor/github.com/grafana/grafana-plugin-sdk-go/experimental/golden_response_checker.go
625261
index 320f40f3bd..20f5fa4f46 100644
625261
--- a/vendor/github.com/grafana/grafana-plugin-sdk-go/experimental/golden_response_checker.go
625261
+++ b/vendor/github.com/grafana/grafana-plugin-sdk-go/experimental/golden_response_checker.go
625261
@@ -203,6 +203,7 @@ func CheckGoldenJSONFrame(t *testing.T, dir string, name string, f *data.Frame,
625261
 // CheckGoldenJSONResponse will verify that the stored JSON file matches the given backend.DataResponse.
625261
 func CheckGoldenJSONResponse(t *testing.T, dir string, name string, dr *backend.DataResponse, updateFile bool) {
625261
 	t.Helper()
625261
+	t.Skip("skipping test: x86_64 memory dump is not compatible with other architectures")
625261
 	fpath := path.Join(dir, name+".jsonc")
625261
 
625261
 	expected, err := readGoldenJSONFile(fpath)