From 2388e0bde356c499ce8cd5467bcaf8dfaf171eb0 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Tue, 7 Oct 2025 23:07:08 +0100 Subject: [PATCH 1/2] Add `REQUIRES: executable_test` to `for-expr.swift` The lack of this condition made some jobs fail, e.g. https://ci.swift.org/job/oss-swift_tools-RA_stdlib-DA_test-device-non_executable/9749 rdar://162140584 --- test/stmt/for-expr.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/test/stmt/for-expr.swift b/test/stmt/for-expr.swift index b87b46e809b19..dd9b9ea515fae 100644 --- a/test/stmt/for-expr.swift +++ b/test/stmt/for-expr.swift @@ -1,6 +1,7 @@ // RUN: %target-run-simple-swift(-enable-experimental-feature ForExpressions) | %FileCheck %s // REQUIRES: swift_feature_ForExpressions +// REQUIRES: executable_test func f() -> String { for (i, x) in "hello".enumerated() { From e72342c09a05276f766348fdfcabc97d2f263b57 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Wed, 8 Oct 2025 09:01:59 +0100 Subject: [PATCH 2/2] Update for-expr.swift