aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json1
-rw-r--r--infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All.json1
-rw-r--r--infra/bots/recipes/test.py1
-rw-r--r--tests/SkRasterPipelineTest.cpp4
4 files changed, 2 insertions, 5 deletions
diff --git a/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json b/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json
index 4409d99e6c..d4a6c3a108 100644
--- a/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json
+++ b/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json
@@ -496,7 +496,6 @@
"GrShape",
"--match",
"~readpixels",
- "~SkRasterPipeline_tail",
"~GM_animated-image-blurs",
"~verylarge",
"~ImageFilterBlurLargeImage",
diff --git a/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All.json b/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All.json
index a6c20bca81..9ef15249d6 100644
--- a/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All.json
+++ b/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All.json
@@ -599,7 +599,6 @@
"~imageblur2",
"~animated-image-blurs",
"~readpixels",
- "~SkRasterPipeline_tail",
"~GM_animated-image-blurs",
"~verylarge",
"~ImageFilterBlurLargeImage",
diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py
index a6ab7472c1..07e28034a1 100644
--- a/infra/bots/recipes/test.py
+++ b/infra/bots/recipes/test.py
@@ -528,7 +528,6 @@ def dm_flags(api, bot):
match.append('~animated-image-blurs')
# skia:7497
match.append('~readpixels') # dies with "Caught signal 7 [Bus error]"
- match.append('~SkRasterPipeline_tail')
# Blacklisted to avoid OOM (we see DM just end with "broken pipe")
match.append('~GM_animated-image-blurs')
match.append('~verylarge')
diff --git a/tests/SkRasterPipelineTest.cpp b/tests/SkRasterPipelineTest.cpp
index 1923f1cb64..ac0278386a 100644
--- a/tests/SkRasterPipelineTest.cpp
+++ b/tests/SkRasterPipelineTest.cpp
@@ -137,13 +137,13 @@ DEF_TEST(SkRasterPipeline_tail, r) {
}
{
- uint16_t data[][4] = {
+ alignas(8) uint16_t data[][4] = {
{h(00), h(01), h(02), h(03)},
{h(10), h(11), h(12), h(13)},
{h(20), h(21), h(22), h(23)},
{h(30), h(31), h(32), h(33)},
};
- uint16_t buffer[4][4];
+ alignas(8) uint16_t buffer[4][4];
SkJumper_MemoryCtx src = { &data[0][0], 0 },
dst = { &buffer[0][0], 0 };