Skip to content

Commit 9db590e

Browse files
committed
Revert "test_flow.rb: Skip flow tests on clang-17"
This reverts commit 9266536.
1 parent 9266536 commit 9db590e

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

bootstraptest/test_flow.rb

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -557,12 +557,9 @@ def each(&block)
557557
end
558558
e = Bug6460.new
559559
}]].each do |bug, src|
560-
# TODO: Remove this clang 17 CI workaround once #17953's regression is fixed.
561-
unless ENV["GITHUB_ACTIONS"] == "true" && ENV["INPUT_WITH_GCC"] == "clang-17"
562-
assert_equal "foo", src + %q{e.detect {true}}, bug
563-
assert_equal "true", src + %q{e.any? {true}}, bug
564-
assert_equal "false", src + %q{e.all? {false}}, bug
565-
end
560+
assert_equal "foo", src + %q{e.detect {true}}, bug
561+
assert_equal "true", src + %q{e.any? {true}}, bug
562+
assert_equal "false", src + %q{e.all? {false}}, bug
566563
assert_equal "true", src + %q{e.include?(:foo)}, bug
567564
end
568565

0 commit comments

Comments
 (0)