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

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