[dawn] Disable end2end timeout test for intel

Bug: 421869294
Change-Id: I08641b9191083bb23efb7ea189b9c95f6ccbf1fe
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/244914
Reviewed-by: dan sinclair <dsinclair@chromium.org>
Commit-Queue: Peter McNeeley <petermcneeley@google.com>
diff --git a/src/dawn/tests/end2end/RuntimeTimeoutCompute.cpp b/src/dawn/tests/end2end/RuntimeTimeoutCompute.cpp
index 0b327c6..b8fdf73 100644
--- a/src/dawn/tests/end2end/RuntimeTimeoutCompute.cpp
+++ b/src/dawn/tests/end2end/RuntimeTimeoutCompute.cpp
@@ -73,7 +73,7 @@
     DAWN_SKIP_TEST_IF_BASE(IsCPU() || IsWARP(), "timeout",
                            "skipping because software rendering is slow");
     // Test disable due to CI failures. See crbug.com/421869294
-    DAWN_SKIP_TEST_IF_BASE(IsMetal() && IsIntelGen9(), "timeout", "device found to be slow on CI");
+    DAWN_SKIP_TEST_IF_BASE(IsIntel(), "timeout", "device found to be slow on CI");
 
     std::string kShaderCode = R"(
 @group(0)@binding(0) var < storage,read_write > A: array < i32 >;