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

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