Suppress more failure on GPU FYI Linux AMD Release (R7 240)

Tests are run in this order: 1, 2, 3

After suppressing test 2, test 3 started failing on the builder, this
seems to point out that test 1 is leaving the driver in a bad state.

We add suppressions both 1 and 3 just to be safe.

TBR=senorblanco@chromium.org
BUG=chromium:915430

Change-Id: Ie601b03f9e5038c623d8b7e009d2a9fb8086d181
Reviewed-on: https://dawn-review.googlesource.com/c/3420
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Reviewed-by: Stephen White <senorblanco@chromium.org>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Corentin Wallez 2018-12-19 13:36:53 +00:00 committed by Commit Bot service account
parent 5e811aeee5
commit 2745f37875
1 changed files with 6 additions and 0 deletions

View File

@ -225,6 +225,9 @@ TEST_P(InputStateTest, Basic) {
// Test a stride of 0 works // Test a stride of 0 works
TEST_P(InputStateTest, ZeroStride) { TEST_P(InputStateTest, ZeroStride) {
// This test was failing only on AMD but the OpenGL backend doesn't gather PCI info yet.
DAWN_SKIP_TEST_IF(IsLinux() && IsOpenGL());
dawn::InputState inputState = MakeInputState({ dawn::InputState inputState = MakeInputState({
{0, 0, InputStepMode::Vertex} {0, 0, InputStepMode::Vertex}
}, { }, {
@ -301,6 +304,9 @@ TEST_P(InputStateTest, AttributeExpanding) {
// Test a stride larger than the attributes // Test a stride larger than the attributes
TEST_P(InputStateTest, StrideLargerThanAttributes) { TEST_P(InputStateTest, StrideLargerThanAttributes) {
// This test was failing only on AMD but the OpenGL backend doesn't gather PCI info yet.
DAWN_SKIP_TEST_IF(IsLinux() && IsOpenGL());
dawn::InputState inputState = MakeInputState({ dawn::InputState inputState = MakeInputState({
{0, 8 * sizeof(float), InputStepMode::Vertex} {0, 8 * sizeof(float), InputStepMode::Vertex}
}, { }, {