Blame SOURCES/004-skip-x86-goldenfiles-tests.patch

5bde66
diff --git a/packages/grafana-data/src/dataframe/ArrowDataFrame.test.ts b/packages/grafana-data/src/dataframe/ArrowDataFrame.test.ts
5bde66
index 96efaccfce..bcdd98144f 100644
5bde66
--- a/packages/grafana-data/src/dataframe/ArrowDataFrame.test.ts
5bde66
+++ b/packages/grafana-data/src/dataframe/ArrowDataFrame.test.ts
5bde66
@@ -52,7 +52,7 @@ describe('Read/Write arrow Table to DataFrame', () => {
5bde66
     expect(after).toEqual(before);
5bde66
   });
5bde66
 
5bde66
-  test('should read all types', () => {
5bde66
+  test.skip('should read all types', () => {
5bde66
     const fullpath = path.resolve(__dirname, './__snapshots__/all_types.golden.arrow');
5bde66
     const arrow = fs.readFileSync(fullpath);
5bde66
     const table = Table.from([arrow]);
5bde66
diff --git a/packages/grafana-runtime/src/utils/queryResponse.test.ts b/packages/grafana-runtime/src/utils/queryResponse.test.ts
5bde66
index 0adb915d2c..8985d7beab 100644
5bde66
--- a/packages/grafana-runtime/src/utils/queryResponse.test.ts
5bde66
+++ b/packages/grafana-runtime/src/utils/queryResponse.test.ts
5bde66
@@ -47,7 +47,7 @@ const emptyResults = {
5bde66
 /* eslint-enable */
5bde66
 
5bde66
 describe('Query Response parser', () => {
5bde66
-  test('should parse output with dataframe', () => {
5bde66
+  test.skip('should parse output with dataframe', () => {
5bde66
     const res = toDataQueryResponse(resp);
5bde66
     const frames = res.data;
5bde66
     expect(frames).toHaveLength(2);
5bde66
@@ -131,7 +131,7 @@ describe('Query Response parser', () => {
5bde66
     `);
5bde66
   });
5bde66
 
5bde66
-  test('should parse output with dataframe in order of queries', () => {
5bde66
+  test.skip('should parse output with dataframe in order of queries', () => {
5bde66
     const queries: DataQuery[] = [{ refId: 'B' }, { refId: 'A' }];
5bde66
     const res = toDataQueryResponse(resp, queries);
5bde66
     const frames = res.data;
5bde66
@@ -250,7 +250,7 @@ describe('Query Response parser', () => {
5bde66
     expect(ids).toEqual(['A', 'B', 'X']);
5bde66
   });
5bde66
 
5bde66
-  test('resultWithError', () => {
5bde66
+  test.skip('resultWithError', () => {
5bde66
     // Generated from:
5bde66
     // qdr.Responses[q.GetRefID()] = backend.DataResponse{
5bde66
     //   Error: fmt.Errorf("an Error: %w", fmt.Errorf("another error")),
5bde66
diff --git a/pkg/tsdb/influxdb/flux/executor_test.go b/pkg/tsdb/influxdb/flux/executor_test.go
5bde66
index 7cfc8bd20a..add6b5f3b8 100644
5bde66
--- a/pkg/tsdb/influxdb/flux/executor_test.go
5bde66
+++ b/pkg/tsdb/influxdb/flux/executor_test.go
5bde66
@@ -68,6 +68,7 @@ func executeMockedQuery(t *testing.T, name string, query queryModel) *backend.Da
5bde66
 }
5bde66
 
5bde66
 func verifyGoldenResponse(t *testing.T, name string) *backend.DataResponse {
5bde66
+	t.Skip("x86 memory dump is not compatible with other architectures")
5bde66
 	dr := executeMockedQuery(t, name, queryModel{MaxDataPoints: 100})
5bde66
 
5bde66
 	err := experimental.CheckGoldenDataResponse(filepath.Join("testdata", fmt.Sprintf("%s.golden.txt", name)),
5bde66
diff --git a/public/app/plugins/datasource/cloudwatch/specs/datasource.test.ts b/public/app/plugins/datasource/cloudwatch/specs/datasource.test.ts
5bde66
index afc8ba357b..587092a58d 100644
5bde66
--- a/public/app/plugins/datasource/cloudwatch/specs/datasource.test.ts
5bde66
+++ b/public/app/plugins/datasource/cloudwatch/specs/datasource.test.ts
5bde66
@@ -78,7 +78,7 @@ describe('CloudWatchDatasource', () => {
5bde66
   });
5bde66
 
5bde66
   describe('When getting log groups', () => {
5bde66
-    it('should return log groups as an array of strings', async () => {
5bde66
+    it.skip('should return log groups as an array of strings', async () => {
5bde66
       const response = {
5bde66
         results: {
5bde66
           A: {