From b49b28d6823438a9b16520e4c5b062423e1ec20b Mon Sep 17 00:00:00 2001 From: Kenta Kubo <601636+kkebo@users.noreply.github.com> Date: Tue, 11 Jun 2024 07:01:45 +0900 Subject: [PATCH 1/2] build: bump swift-testing to 0.10.0 https://github.com/apple/swift-testing/releases/tag/0.10.0 --- Package.resolved | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Package.resolved b/Package.resolved index fb0e48e..1c50730 100644 --- a/Package.resolved +++ b/Package.resolved @@ -24,8 +24,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/apple/swift-testing", "state" : { - "revision" : "c392dadce39a5055579432bba432486a003d75c6", - "version" : "0.9.0" + "revision" : "69d59cfc76e5daf498ca61f5af409f594768eef9", + "version" : "0.10.0" } } ], From dbed16fb1b56125dde15ce4c9d31afe2d5001a4b Mon Sep 17 00:00:00 2001 From: Kenta Kubo <601636+kkebo@users.noreply.github.com> Date: Tue, 11 Jun 2024 20:03:10 +0900 Subject: [PATCH 2/2] ci: failing CI This is an experiment. DO NOT MERGE! --- Tests/TokenizerTests/HTML5LibTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/TokenizerTests/HTML5LibTests.swift b/Tests/TokenizerTests/HTML5LibTests.swift index c66bac8..aeba8e5 100644 --- a/Tests/TokenizerTests/HTML5LibTests.swift +++ b/Tests/TokenizerTests/HTML5LibTests.swift @@ -36,7 +36,7 @@ private let testCases = try! [ @Test("html5lib-tests", arguments: testCases) func html5libTests(_ testCase: TestCase) { - var tokenizer = Tokenizer(sink: TestSink(), emitsAllErrors: true) + var tokenizer = Tokenizer(sink: TestSink(), emitsAllErrors: false) tokenizer.state = testCase.initialState var input = BufferQueue(ArraySlice(testCase.input.unicodeScalars)) tokenizer.tokenize(&input)