diff --git a/CHANGELOG.md b/CHANGELOG.md index 395c857..9c5be2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Version 2.1.0 - 2026-06-24 +### CHANGES: +- Detect flaky/mixed tests (failed on a first attempt but passed on retry) from the per-repetition results in the xcresult bundle, including repeated test cases, per-device runs, and parameterized test arguments. +- In `txt`, `cli`, `html`, and `md` output, flaky tests are shown with a distinct flaky icon (🟠 in markdown, ⚠︎ otherwise) instead of the failure icon. +- In `junit` output, a flaky test still counts as a failure but gains a `flaky="true"` attribute and a `[FLAKY]` prefix on each failure message. + ## Version 2.0.0 - 2026-03-14 ### CHANGES: - Fix issue #65: 'Session-level issues' / 'Issues recorded without an associated test or suite' are now listed in test results diff --git a/CommandlineTool/main.swift b/CommandlineTool/main.swift index 1b5ee32..f1bc20b 100644 --- a/CommandlineTool/main.swift +++ b/CommandlineTool/main.swift @@ -9,7 +9,7 @@ import ArgumentParser import Foundation import XcresultparserLib -private let marketingVersion = "2.0.1" +private let marketingVersion = "2.1.0" struct xcresultparser: ParsableCommand { static let configuration = CommandConfiguration( diff --git a/Package.swift b/Package.swift index 4bc7685..cb08bf8 100644 --- a/Package.swift +++ b/Package.swift @@ -58,7 +58,8 @@ let package = Package( .copy("TestAssets/sonarTestExecutionWithProjectRootRelative.xml"), .copy("TestAssets/parametrized.xcresult"), .copy("TestAssets/session_level_failure.xcresult"), - .copy("TestAssets/junit_session_level_failure.xml") + .copy("TestAssets/junit_session_level_failure.xml"), + .copy("TestAssets/Test-FlakyFixture.xcresult") ] ) ] diff --git a/README.md b/README.md index d0b23a0..1a0d34a 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,12 @@ All JSON parsing is done with native `Codable` models in this project. - For `txt`, `cli`, `html`, and `md`, expected failures are represented as a distinct test state. - For `junit` and sonar test execution `xml`, expected failures are emitted as regular passing test cases for schema compatibility. +## Flaky Test Detection +A test that failed on a first attempt but passed on retry (a "flaky"/"mixed" result) is detected from the per-repetition results in the xcresult bundle. This works for repeated test cases, per-device runs, and parameterized test arguments. +- For `txt`, `cli`, `html`, and `md`, a flaky test is shown with a distinct flaky icon (🟠 in markdown, ⚠︎ otherwise) instead of the failure icon. +- For `junit`, the test still counts as a failure: the `` keeps its `` children but gains a `flaky="true"` attribute and a `[FLAKY]` prefix on each failure message. +- Flaky tests still count as failures for roll-up, counts, and `--failed-tests-only`; they are only labeled differently in the rendered output. +
More on converting code coverage data diff --git a/Sources/xcresultparser/DataProviders/JunitXML/JunitXMLDataProviding.swift b/Sources/xcresultparser/DataProviders/JunitXML/JunitXMLDataProviding.swift index 6117432..4e9c732 100644 --- a/Sources/xcresultparser/DataProviders/JunitXML/JunitXMLDataProviding.swift +++ b/Sources/xcresultparser/DataProviders/JunitXML/JunitXMLDataProviding.swift @@ -48,6 +48,10 @@ struct JunitTest { let duration: Double? let isFailed: Bool let isSkipped: Bool + /// `true` when the test failed on a first attempt but passed on retry. + /// The overall result (failed or, if the retry recovered, passed) is kept; + /// the test is only additionally labeled as flaky. + var isFlaky: Bool = false } struct JunitFailureSummary { diff --git a/Sources/xcresultparser/DataProviders/JunitXML/XCResultToolJunitXMLDataProvider.swift b/Sources/xcresultparser/DataProviders/JunitXML/XCResultToolJunitXMLDataProvider.swift index 1a83a3c..9f935b7 100644 --- a/Sources/xcresultparser/DataProviders/JunitXML/XCResultToolJunitXMLDataProvider.swift +++ b/Sources/xcresultparser/DataProviders/JunitXML/XCResultToolJunitXMLDataProvider.swift @@ -138,7 +138,8 @@ struct XCResultToolJunitXMLDataProvider: JunitXMLDataProviding { name: mappedArgumentTest.name, duration: mappedArgumentTest.duration, isFailed: mappedArgumentTest.result == .failed, - isSkipped: mappedArgumentTest.result == .skipped + isSkipped: mappedArgumentTest.result == .skipped, + isFlaky: mappedArgumentTest.isFlaky ) } ) @@ -173,7 +174,8 @@ struct XCResultToolJunitXMLDataProvider: JunitXMLDataProviding { name: node.name, duration: node.durationInSeconds, isFailed: result == .failed, - isSkipped: result == .skipped + isSkipped: result == .skipped, + isFlaky: node.isFlaky ) } diff --git a/Sources/xcresultparser/JunitXML.swift b/Sources/xcresultparser/JunitXML.swift index 0c40a87..73cfd35 100644 --- a/Sources/xcresultparser/JunitXML.swift +++ b/Sources/xcresultparser/JunitXML.swift @@ -297,9 +297,30 @@ public struct JunitXML: XmlSerializable { } else if test.isSkipped { testcase.addChild(skippedWithoutSummary) } + if test.isFlaky { + markTestcaseAsFlaky(testcase) + } return testcase } + // Labels a `` as flaky (failed on first attempt, passed on retry) + // without changing its pass/fail semantics: it gains a `flaky="true"` marker. + // + // - When the overall result is failed, the `` keeps its `` + // children so it still counts as a failure, and each failure message gains + // a `[FLAKY]` prefix. + // - When the overall result is passed (the retry recovered and Xcode + // aggregated it as a pass), it has no `` children, so only the + // `flaky="true"` marker distinguishes it from a clean pass. + private func markTestcaseAsFlaky(_ testcase: XMLElement) { + testcase.addAttribute(name: "flaky", stringValue: "true") + for case let failure as XMLElement in testcase.children ?? [] where failure.name == "failure" { + let labeled = "[FLAKY] " + (failure.attribute(forName: "message")?.stringValue ?? "passed on retry") + failure.removeAttribute(forName: "message") + failure.addAttribute(name: "message", stringValue: labeled) + } + } + private var failureWithoutSummary: XMLElement { return XMLElement(name: "failure") } diff --git a/Sources/xcresultparser/Models/XCResultToolModels/XCTestNode+Extensions.swift b/Sources/xcresultparser/Models/XCResultToolModels/XCTestNode+Extensions.swift index d982d02..40e4dbe 100644 --- a/Sources/xcresultparser/Models/XCResultToolModels/XCTestNode+Extensions.swift +++ b/Sources/xcresultparser/Models/XCResultToolModels/XCTestNode+Extensions.swift @@ -11,6 +11,7 @@ extension XCTestNode { let name: String let duration: TimeInterval? let result: XCTestResult + let isFlaky: Bool } func mapArgumentTest(argument: XCTestNode, testClassName: String?) -> MappedArgumentTest { @@ -23,9 +24,31 @@ extension XCTestNode { identifier: baseIdentifier.formatWithParameter(argument.name), name: name.formatWithParameter(argument.name), duration: argument.durationInSeconds ?? durationInSeconds, - result: argument.result ?? result ?? .unknown + result: argument.result ?? result ?? .unknown, + isFlaky: argument.isFlaky ) } + + /// The results of all `Repetition` nodes nested below this node. + /// + /// Descends through intermediate nodes (e.g. `Test Case Run` for per-device + /// runs) so that repetitions are found regardless of how deeply Xcode nests + /// them under a test case or an argument. + var repetitionResults: [XCTestResult] { + (children ?? []).flatMap { child -> [XCTestResult] in + child.nodeType == .repetition + ? [child.result ?? .unknown] + : child.repetitionResults + } + } + + /// `true` when the test was retried and recovered: at least one repetition + /// passed while at least one other repetition failed. Such a test is + /// "flaky"/"mixed" rather than a clean pass or a clean failure. + var isFlaky: Bool { + let results = repetitionResults + return results.contains(.passed) && results.contains(.failed) + } } extension [XCTestNode] { diff --git a/Sources/xcresultparser/OutputFormatting/Formatters/Markdown/MDResultFormatter.swift b/Sources/xcresultparser/OutputFormatting/Formatters/Markdown/MDResultFormatter.swift index 62d6881..d79a59c 100644 --- a/Sources/xcresultparser/OutputFormatting/Formatters/Markdown/MDResultFormatter.swift +++ b/Sources/xcresultparser/OutputFormatting/Formatters/Markdown/MDResultFormatter.swift @@ -19,6 +19,9 @@ public struct MDResultFormatter: XCResultFormatting { public var testExpectedFailureIcon: String { return forGithub ? "🟡 " : "🟡  " } + public var testFlakyIcon: String { + return forGithub ? "🟠 " : "🟠  " + } private let forGithub: Bool diff --git a/Sources/xcresultparser/OutputFormatting/Formatters/XCResultFormatting.swift b/Sources/xcresultparser/OutputFormatting/Formatters/XCResultFormatting.swift index a9f2321..4577321 100644 --- a/Sources/xcresultparser/OutputFormatting/Formatters/XCResultFormatting.swift +++ b/Sources/xcresultparser/OutputFormatting/Formatters/XCResultFormatting.swift @@ -28,6 +28,7 @@ public protocol XCResultFormatting { var testPassIcon: String { get } var testSkipIcon: String { get } var testExpectedFailureIcon: String { get } + var testFlakyIcon: String { get } func codeCoverageTargetSummary(_ item: String) -> String func codeCoverageFileSummary(_ item: String) -> String @@ -50,4 +51,8 @@ public extension XCResultFormatting { var testExpectedFailureIcon: String { return "!" } + + var testFlakyIcon: String { + return "⚠︎" + } } diff --git a/Sources/xcresultparser/XCResultFormatter.swift b/Sources/xcresultparser/XCResultFormatter.swift index ae8f6cc..80e83c9 100644 --- a/Sources/xcresultparser/XCResultFormatter.swift +++ b/Sources/xcresultparser/XCResultFormatter.swift @@ -30,7 +30,7 @@ public struct XCResultFormatter { let subtestGroups: [FormattedTestGroup] var hasFailedTests: Bool { - if subtests.contains(where: \.isFailed) { + if subtests.contains(where: \.countsAsFailure) { return true } if subtestGroups.contains(where: \.hasFailedTests) { @@ -49,6 +49,7 @@ public struct XCResultFormatter { case failed case skipped case expectedFailure + case flaky } private struct FormattedTest { @@ -61,6 +62,17 @@ public struct XCResultFormatter { status == .failed } + var isFlaky: Bool { + status == .flaky + } + + // A flaky test recovered on retry but is still treated as a failure for + // roll-up, counting and `--failed-tests-only` purposes - it is only + // labeled differently in the rendered output. + var countsAsFailure: Bool { + status == .failed || status == .flaky + } + var isSkipped: Bool { status == .skipped } @@ -401,7 +413,7 @@ public struct XCResultFormatter { lines.append(outputFormatter.accordionOpenTag) } for thisTest in group.subtests { - if !failedTestsOnly || thisTest.isFailed { + if !failedTestsOnly || thisTest.countsAsFailure { lines.append( actionTestFileStatusString( for: thisTest, @@ -456,6 +468,10 @@ public struct XCResultFormatter { return outputFormatter.testSkipIcon } + if testData.isFlaky { + return outputFormatter.testFlakyIcon + } + return outputFormatter.testFailIcon } @@ -616,7 +632,7 @@ public struct XCResultFormatter { identifier: mappedArgumentTest.identifier, name: mappedArgumentTest.name, duration: mappedArgumentTest.duration, - status: testStatus(for: mappedArgumentTest.result) + status: mappedArgumentTest.isFlaky ? .flaky : testStatus(for: mappedArgumentTest.result) ) } ) @@ -646,7 +662,7 @@ public struct XCResultFormatter { identifier: identifier, name: node.name, duration: node.durationInSeconds, - status: testStatus(for: result) + status: node.isFlaky ? .flaky : testStatus(for: result) ) } diff --git a/Tests/XcresultparserTests/FlakyJunitXMLTests.swift b/Tests/XcresultparserTests/FlakyJunitXMLTests.swift new file mode 100644 index 0000000..7481bb3 --- /dev/null +++ b/Tests/XcresultparserTests/FlakyJunitXMLTests.swift @@ -0,0 +1,222 @@ +import Foundation +@testable import XcresultparserLib +import Testing + +// End-to-end coverage for "flaky"/"mixed" tests (failed on a first attempt, +// passed on retry). These drive the real `XCResultToolClient` with a stubbed +// shell so that `xcresulttool ... tests` returns canned JSON containing mixed +// `Repetition` results, then assert that the flaky marker propagates all the +// way through the provider mapping and into the rendered JUnit XML. +@MainActor +struct FlakyJunitXMLTests { + private let flakySummaryJSON = """ + { + "title": "Test - Demo", + "environmentDescription": "Demo", + "topInsights": [], + "result": "Failed", + "totalTestCount": 1, + "passedTests": 0, + "failedTests": 1, + "skippedTests": 0, + "expectedFailures": 0, + "statistics": [], + "devicesAndConfigurations": [], + "testFailures": [ + { + "failureText": "failed - randomly failed", + "targetName": "DemoTests", + "testIdentifier": 1, + "testIdentifierString": "DemoTests/test_random()", + "testIdentifierURL": "test://com.apple.xcode/Demo/DemoTests/test_random", + "testName": "test_random()" + } + ], + "startTime": 100.0, + "finishTime": 120.0 + } + """ + + // A test case that failed on the first repetition and passed on the second. + private let flakyTestsJSON = """ + { + "testPlanConfigurations": [ + { + "configurationId": "1", + "configurationName": "Default" + } + ], + "devices": [], + "testNodes": [ + { + "name": "Test Plan", + "nodeType": "Test Plan", + "children": [ + { + "name": "Default", + "nodeType": "Test Plan Configuration", + "children": [ + { + "name": "DemoTests.xctest", + "nodeType": "Unit test bundle", + "children": [ + { + "name": "DemoTests", + "nodeType": "Test Suite", + "children": [ + { + "name": "test_random()", + "nodeType": "Test Case", + "result": "Failed", + "durationInSeconds": 2.0, + "children": [ + { + "name": "Repetition 1", + "nodeType": "Repetition", + "result": "Failed", + "children": [ + { + "name": "DemoTests.swift:42: failed - randomly failed", + "nodeType": "Failure Message" + } + ] + }, + { + "name": "Repetition 2", + "nodeType": "Repetition", + "result": "Passed" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + """ + + private func makeProvider() throws -> XCResultToolJunitXMLDataProvider { + let shell = LookupShell( + responses: [ + "xcresulttool get test-results summary --path /tmp/test.xcresult": .success(Data(flakySummaryJSON.utf8)), + "xcresulttool get test-results tests --path /tmp/test.xcresult": .success(Data(flakyTestsJSON.utf8)) + ] + ) + let client = XCResultToolClient(shell: shell) + return try XCResultToolJunitXMLDataProvider( + url: URL(fileURLWithPath: "/tmp/test.xcresult"), + client: client + ) + } + + @Test + func providerMarksMixedRepetitionTestAsFlaky() throws { + let provider = try makeProvider() + + let action = try #require(provider.testActions.first) + let plan = try #require(action.testPlanRunSummaries.first) + let rootGroup = try #require(plan.testableSummaries.first?.tests.first) + let suite = try #require(rootGroup.subtestGroups.first) + let test = try #require(suite.subtests.first) + + #expect(test.name == "test_random()") + #expect(test.isFailed == true) + #expect(test.isFlaky == true) + } + + @Test + func junitXMLLabelsFlakyTestcase() throws { + let provider = try makeProvider() + let xml = JunitXML(dataProvider: provider).xmlString + + // The failing testcase keeps its failure but gains a flaky marker and a + // `[FLAKY]` prefix on the failure message. + #expect(xml.contains("flaky=\"true\"")) + #expect(xml.contains("[FLAKY]")) + } + + // End-to-end against a real bundle generated by FlakyTests/FlakyFixtureGen + // (see FlakyTests/README.md). It was recorded with `-retry-tests-on-failure`, + // so `testFlaky()` has a failed "First Run" repetition and a passed "Retry 1" + // repetition. This drives the real `xcresulttool` rather than stubbed JSON. + // + // NOTE on issue #67: the reporter's Xcode kept the recovered test surfaced as + // a *failure* (cascading up case/suite/bundle/plan) even though the exit code + // was 0. The Xcode used to record this fixture instead aggregates the + // recovered retry as a clean **pass** at every level (summary result Passed, + // 0 failures, Test Case Passed) while still preserving the failed first + // repetition underneath. Either way the test is detected as flaky and, in the + // passed case, gains a `flaky="true"` marker so it can be distinguished from a + // test that never failed. (The `[FLAKY]` failure-message labeling only applies + // when the overall result is failed; that is covered by the stubbed + // `junitXMLLabelsFlakyTestcase` test above.) + @Test + func realFlakyBundleIsDetectedAsFlaky() throws { + let xcresultFile = try #require( + Bundle.module.url(forResource: "Test-FlakyFixture", withExtension: "xcresult") + ) + let provider = try XCResultToolJunitXMLDataProvider(url: xcresultFile) + + let leaves = provider.testActions + .flatMap { $0.testPlanRunSummaries } + .flatMap { $0.testableSummaries } + .flatMap { $0.tests } + .flatMap { allTests(in: $0) } + + let flaky = try #require(leaves.first { $0.name?.contains("testFlaky") == true }) + #expect(flaky.isFlaky == true) + #expect(flaky.isFailed == false) // recovered on retry -> overall passed + + let stable = try #require(leaves.first { $0.name?.contains("testStablePass") == true }) + #expect(stable.isFlaky == false) + } + + // The recovered-on-retry test is overall passed yet must still be marked + // `flaky="true"` in the rendered JUnit XML so it is distinguishable from a + // clean pass. It must NOT carry a `` (it passed) nor the `[FLAKY]` + // message prefix (which only labels actual failures). + @Test + func passedFlakyTestGetsFlakyMarkerWithoutFailure() throws { + let xcresultFile = try #require( + Bundle.module.url(forResource: "Test-FlakyFixture", withExtension: "xcresult") + ) + let provider = try XCResultToolJunitXMLDataProvider(url: xcresultFile) + let xml = JunitXML(dataProvider: provider).xmlString + + #expect(xml.contains("flaky=\"true\"")) + #expect(!xml.contains("[FLAKY]")) + #expect(!xml.contains(" [JunitTest] { + group.subtests + group.subtestGroups.flatMap { allTests(in: $0) } + } +} + +private final class LookupShell: Commandline { + let responses: [String: Result] + + init(responses: [String: Result]) { + self.responses = responses + } + + func execute(program: String, with arguments: [String], at executionPath: URL?) throws -> Data { + #expect(program == "/usr/bin/xcrun") + let key = arguments.joined(separator: " ") + guard let response = responses[key] else { + throw NSError(domain: "missing_response", code: 1) + } + switch response { + case .success(let data): + return data + case .failure(let error): + throw error + } + } +} diff --git a/Tests/XcresultparserTests/FlakyTestDetectionTests.swift b/Tests/XcresultparserTests/FlakyTestDetectionTests.swift new file mode 100644 index 0000000..ab6c6d0 --- /dev/null +++ b/Tests/XcresultparserTests/FlakyTestDetectionTests.swift @@ -0,0 +1,161 @@ +import Foundation +@testable import XcresultparserLib +import Testing + +// Tests for detecting "flaky"/"mixed" tests: a test that failed on a first +// attempt but passed on retry. The per-repetition results live in the +// xcresult test tree as `Repetition` children of a `Test Case` (or, for +// parameterized tests, of an `Arguments` node), and may be nested below a +// `Test Case Run` for per-device runs. +struct FlakyTestDetectionTests { + private func node(from json: String) throws -> XCTestNode { + try JSONDecoder().decode(XCTestNode.self, from: Data(json.utf8)) + } + + @Test + func mixedRepetitionsAreFlaky() throws { + let testCase = try node(from: """ + { + "name": "test_random()", + "nodeType": "Test Case", + "result": "Failed", + "children": [ + { "name": "Repetition 1", "nodeType": "Repetition", "result": "Failed" }, + { "name": "Repetition 2", "nodeType": "Repetition", "result": "Passed" } + ] + } + """) + + #expect(testCase.isFlaky) + #expect(testCase.repetitionResults == [.failed, .passed]) + } + + @Test + func allFailedRepetitionsAreNotFlaky() throws { + let testCase = try node(from: """ + { + "name": "test_random()", + "nodeType": "Test Case", + "result": "Failed", + "children": [ + { "name": "Repetition 1", "nodeType": "Repetition", "result": "Failed" }, + { "name": "Repetition 2", "nodeType": "Repetition", "result": "Failed" }, + { "name": "Repetition 3", "nodeType": "Repetition", "result": "Failed" } + ] + } + """) + + #expect(!testCase.isFlaky) + } + + @Test + func allPassedRepetitionsAreNotFlaky() throws { + let testCase = try node(from: """ + { + "name": "test_random()", + "nodeType": "Test Case", + "result": "Passed", + "children": [ + { "name": "Repetition 1", "nodeType": "Repetition", "result": "Passed" }, + { "name": "Repetition 2", "nodeType": "Repetition", "result": "Passed" } + ] + } + """) + + #expect(!testCase.isFlaky) + } + + @Test + func testCaseWithoutRepetitionsIsNotFlaky() throws { + let testCase = try node(from: """ + { + "name": "test_simple()", + "nodeType": "Test Case", + "result": "Passed" + } + """) + + #expect(!testCase.isFlaky) + #expect(testCase.repetitionResults.isEmpty) + } + + @Test + func repetitionsNestedUnderTestCaseRunAreDetected() throws { + // Per-device runs wrap the repetitions in a "Test Case Run" node. + let testCase = try node(from: """ + { + "name": "test_random()", + "nodeType": "Test Case", + "result": "Failed", + "children": [ + { + "name": "iPhone 16 Pro", + "nodeType": "Test Case Run", + "children": [ + { "name": "Repetition 1", "nodeType": "Repetition", "result": "Failed" }, + { "name": "Repetition 2", "nodeType": "Repetition", "result": "Passed" } + ] + } + ] + } + """) + + #expect(testCase.isFlaky) + } + + @Test + func parameterizedArgumentWithMixedRepetitionsIsFlaky() throws { + // For parameterized tests the repetitions hang off the "Arguments" node. + let testCase = try node(from: """ + { + "name": "test_value(input:)", + "nodeType": "Test Case", + "result": "Failed", + "children": [ + { + "name": "42", + "nodeType": "Arguments", + "result": "Failed", + "children": [ + { "name": "Repetition 1", "nodeType": "Repetition", "result": "Failed" }, + { "name": "Repetition 2", "nodeType": "Repetition", "result": "Passed" } + ] + } + ] + } + """) + + let argumentsNode = try #require(testCase.children?.first) + let mapped = testCase.mapArgumentTest(argument: argumentsNode, testClassName: "MySuite") + + #expect(mapped.isFlaky) + #expect(mapped.result == .failed) + } + + @Test + func parameterizedArgumentWithAllFailedRepetitionsIsNotFlaky() throws { + let testCase = try node(from: """ + { + "name": "test_value(input:)", + "nodeType": "Test Case", + "result": "Failed", + "children": [ + { + "name": "42", + "nodeType": "Arguments", + "result": "Failed", + "children": [ + { "name": "Repetition 1", "nodeType": "Repetition", "result": "Failed" }, + { "name": "Repetition 2", "nodeType": "Repetition", "result": "Failed" } + ] + } + ] + } + """) + + let argumentsNode = try #require(testCase.children?.first) + let mapped = testCase.mapArgumentTest(argument: argumentsNode, testClassName: "MySuite") + + #expect(!mapped.isFlaky) + } +} diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-F3ENvqJLTYuSPeFk6chby1RZlU-SU_C8lCw0IaDJN6uc8eYA8Z0bzdgp-yTHsZo5E3aDSOgnp3NSpW1-k5G5g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-F3ENvqJLTYuSPeFk6chby1RZlU-SU_C8lCw0IaDJN6uc8eYA8Z0bzdgp-yTHsZo5E3aDSOgnp3NSpW1-k5G5g== new file mode 100644 index 0000000..219f011 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-F3ENvqJLTYuSPeFk6chby1RZlU-SU_C8lCw0IaDJN6uc8eYA8Z0bzdgp-yTHsZo5E3aDSOgnp3NSpW1-k5G5g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-MC1wZUWC3FdI4gEXhxwP8TWNNC_Q3RkdF8lKr3WwThyJTNmnlx37WQjiK2ywmtmyB495louBWAHU7_bPJnPkw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-MC1wZUWC3FdI4gEXhxwP8TWNNC_Q3RkdF8lKr3WwThyJTNmnlx37WQjiK2ywmtmyB495louBWAHU7_bPJnPkw== new file mode 100644 index 0000000..694e17f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-MC1wZUWC3FdI4gEXhxwP8TWNNC_Q3RkdF8lKr3WwThyJTNmnlx37WQjiK2ywmtmyB495louBWAHU7_bPJnPkw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-MrJR0kehlHwRngkp-YiOs835bWvPDem5fDKLwGhrEjCwIRL373LtHwydfhp98UDoFanQhJz3Ky37tnYIzlUtw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-MrJR0kehlHwRngkp-YiOs835bWvPDem5fDKLwGhrEjCwIRL373LtHwydfhp98UDoFanQhJz3Ky37tnYIzlUtw== new file mode 100644 index 0000000..9b39172 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-MrJR0kehlHwRngkp-YiOs835bWvPDem5fDKLwGhrEjCwIRL373LtHwydfhp98UDoFanQhJz3Ky37tnYIzlUtw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-Zh0FxvJ8wF6szOkbyH2x6p6MHAVAJX5hO_u_zS2PzmSqFnmpyPITs1H87ji76S-64AmtlsdO0a6LJuPfhcH_Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-Zh0FxvJ8wF6szOkbyH2x6p6MHAVAJX5hO_u_zS2PzmSqFnmpyPITs1H87ji76S-64AmtlsdO0a6LJuPfhcH_Q== new file mode 100644 index 0000000..dfad305 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-Zh0FxvJ8wF6szOkbyH2x6p6MHAVAJX5hO_u_zS2PzmSqFnmpyPITs1H87ji76S-64AmtlsdO0a6LJuPfhcH_Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-_cp67sUaGPrYXR6PCRzhszN9Zu1hLLQGaQHs2zKvNT0ITevOk8rZbYluhiIdpHYD9dGJ2vpkI9IdNaY5Nfs4g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-_cp67sUaGPrYXR6PCRzhszN9Zu1hLLQGaQHs2zKvNT0ITevOk8rZbYluhiIdpHYD9dGJ2vpkI9IdNaY5Nfs4g== new file mode 100644 index 0000000..d04c2fb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-_cp67sUaGPrYXR6PCRzhszN9Zu1hLLQGaQHs2zKvNT0ITevOk8rZbYluhiIdpHYD9dGJ2vpkI9IdNaY5Nfs4g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-dv1SX05ytulGJDm0CugshK0Yj0MLmkXqqvTVc8qgaVUOmaerut6dioocIGBwWrzuGtNmEnq1v9UVnzy8Q3j7g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-dv1SX05ytulGJDm0CugshK0Yj0MLmkXqqvTVc8qgaVUOmaerut6dioocIGBwWrzuGtNmEnq1v9UVnzy8Q3j7g== new file mode 100644 index 0000000..06908b7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-dv1SX05ytulGJDm0CugshK0Yj0MLmkXqqvTVc8qgaVUOmaerut6dioocIGBwWrzuGtNmEnq1v9UVnzy8Q3j7g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-lQRBjtkRCL86pXtqv_aNbNY1-_EgiMG-xsSr3rSDgL5FvUIUjqSkfpZQgfxXaUL5QJ912KNa1UOFrNLHkef1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-lQRBjtkRCL86pXtqv_aNbNY1-_EgiMG-xsSr3rSDgL5FvUIUjqSkfpZQgfxXaUL5QJ912KNa1UOFrNLHkef1g== new file mode 100644 index 0000000..21dd01c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-lQRBjtkRCL86pXtqv_aNbNY1-_EgiMG-xsSr3rSDgL5FvUIUjqSkfpZQgfxXaUL5QJ912KNa1UOFrNLHkef1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-pJejhFmnAFWmJ__IKgfr1RLgTnenVBg0lJzylXh0cg8fsFCwpwVCsh-I79nmCjTQagylnZ2huBW7OcQMKYTAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-pJejhFmnAFWmJ__IKgfr1RLgTnenVBg0lJzylXh0cg8fsFCwpwVCsh-I79nmCjTQagylnZ2huBW7OcQMKYTAg== new file mode 100644 index 0000000..5012c78 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-pJejhFmnAFWmJ__IKgfr1RLgTnenVBg0lJzylXh0cg8fsFCwpwVCsh-I79nmCjTQagylnZ2huBW7OcQMKYTAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-tr1SQ77h-lx1AySC-Q0WtIYUJZxtVWhd4d84AV1JFk6yQhiNgNsIMVcGIOkEvkb3hGkbXxe0pFFCv5tShaeBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-tr1SQ77h-lx1AySC-Q0WtIYUJZxtVWhd4d84AV1JFk6yQhiNgNsIMVcGIOkEvkb3hGkbXxe0pFFCv5tShaeBA== new file mode 100644 index 0000000..70f4a98 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-tr1SQ77h-lx1AySC-Q0WtIYUJZxtVWhd4d84AV1JFk6yQhiNgNsIMVcGIOkEvkb3hGkbXxe0pFFCv5tShaeBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-ut6GyP8-BpM0CGnAyWRF2qx6coHV0f75ZgNLFfoAa4BL4Crk_TnP0ArncVaXm2WCkV0bwJ9fnFOHrkEgzQo-A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-ut6GyP8-BpM0CGnAyWRF2qx6coHV0f75ZgNLFfoAa4BL4Crk_TnP0ArncVaXm2WCkV0bwJ9fnFOHrkEgzQo-A== new file mode 100644 index 0000000..0e6ed92 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-ut6GyP8-BpM0CGnAyWRF2qx6coHV0f75ZgNLFfoAa4BL4Crk_TnP0ArncVaXm2WCkV0bwJ9fnFOHrkEgzQo-A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-vNA8BXUDlMRGjxTGsN3_BfpQ94vgXuCoT8aBuBqvMyVZrsWEPORhzBZrEe_11EQ2GqXHoAmH0WAhQwYzgCtjA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-vNA8BXUDlMRGjxTGsN3_BfpQ94vgXuCoT8aBuBqvMyVZrsWEPORhzBZrEe_11EQ2GqXHoAmH0WAhQwYzgCtjA== new file mode 100644 index 0000000..6f4c5c6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-vNA8BXUDlMRGjxTGsN3_BfpQ94vgXuCoT8aBuBqvMyVZrsWEPORhzBZrEe_11EQ2GqXHoAmH0WAhQwYzgCtjA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-wlrk1c_t0_Ek_P9qyksYZ07-d4MKIqlqPBR7p4_5CE5qTtANaMA4eOBhl8bgHJrjSFgN0Bp5nyqN5jgVlHWVg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-wlrk1c_t0_Ek_P9qyksYZ07-d4MKIqlqPBR7p4_5CE5qTtANaMA4eOBhl8bgHJrjSFgN0Bp5nyqN5jgVlHWVg== new file mode 100644 index 0000000..455cd58 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~-wlrk1c_t0_Ek_P9qyksYZ07-d4MKIqlqPBR7p4_5CE5qTtANaMA4eOBhl8bgHJrjSFgN0Bp5nyqN5jgVlHWVg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~07ZDLx2cBnQdBo9PYwh2TG90P0C0TlBhR31RF4ETbXxYc6FqZv7leLBQSsR06PvoFeyRxQt6ILiWAC7QpT8hOw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~07ZDLx2cBnQdBo9PYwh2TG90P0C0TlBhR31RF4ETbXxYc6FqZv7leLBQSsR06PvoFeyRxQt6ILiWAC7QpT8hOw== new file mode 100644 index 0000000..058dd7c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~07ZDLx2cBnQdBo9PYwh2TG90P0C0TlBhR31RF4ETbXxYc6FqZv7leLBQSsR06PvoFeyRxQt6ILiWAC7QpT8hOw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~08AhkoKRYKo5HeY6pMzGs6CG-g0Ou1tMOrUvw2o8avvXgDHmOPi8gAMvJgYmpLrgXm9YJdtLz1glAyx5FZ7HpA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~08AhkoKRYKo5HeY6pMzGs6CG-g0Ou1tMOrUvw2o8avvXgDHmOPi8gAMvJgYmpLrgXm9YJdtLz1glAyx5FZ7HpA== new file mode 100644 index 0000000..8ff9997 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~08AhkoKRYKo5HeY6pMzGs6CG-g0Ou1tMOrUvw2o8avvXgDHmOPi8gAMvJgYmpLrgXm9YJdtLz1glAyx5FZ7HpA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0DsqvI8QidR0RScn3a7oQ41E_DzXw4P2YX2VxoOO8UwI32tmxDbzrT7YC_Xr5D5b4cMzGgOXDhrVRAKeWl6ksw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0DsqvI8QidR0RScn3a7oQ41E_DzXw4P2YX2VxoOO8UwI32tmxDbzrT7YC_Xr5D5b4cMzGgOXDhrVRAKeWl6ksw== new file mode 100644 index 0000000..351d304 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0DsqvI8QidR0RScn3a7oQ41E_DzXw4P2YX2VxoOO8UwI32tmxDbzrT7YC_Xr5D5b4cMzGgOXDhrVRAKeWl6ksw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0F9Tpx2P730NFCOL6nitzxtf59JsPH8PF5Z_CYTZDJLagRhnZbCR8UJjex5OC3yqcy_abuDfdvRb3XCsY1bq6w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0F9Tpx2P730NFCOL6nitzxtf59JsPH8PF5Z_CYTZDJLagRhnZbCR8UJjex5OC3yqcy_abuDfdvRb3XCsY1bq6w== new file mode 100644 index 0000000..2c0c071 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0F9Tpx2P730NFCOL6nitzxtf59JsPH8PF5Z_CYTZDJLagRhnZbCR8UJjex5OC3yqcy_abuDfdvRb3XCsY1bq6w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0FtAfzU6bgitp01oxMIKRHcied2eu-IXpY8QZEirZXi8XYbLDIfxQggn_BrmfsV9sA4zU6K5ggdAyp0OdfOpSg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0FtAfzU6bgitp01oxMIKRHcied2eu-IXpY8QZEirZXi8XYbLDIfxQggn_BrmfsV9sA4zU6K5ggdAyp0OdfOpSg== new file mode 100644 index 0000000..416ff8b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0FtAfzU6bgitp01oxMIKRHcied2eu-IXpY8QZEirZXi8XYbLDIfxQggn_BrmfsV9sA4zU6K5ggdAyp0OdfOpSg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0HwEN6RBxkvT67z_fJGVvtREKOPn_ZfX77GvcFktDdO4sqjh5Vs-z-LUdbTj5bgFjV_7ue3k7NXCpqoiuJ6o-Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0HwEN6RBxkvT67z_fJGVvtREKOPn_ZfX77GvcFktDdO4sqjh5Vs-z-LUdbTj5bgFjV_7ue3k7NXCpqoiuJ6o-Q== new file mode 100644 index 0000000..cb4e400 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0HwEN6RBxkvT67z_fJGVvtREKOPn_ZfX77GvcFktDdO4sqjh5Vs-z-LUdbTj5bgFjV_7ue3k7NXCpqoiuJ6o-Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0IgGKgY-0szEKza8bhtBLRYlyX6W5ah0zPYn0ESKBLmm_uYxNy_0f1USUIzvtE0AX6K-PPJu_CoeIAsZQMIhOQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0IgGKgY-0szEKza8bhtBLRYlyX6W5ah0zPYn0ESKBLmm_uYxNy_0f1USUIzvtE0AX6K-PPJu_CoeIAsZQMIhOQ== new file mode 100644 index 0000000..614cc3a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0IgGKgY-0szEKza8bhtBLRYlyX6W5ah0zPYn0ESKBLmm_uYxNy_0f1USUIzvtE0AX6K-PPJu_CoeIAsZQMIhOQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0Jvoe2pswjwRKhGXcPcKSCvNxlY06eQDLpYlI1LdWV_YHXJ2A4dY7kKm-bbns4eM889ry9H4bEJkyQEmuQzUkQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0Jvoe2pswjwRKhGXcPcKSCvNxlY06eQDLpYlI1LdWV_YHXJ2A4dY7kKm-bbns4eM889ry9H4bEJkyQEmuQzUkQ== new file mode 100644 index 0000000..529d3a1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0Jvoe2pswjwRKhGXcPcKSCvNxlY06eQDLpYlI1LdWV_YHXJ2A4dY7kKm-bbns4eM889ry9H4bEJkyQEmuQzUkQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0QPZQh0VeYmzr0DmdR6SBesCbLFU1I7ZcvZLjiSIEMc70EiQWb5lyxRxzYuLds4FpCFySx9yLImt_tujtFgaQg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0QPZQh0VeYmzr0DmdR6SBesCbLFU1I7ZcvZLjiSIEMc70EiQWb5lyxRxzYuLds4FpCFySx9yLImt_tujtFgaQg== new file mode 100644 index 0000000..054fd11 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0QPZQh0VeYmzr0DmdR6SBesCbLFU1I7ZcvZLjiSIEMc70EiQWb5lyxRxzYuLds4FpCFySx9yLImt_tujtFgaQg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0RQ0xe7jVlgnqIeR5QnnevkGt3vJmqzZRypv4g522qyoG-kLBgIKRC_uNaCxtwQIZfcexYN2iSXsreVcuPC-7w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0RQ0xe7jVlgnqIeR5QnnevkGt3vJmqzZRypv4g522qyoG-kLBgIKRC_uNaCxtwQIZfcexYN2iSXsreVcuPC-7w== new file mode 100644 index 0000000..27f182a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0RQ0xe7jVlgnqIeR5QnnevkGt3vJmqzZRypv4g522qyoG-kLBgIKRC_uNaCxtwQIZfcexYN2iSXsreVcuPC-7w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0UstVjdAO3Rk8EMmQ57SlYiyg6vF07f-0_F3k5ZacViWBDQOs8LXZIX1-9FzcLSjHdUOfKHMArXq6g_piXmOZQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0UstVjdAO3Rk8EMmQ57SlYiyg6vF07f-0_F3k5ZacViWBDQOs8LXZIX1-9FzcLSjHdUOfKHMArXq6g_piXmOZQ== new file mode 100644 index 0000000..b5d1a41 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0UstVjdAO3Rk8EMmQ57SlYiyg6vF07f-0_F3k5ZacViWBDQOs8LXZIX1-9FzcLSjHdUOfKHMArXq6g_piXmOZQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0W-9nihK4PbG9TpkoJzI5USyLNb8kMWzKEiTNezWLvrwf5GVA6STOUqsb0oOQqcZsDVN5zgFzliooPyz058M1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0W-9nihK4PbG9TpkoJzI5USyLNb8kMWzKEiTNezWLvrwf5GVA6STOUqsb0oOQqcZsDVN5zgFzliooPyz058M1g== new file mode 100644 index 0000000..d653ee2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0W-9nihK4PbG9TpkoJzI5USyLNb8kMWzKEiTNezWLvrwf5GVA6STOUqsb0oOQqcZsDVN5zgFzliooPyz058M1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0cNA4A0DmbepXOXIyYN8wAzXMG7hKh5tRC6D8S0XW1XH8sTRE1drWjbM_a0Ra_WuYxAjcl8a4lQTuXAkqqIo7w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0cNA4A0DmbepXOXIyYN8wAzXMG7hKh5tRC6D8S0XW1XH8sTRE1drWjbM_a0Ra_WuYxAjcl8a4lQTuXAkqqIo7w== new file mode 100644 index 0000000..56138f5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0cNA4A0DmbepXOXIyYN8wAzXMG7hKh5tRC6D8S0XW1XH8sTRE1drWjbM_a0Ra_WuYxAjcl8a4lQTuXAkqqIo7w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0iB1nha-a_68KrxlsbT-QulpNE5a0PU7wQ9ktdrdNXCMrNkLOuabaPgIiYnS_CcjUoWe29P1a8OjyrUlJcBGmg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0iB1nha-a_68KrxlsbT-QulpNE5a0PU7wQ9ktdrdNXCMrNkLOuabaPgIiYnS_CcjUoWe29P1a8OjyrUlJcBGmg== new file mode 100644 index 0000000..ec84c23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0iB1nha-a_68KrxlsbT-QulpNE5a0PU7wQ9ktdrdNXCMrNkLOuabaPgIiYnS_CcjUoWe29P1a8OjyrUlJcBGmg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0oAcl5PKnNgO2-m-aLPKReYR0LBCHYiM4q4BwURjKGFiCTzMN8D36eMA4EvkhOAFMAEfdqJyztsFwnSrf-7ftQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0oAcl5PKnNgO2-m-aLPKReYR0LBCHYiM4q4BwURjKGFiCTzMN8D36eMA4EvkhOAFMAEfdqJyztsFwnSrf-7ftQ== new file mode 100644 index 0000000..1d1b204 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0oAcl5PKnNgO2-m-aLPKReYR0LBCHYiM4q4BwURjKGFiCTzMN8D36eMA4EvkhOAFMAEfdqJyztsFwnSrf-7ftQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0u9TlFrziuDrLKBCI6JzBrQOwBJknSSPGu5opvi0XQSv-0gvyGrrjbLSok9lSEQ0eUnPerDzNJ5MeNUUopIU6A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0u9TlFrziuDrLKBCI6JzBrQOwBJknSSPGu5opvi0XQSv-0gvyGrrjbLSok9lSEQ0eUnPerDzNJ5MeNUUopIU6A== new file mode 100644 index 0000000..365ce6f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0u9TlFrziuDrLKBCI6JzBrQOwBJknSSPGu5opvi0XQSv-0gvyGrrjbLSok9lSEQ0eUnPerDzNJ5MeNUUopIU6A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0yCS5Ew4N8mPSDMWMTBN5Tj1KPc-0_rLln8QQBh7vwT0VOke6N6TK05YFHqmR2vxniOOFSyIsP_5yB4RGhtGwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0yCS5Ew4N8mPSDMWMTBN5Tj1KPc-0_rLln8QQBh7vwT0VOke6N6TK05YFHqmR2vxniOOFSyIsP_5yB4RGhtGwg== new file mode 100644 index 0000000..885c766 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~0yCS5Ew4N8mPSDMWMTBN5Tj1KPc-0_rLln8QQBh7vwT0VOke6N6TK05YFHqmR2vxniOOFSyIsP_5yB4RGhtGwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1CwX5CIyTZQKwujUsmAn7YGyi3hIwCZ4oz_CIbDu6toI-ccs3pBxxf-uYut7bylanbnWslv-rmvR_9YxzFDjxw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1CwX5CIyTZQKwujUsmAn7YGyi3hIwCZ4oz_CIbDu6toI-ccs3pBxxf-uYut7bylanbnWslv-rmvR_9YxzFDjxw== new file mode 100644 index 0000000..9ed9802 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1CwX5CIyTZQKwujUsmAn7YGyi3hIwCZ4oz_CIbDu6toI-ccs3pBxxf-uYut7bylanbnWslv-rmvR_9YxzFDjxw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1FpEsbK2uVUiyuXKh2zZWuibHYduaAY-N-rbyUWq4cm9uQzkRQdqJFA73wtmhPF6VA0m6Wdhk_yj5irr2_Vt2A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1FpEsbK2uVUiyuXKh2zZWuibHYduaAY-N-rbyUWq4cm9uQzkRQdqJFA73wtmhPF6VA0m6Wdhk_yj5irr2_Vt2A== new file mode 100644 index 0000000..d6ec694 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1FpEsbK2uVUiyuXKh2zZWuibHYduaAY-N-rbyUWq4cm9uQzkRQdqJFA73wtmhPF6VA0m6Wdhk_yj5irr2_Vt2A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1JJBn9Cpvryh8RKJ_uiQac19Kb8byewsJkBMkJB8ZDa99HObjV96mK4UlH1KyWJBjkGnkRrYTk9foX6-SDhl-A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1JJBn9Cpvryh8RKJ_uiQac19Kb8byewsJkBMkJB8ZDa99HObjV96mK4UlH1KyWJBjkGnkRrYTk9foX6-SDhl-A== new file mode 100644 index 0000000..92094fe Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1JJBn9Cpvryh8RKJ_uiQac19Kb8byewsJkBMkJB8ZDa99HObjV96mK4UlH1KyWJBjkGnkRrYTk9foX6-SDhl-A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1M6CW5f8EfsAbbThL_jqm1OosNWWNRfkM9uofdlSzUpVY4GgmahYHVgLVSE30eIueoMvDTMQG0Oy6Xas0vRSKQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1M6CW5f8EfsAbbThL_jqm1OosNWWNRfkM9uofdlSzUpVY4GgmahYHVgLVSE30eIueoMvDTMQG0Oy6Xas0vRSKQ== new file mode 100644 index 0000000..678166e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1M6CW5f8EfsAbbThL_jqm1OosNWWNRfkM9uofdlSzUpVY4GgmahYHVgLVSE30eIueoMvDTMQG0Oy6Xas0vRSKQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1MGDDEQ64bd7DymhFMvW6JY0qK-jWk9DO6Xa5V6RnMafsNVdp2rX9HihvwARPJ2vJoPk_KjYoIyST40vpL7GpA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1MGDDEQ64bd7DymhFMvW6JY0qK-jWk9DO6Xa5V6RnMafsNVdp2rX9HihvwARPJ2vJoPk_KjYoIyST40vpL7GpA== new file mode 100644 index 0000000..293f436 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1MGDDEQ64bd7DymhFMvW6JY0qK-jWk9DO6Xa5V6RnMafsNVdp2rX9HihvwARPJ2vJoPk_KjYoIyST40vpL7GpA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1RKoswP7291cx0N5iXRnoOZ2khUeo0c4mtk4esCszOuTaaS3LphiRSTJWBpt81WpL39tmyXQ8tameqSYbu3SiQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1RKoswP7291cx0N5iXRnoOZ2khUeo0c4mtk4esCszOuTaaS3LphiRSTJWBpt81WpL39tmyXQ8tameqSYbu3SiQ== new file mode 100644 index 0000000..87c1b98 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1RKoswP7291cx0N5iXRnoOZ2khUeo0c4mtk4esCszOuTaaS3LphiRSTJWBpt81WpL39tmyXQ8tameqSYbu3SiQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1aKx4_NvekVDkZL_4muaAB6tiwf0jm7dVbKfPeU6O_Y9qf2Nz6jsmaMlnBLLCc03XqbhaNx1bq6ypx98gyFcBw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1aKx4_NvekVDkZL_4muaAB6tiwf0jm7dVbKfPeU6O_Y9qf2Nz6jsmaMlnBLLCc03XqbhaNx1bq6ypx98gyFcBw== new file mode 100644 index 0000000..595fc69 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1aKx4_NvekVDkZL_4muaAB6tiwf0jm7dVbKfPeU6O_Y9qf2Nz6jsmaMlnBLLCc03XqbhaNx1bq6ypx98gyFcBw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1bGJHW7bA5Mm7yfjsXLCTYPr8bCQIYa7MEcjfmuLi9CqdrX3dkv-amTLZltdu2zRKRgfE-t39bGqWv59O0p9wQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1bGJHW7bA5Mm7yfjsXLCTYPr8bCQIYa7MEcjfmuLi9CqdrX3dkv-amTLZltdu2zRKRgfE-t39bGqWv59O0p9wQ== new file mode 100644 index 0000000..d6941fa Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1bGJHW7bA5Mm7yfjsXLCTYPr8bCQIYa7MEcjfmuLi9CqdrX3dkv-amTLZltdu2zRKRgfE-t39bGqWv59O0p9wQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1c2oDlXf_Ca7zNdXY3ZKfJ1iIjCnfm1xpNletwGbmz2J6R7kj8Rhdn_Sn_9rrx_qrPKYaNWKCSZTqXBm5Sh46g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1c2oDlXf_Ca7zNdXY3ZKfJ1iIjCnfm1xpNletwGbmz2J6R7kj8Rhdn_Sn_9rrx_qrPKYaNWKCSZTqXBm5Sh46g== new file mode 100644 index 0000000..f2da565 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1c2oDlXf_Ca7zNdXY3ZKfJ1iIjCnfm1xpNletwGbmz2J6R7kj8Rhdn_Sn_9rrx_qrPKYaNWKCSZTqXBm5Sh46g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1cg8eeY6VFo4v4GCEfYzelvOzxwOkUnSIyVX8xUqspVC5wxhreWYh0LhXBftpIpTjDWalg0_IhxweOy8ABI9HA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1cg8eeY6VFo4v4GCEfYzelvOzxwOkUnSIyVX8xUqspVC5wxhreWYh0LhXBftpIpTjDWalg0_IhxweOy8ABI9HA== new file mode 100644 index 0000000..a51e2bb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1cg8eeY6VFo4v4GCEfYzelvOzxwOkUnSIyVX8xUqspVC5wxhreWYh0LhXBftpIpTjDWalg0_IhxweOy8ABI9HA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1dvJIfPK7-btkLAiqfsXtTFj3BDrscOeph1XRYO8E7hEEc6yzYM_B6OdecFh6tZ59R6ae8zFk1YABfHMCheu_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1dvJIfPK7-btkLAiqfsXtTFj3BDrscOeph1XRYO8E7hEEc6yzYM_B6OdecFh6tZ59R6ae8zFk1YABfHMCheu_w== new file mode 100644 index 0000000..2cde900 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1dvJIfPK7-btkLAiqfsXtTFj3BDrscOeph1XRYO8E7hEEc6yzYM_B6OdecFh6tZ59R6ae8zFk1YABfHMCheu_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1f9TFngD7DRsDlckmKsmMVkaFZgxoa40-cBVsqpIM_rZXjZZ1KSPU1SSzRnnM514OfXXuSOIdoXwxXybzs4aqA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1f9TFngD7DRsDlckmKsmMVkaFZgxoa40-cBVsqpIM_rZXjZZ1KSPU1SSzRnnM514OfXXuSOIdoXwxXybzs4aqA== new file mode 100644 index 0000000..14b3087 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1f9TFngD7DRsDlckmKsmMVkaFZgxoa40-cBVsqpIM_rZXjZZ1KSPU1SSzRnnM514OfXXuSOIdoXwxXybzs4aqA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1jlWYee14ThYYv-2VmUO7OjP4fgZcSX9kRqz8glHN-m-KBrVisDxuWI3Q50OxiIBWdduQdpEMsNG3YXQOuh0Dg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1jlWYee14ThYYv-2VmUO7OjP4fgZcSX9kRqz8glHN-m-KBrVisDxuWI3Q50OxiIBWdduQdpEMsNG3YXQOuh0Dg== new file mode 100644 index 0000000..088a856 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1jlWYee14ThYYv-2VmUO7OjP4fgZcSX9kRqz8glHN-m-KBrVisDxuWI3Q50OxiIBWdduQdpEMsNG3YXQOuh0Dg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1oMb7MTv_GjOjOduK4SY8RoqbEOIIq3ei4gKckg83h6DPa-uRlnFeXgWyLh9Q4v7ZZPShObed8TjDeIdJ8lDCA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1oMb7MTv_GjOjOduK4SY8RoqbEOIIq3ei4gKckg83h6DPa-uRlnFeXgWyLh9Q4v7ZZPShObed8TjDeIdJ8lDCA== new file mode 100644 index 0000000..502afdd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1oMb7MTv_GjOjOduK4SY8RoqbEOIIq3ei4gKckg83h6DPa-uRlnFeXgWyLh9Q4v7ZZPShObed8TjDeIdJ8lDCA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1y_uhIl9IMaMYiei_t6QZEAUG1IahELoeYQOXtutObvGcA2gPtHR-nZo5XqUTlp5G8V5g0lb16Uo79FC-2fUFA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1y_uhIl9IMaMYiei_t6QZEAUG1IahELoeYQOXtutObvGcA2gPtHR-nZo5XqUTlp5G8V5g0lb16Uo79FC-2fUFA== new file mode 100644 index 0000000..3d9f6ec Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~1y_uhIl9IMaMYiei_t6QZEAUG1IahELoeYQOXtutObvGcA2gPtHR-nZo5XqUTlp5G8V5g0lb16Uo79FC-2fUFA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~22kRo5TLe4_SmxWDb1f0x9dRn6tbrNQGtnzNwJA4uQwsXtcUuFb7rN3z-ZR4Z6RD6JqUechvCByR6SJjTAgOtw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~22kRo5TLe4_SmxWDb1f0x9dRn6tbrNQGtnzNwJA4uQwsXtcUuFb7rN3z-ZR4Z6RD6JqUechvCByR6SJjTAgOtw== new file mode 100644 index 0000000..1866578 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~22kRo5TLe4_SmxWDb1f0x9dRn6tbrNQGtnzNwJA4uQwsXtcUuFb7rN3z-ZR4Z6RD6JqUechvCByR6SJjTAgOtw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~23Ofl6uuV5-qN0jWge7KoLfILR4rd1UIT9bmNGjaXpDAk0jx57L2k7LI29J2foPrfTzTYygdvFMs15U6phJJbw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~23Ofl6uuV5-qN0jWge7KoLfILR4rd1UIT9bmNGjaXpDAk0jx57L2k7LI29J2foPrfTzTYygdvFMs15U6phJJbw== new file mode 100644 index 0000000..7380559 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~23Ofl6uuV5-qN0jWge7KoLfILR4rd1UIT9bmNGjaXpDAk0jx57L2k7LI29J2foPrfTzTYygdvFMs15U6phJJbw== @@ -0,0 +1 @@ +[{"type":1,"name":"411B3D5D7E354F85C249EABE2370CE"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~26bfvmAKScsBmdHFrajb5bhi9m0oMUvM_u2o2idGu-YsYLCmXkwP5LYgljw9N-PFf9Khsdw-lItpK-wLT5E9Wg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~26bfvmAKScsBmdHFrajb5bhi9m0oMUvM_u2o2idGu-YsYLCmXkwP5LYgljw9N-PFf9Khsdw-lItpK-wLT5E9Wg== new file mode 100644 index 0000000..a11e900 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~26bfvmAKScsBmdHFrajb5bhi9m0oMUvM_u2o2idGu-YsYLCmXkwP5LYgljw9N-PFf9Khsdw-lItpK-wLT5E9Wg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~29WvkCv22wumrqtFQGHIMbnpzWB0pxWvQaAnxsbHFsxwUF00Pw5btwHwVZwxOKz43o20fTbBXTkqyKJVnDmRcQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~29WvkCv22wumrqtFQGHIMbnpzWB0pxWvQaAnxsbHFsxwUF00Pw5btwHwVZwxOKz43o20fTbBXTkqyKJVnDmRcQ== new file mode 100644 index 0000000..a6d255d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~29WvkCv22wumrqtFQGHIMbnpzWB0pxWvQaAnxsbHFsxwUF00Pw5btwHwVZwxOKz43o20fTbBXTkqyKJVnDmRcQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~29kgnizZUsOFQLKzWOZhaUviMyxhlYdOJHmqEc4ypsU4aipt0b18bdj3z2z4UtBcvL0NiRCLZqiDwo44P-6i6Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~29kgnizZUsOFQLKzWOZhaUviMyxhlYdOJHmqEc4ypsU4aipt0b18bdj3z2z4UtBcvL0NiRCLZqiDwo44P-6i6Q== new file mode 100644 index 0000000..86c9460 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~29kgnizZUsOFQLKzWOZhaUviMyxhlYdOJHmqEc4ypsU4aipt0b18bdj3z2z4UtBcvL0NiRCLZqiDwo44P-6i6Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2Hrnts7S40hZPtRdV_hlBt8p0D55fAwQCBy4eldZmFh5SWPyDh98yLspvgJ-IC1EzLCyYtEBQkmeb_fNy1UwSQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2Hrnts7S40hZPtRdV_hlBt8p0D55fAwQCBy4eldZmFh5SWPyDh98yLspvgJ-IC1EzLCyYtEBQkmeb_fNy1UwSQ== new file mode 100644 index 0000000..b96d77c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2Hrnts7S40hZPtRdV_hlBt8p0D55fAwQCBy4eldZmFh5SWPyDh98yLspvgJ-IC1EzLCyYtEBQkmeb_fNy1UwSQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2HyfiSfLlxzHlKIot0prKOlf6s71TQtDj_yWBh_i6Mr8LdGog7XJNxCsssilw0AKfZBVr_6Y2pkb3clrAUi4Qg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2HyfiSfLlxzHlKIot0prKOlf6s71TQtDj_yWBh_i6Mr8LdGog7XJNxCsssilw0AKfZBVr_6Y2pkb3clrAUi4Qg== new file mode 100644 index 0000000..392ad54 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2HyfiSfLlxzHlKIot0prKOlf6s71TQtDj_yWBh_i6Mr8LdGog7XJNxCsssilw0AKfZBVr_6Y2pkb3clrAUi4Qg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2IxPgeU10Tp83z_p60n6Lx39-OskbFzDknUjpT8nwyifFWTxbKyOLblkErd25hbYONFSNTBtbtWmQvJhDrr8JA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2IxPgeU10Tp83z_p60n6Lx39-OskbFzDknUjpT8nwyifFWTxbKyOLblkErd25hbYONFSNTBtbtWmQvJhDrr8JA== new file mode 100644 index 0000000..1c52a76 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2IxPgeU10Tp83z_p60n6Lx39-OskbFzDknUjpT8nwyifFWTxbKyOLblkErd25hbYONFSNTBtbtWmQvJhDrr8JA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2RFJbpHywDH1qWgATjTOzeEefWxlXCeaOy5NTR7K299PHvFMyaGQVv6FgeurTyXpoglyG578r51i8XJIGxOV8w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2RFJbpHywDH1qWgATjTOzeEefWxlXCeaOy5NTR7K299PHvFMyaGQVv6FgeurTyXpoglyG578r51i8XJIGxOV8w== new file mode 100644 index 0000000..c834630 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2RFJbpHywDH1qWgATjTOzeEefWxlXCeaOy5NTR7K299PHvFMyaGQVv6FgeurTyXpoglyG578r51i8XJIGxOV8w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2TesQPRWiZhAv-yQEE8GWhQmu-x3gGMN377MFoarOi_vM1w3YpjtVh01GrKXgE4H0hgdLdZ1Iyt3TjrX8_mjkA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2TesQPRWiZhAv-yQEE8GWhQmu-x3gGMN377MFoarOi_vM1w3YpjtVh01GrKXgE4H0hgdLdZ1Iyt3TjrX8_mjkA== new file mode 100644 index 0000000..e8f49ec --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2TesQPRWiZhAv-yQEE8GWhQmu-x3gGMN377MFoarOi_vM1w3YpjtVh01GrKXgE4H0hgdLdZ1Iyt3TjrX8_mjkA== @@ -0,0 +1 @@ +[{"type":1,"name":"715EA5844E3F2D9CC4D266E504AD67"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2Yp4jGfb5xE4UqtSahBfMhdUwts-pDK1-5yND1QYCA7hp_LOtLDz7UgkV6jtXrSbMLoDlJdlGhPjdt7BM4qm_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2Yp4jGfb5xE4UqtSahBfMhdUwts-pDK1-5yND1QYCA7hp_LOtLDz7UgkV6jtXrSbMLoDlJdlGhPjdt7BM4qm_w== new file mode 100644 index 0000000..3353b89 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2Yp4jGfb5xE4UqtSahBfMhdUwts-pDK1-5yND1QYCA7hp_LOtLDz7UgkV6jtXrSbMLoDlJdlGhPjdt7BM4qm_w== @@ -0,0 +1 @@ +[{"type":1,"name":"D53359837B307FB57DD07065B64C57"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2ZwvmIPokKvtzsnrNgwb_gh9Q4wmbZKhE1xrUr1CNXQS2yJZzr7DZEpYX7an3In9f20Hh28mxyUrjgJgA305Dg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2ZwvmIPokKvtzsnrNgwb_gh9Q4wmbZKhE1xrUr1CNXQS2yJZzr7DZEpYX7an3In9f20Hh28mxyUrjgJgA305Dg== new file mode 100644 index 0000000..82045ed Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2ZwvmIPokKvtzsnrNgwb_gh9Q4wmbZKhE1xrUr1CNXQS2yJZzr7DZEpYX7an3In9f20Hh28mxyUrjgJgA305Dg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2g_6o8SdcUlRWUL-t8lCmlyDkmvoiSL5lyH2gs43nyT_4wUr8Z4RSQ8WXj_av07gYk9p5rZ52kKkN8AXNOWUAA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2g_6o8SdcUlRWUL-t8lCmlyDkmvoiSL5lyH2gs43nyT_4wUr8Z4RSQ8WXj_av07gYk9p5rZ52kKkN8AXNOWUAA== new file mode 100644 index 0000000..c1b16d6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2g_6o8SdcUlRWUL-t8lCmlyDkmvoiSL5lyH2gs43nyT_4wUr8Z4RSQ8WXj_av07gYk9p5rZ52kKkN8AXNOWUAA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2lIySd95C9MieafbJygYPScLF2N8TLY1scfOVzq_PzzHpnqxZFsdmyjG6xmKgvaB5-BAErp_xr4puU0u5p4RMw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2lIySd95C9MieafbJygYPScLF2N8TLY1scfOVzq_PzzHpnqxZFsdmyjG6xmKgvaB5-BAErp_xr4puU0u5p4RMw== new file mode 100644 index 0000000..11da3bb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2lIySd95C9MieafbJygYPScLF2N8TLY1scfOVzq_PzzHpnqxZFsdmyjG6xmKgvaB5-BAErp_xr4puU0u5p4RMw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2pMsXOrYNwCccpwYfNw3_-xuOWzJzNsWVjJyqlxWLB006XmmuRn7-Homj77oFfiTCDQCIyGOnIAEexqARHKiDA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2pMsXOrYNwCccpwYfNw3_-xuOWzJzNsWVjJyqlxWLB006XmmuRn7-Homj77oFfiTCDQCIyGOnIAEexqARHKiDA== new file mode 100644 index 0000000..c26c568 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2pMsXOrYNwCccpwYfNw3_-xuOWzJzNsWVjJyqlxWLB006XmmuRn7-Homj77oFfiTCDQCIyGOnIAEexqARHKiDA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2rYxCDkEAGHeRorL3P9Lh0eVGAjOGcmPIKsr4tnfR-4wUyHOJJmIBeL_S7SuJ6Vn2iAynUGAtdpSyX-M2p9i2Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2rYxCDkEAGHeRorL3P9Lh0eVGAjOGcmPIKsr4tnfR-4wUyHOJJmIBeL_S7SuJ6Vn2iAynUGAtdpSyX-M2p9i2Q== new file mode 100644 index 0000000..799bb00 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2rYxCDkEAGHeRorL3P9Lh0eVGAjOGcmPIKsr4tnfR-4wUyHOJJmIBeL_S7SuJ6Vn2iAynUGAtdpSyX-M2p9i2Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2wnC-qpsY7bHJhyfomAEvZYmEU7PlTrcA9AKC4zVDn-cDtEjji8bKUABb0_EWjxVDIZCCSQf-nAyHTX7oJSj_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2wnC-qpsY7bHJhyfomAEvZYmEU7PlTrcA9AKC4zVDn-cDtEjji8bKUABb0_EWjxVDIZCCSQf-nAyHTX7oJSj_w== new file mode 100644 index 0000000..824cdcb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2wnC-qpsY7bHJhyfomAEvZYmEU7PlTrcA9AKC4zVDn-cDtEjji8bKUABb0_EWjxVDIZCCSQf-nAyHTX7oJSj_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2yR83xFHkWAdyAftaXZ5A-KPYcUYKdrYQ6thxKEDK0dZKyxmjM3RLoHOfgTOsan6cTYKmANa-B8ciaqeBaMEJA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2yR83xFHkWAdyAftaXZ5A-KPYcUYKdrYQ6thxKEDK0dZKyxmjM3RLoHOfgTOsan6cTYKmANa-B8ciaqeBaMEJA== new file mode 100644 index 0000000..b16346b --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2yR83xFHkWAdyAftaXZ5A-KPYcUYKdrYQ6thxKEDK0dZKyxmjM3RLoHOfgTOsan6cTYKmANa-B8ciaqeBaMEJA== @@ -0,0 +1 @@ +[{"type":1,"name":"27718E235739D599A303BB83F69455"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2yahah9NtzzNx13EbeM2ND0aRnJyVG00QHQvpvA_DhOCuu-tteOS6-hrZlNYRx7hEX2N5WYfo2Irn6Y3Rv5x_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2yahah9NtzzNx13EbeM2ND0aRnJyVG00QHQvpvA_DhOCuu-tteOS6-hrZlNYRx7hEX2N5WYfo2Irn6Y3Rv5x_A== new file mode 100644 index 0000000..bb4152a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~2yahah9NtzzNx13EbeM2ND0aRnJyVG00QHQvpvA_DhOCuu-tteOS6-hrZlNYRx7hEX2N5WYfo2Irn6Y3Rv5x_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3BsPFZcVYEDUqDCKzho7wPdRDgpp5GwrCCt_XMWDcj5MaJsXGhNJCmqaT5M6Agd9zpTZOR-6yzOs5VopspNqfw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3BsPFZcVYEDUqDCKzho7wPdRDgpp5GwrCCt_XMWDcj5MaJsXGhNJCmqaT5M6Agd9zpTZOR-6yzOs5VopspNqfw== new file mode 100644 index 0000000..e100895 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3BsPFZcVYEDUqDCKzho7wPdRDgpp5GwrCCt_XMWDcj5MaJsXGhNJCmqaT5M6Agd9zpTZOR-6yzOs5VopspNqfw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3C4mQy5DBfRlhGHilc_RiYjJufLS636YHNYVBFHYND39S6bYbSgxm305GYIVysRvOdnMYSQO1U2xuwC8SI1fog== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3C4mQy5DBfRlhGHilc_RiYjJufLS636YHNYVBFHYND39S6bYbSgxm305GYIVysRvOdnMYSQO1U2xuwC8SI1fog== new file mode 100644 index 0000000..7eefbd6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3C4mQy5DBfRlhGHilc_RiYjJufLS636YHNYVBFHYND39S6bYbSgxm305GYIVysRvOdnMYSQO1U2xuwC8SI1fog== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3Do7MK7HauA37lWdKhk7Kjl1KwN0cEY8amlsvuDV3I73a2eQnWIlUIAbJJbJU3fgN3IIlTwwOytPr7mn3iGx0g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3Do7MK7HauA37lWdKhk7Kjl1KwN0cEY8amlsvuDV3I73a2eQnWIlUIAbJJbJU3fgN3IIlTwwOytPr7mn3iGx0g== new file mode 100644 index 0000000..2633ffc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3Do7MK7HauA37lWdKhk7Kjl1KwN0cEY8amlsvuDV3I73a2eQnWIlUIAbJJbJU3fgN3IIlTwwOytPr7mn3iGx0g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3HYawRxl-PBNdL-v9vxN3sa5XIf58rB6rrgHU6xNQmTg6DB9NFQu_VEtQOUGwOqreQo6xfvADqf7xqEZlW9sqA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3HYawRxl-PBNdL-v9vxN3sa5XIf58rB6rrgHU6xNQmTg6DB9NFQu_VEtQOUGwOqreQo6xfvADqf7xqEZlW9sqA== new file mode 100644 index 0000000..90f00aa --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3HYawRxl-PBNdL-v9vxN3sa5XIf58rB6rrgHU6xNQmTg6DB9NFQu_VEtQOUGwOqreQo6xfvADqf7xqEZlW9sqA== @@ -0,0 +1 @@ +[{"type":1,"name":"BE14D33A1D3435AD4D7FE5030038C0"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3IEqacAo_buKc2zlNYBMT2lx2z5X4PITY2hdAoGzuOuq9aTdzzakWHFaq1xMBTDTnLgzRdjoFhee2n4uKD5PVQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3IEqacAo_buKc2zlNYBMT2lx2z5X4PITY2hdAoGzuOuq9aTdzzakWHFaq1xMBTDTnLgzRdjoFhee2n4uKD5PVQ== new file mode 100644 index 0000000..aabd507 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3IEqacAo_buKc2zlNYBMT2lx2z5X4PITY2hdAoGzuOuq9aTdzzakWHFaq1xMBTDTnLgzRdjoFhee2n4uKD5PVQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3K3lp-f66cwU6lsMWhRMGLjDHIvKV9r33b7nBt1WkMEiBVpRZmzLeB-6a13PWOwBtCTNOLXNlV0ese1Ev0eH1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3K3lp-f66cwU6lsMWhRMGLjDHIvKV9r33b7nBt1WkMEiBVpRZmzLeB-6a13PWOwBtCTNOLXNlV0ese1Ev0eH1g== new file mode 100644 index 0000000..2825ff9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3K3lp-f66cwU6lsMWhRMGLjDHIvKV9r33b7nBt1WkMEiBVpRZmzLeB-6a13PWOwBtCTNOLXNlV0ese1Ev0eH1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3MsEwNrDh4pP6ErKNWS-ptUHR_wQ6KJJCGwyCLBFvIxyPc70PPuxfoL5nW1Jxbz2Z4pgsMgx1pY23pk-q17sNQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3MsEwNrDh4pP6ErKNWS-ptUHR_wQ6KJJCGwyCLBFvIxyPc70PPuxfoL5nW1Jxbz2Z4pgsMgx1pY23pk-q17sNQ== new file mode 100644 index 0000000..e8e9a42 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3MsEwNrDh4pP6ErKNWS-ptUHR_wQ6KJJCGwyCLBFvIxyPc70PPuxfoL5nW1Jxbz2Z4pgsMgx1pY23pk-q17sNQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3QtiXnWCvrt-wyKazJGgFKOyjjX2VDE80VCwoAxCkXddpRtGUQc5PAhZyAAVUZtekkwE8WhPpJvnyRbeb0jh6w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3QtiXnWCvrt-wyKazJGgFKOyjjX2VDE80VCwoAxCkXddpRtGUQc5PAhZyAAVUZtekkwE8WhPpJvnyRbeb0jh6w== new file mode 100644 index 0000000..3b4db41 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3QtiXnWCvrt-wyKazJGgFKOyjjX2VDE80VCwoAxCkXddpRtGUQc5PAhZyAAVUZtekkwE8WhPpJvnyRbeb0jh6w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3SJ1uVgNy1ad8uDgElx1qK19_JMqEwCDqsSZj-zZkflBC1oDIzau3lmJCErSNZenv96o98Z83MLTOAs9j3r1Vg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3SJ1uVgNy1ad8uDgElx1qK19_JMqEwCDqsSZj-zZkflBC1oDIzau3lmJCErSNZenv96o98Z83MLTOAs9j3r1Vg== new file mode 100644 index 0000000..77e9d59 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3SJ1uVgNy1ad8uDgElx1qK19_JMqEwCDqsSZj-zZkflBC1oDIzau3lmJCErSNZenv96o98Z83MLTOAs9j3r1Vg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3S_cwLTCG36dDAK1ppSmAnRmv8sBmJIX6u5SPMwSzXe_yrRHCe-dfo5NIxj8Jy0LKAL1ZY1tx9HfPomZHfstRQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3S_cwLTCG36dDAK1ppSmAnRmv8sBmJIX6u5SPMwSzXe_yrRHCe-dfo5NIxj8Jy0LKAL1ZY1tx9HfPomZHfstRQ== new file mode 100644 index 0000000..72bb4e3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3S_cwLTCG36dDAK1ppSmAnRmv8sBmJIX6u5SPMwSzXe_yrRHCe-dfo5NIxj8Jy0LKAL1ZY1tx9HfPomZHfstRQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3UGni8xM0Zs8ravmwJvwYrjYfI8n8NbMgtMBnTTVdJ07Ve1PEEYt9W-159FNRNnUm6XsH4a2s9-eLi6qEiy9Ug== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3UGni8xM0Zs8ravmwJvwYrjYfI8n8NbMgtMBnTTVdJ07Ve1PEEYt9W-159FNRNnUm6XsH4a2s9-eLi6qEiy9Ug== new file mode 100644 index 0000000..7568eed Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3UGni8xM0Zs8ravmwJvwYrjYfI8n8NbMgtMBnTTVdJ07Ve1PEEYt9W-159FNRNnUm6XsH4a2s9-eLi6qEiy9Ug== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3aD6XhfIvVvp8kD5LUCeppfDZNlBs_Fnw4QO2sLbqIOeOjaka4qgt-_tWncXXPzhfhrjpmz1uVss7s7E8NxlZg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3aD6XhfIvVvp8kD5LUCeppfDZNlBs_Fnw4QO2sLbqIOeOjaka4qgt-_tWncXXPzhfhrjpmz1uVss7s7E8NxlZg== new file mode 100644 index 0000000..0d4d8c5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3aD6XhfIvVvp8kD5LUCeppfDZNlBs_Fnw4QO2sLbqIOeOjaka4qgt-_tWncXXPzhfhrjpmz1uVss7s7E8NxlZg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3bTaVnbU238jQyGsDwz8uV_YyAA92jFKtmkg7Cb-d8pql2WOW7zdxV-YpOiitKBBI0JSB2y-HoH3Gjl748vpdw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3bTaVnbU238jQyGsDwz8uV_YyAA92jFKtmkg7Cb-d8pql2WOW7zdxV-YpOiitKBBI0JSB2y-HoH3Gjl748vpdw== new file mode 100644 index 0000000..130d75f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3bTaVnbU238jQyGsDwz8uV_YyAA92jFKtmkg7Cb-d8pql2WOW7zdxV-YpOiitKBBI0JSB2y-HoH3Gjl748vpdw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3n01sFuNlffgXXqip1OjFX6n584LQnX8eNnQ-MmXJmAFUsqCnGW3BUH2nTIGvB1s0obD4vpIjedkKrIRdcTs-A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3n01sFuNlffgXXqip1OjFX6n584LQnX8eNnQ-MmXJmAFUsqCnGW3BUH2nTIGvB1s0obD4vpIjedkKrIRdcTs-A== new file mode 100644 index 0000000..7cb57a7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3n01sFuNlffgXXqip1OjFX6n584LQnX8eNnQ-MmXJmAFUsqCnGW3BUH2nTIGvB1s0obD4vpIjedkKrIRdcTs-A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3n_VCmy9UYa-NAuPKGElt49o5z2teJhv8TJo8-Ni1XWBPzkmELWEwkF8xkYZ_td0UOqLFiWgJRq5pwm-fpahkw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3n_VCmy9UYa-NAuPKGElt49o5z2teJhv8TJo8-Ni1XWBPzkmELWEwkF8xkYZ_td0UOqLFiWgJRq5pwm-fpahkw== new file mode 100644 index 0000000..7e5e50c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3n_VCmy9UYa-NAuPKGElt49o5z2teJhv8TJo8-Ni1XWBPzkmELWEwkF8xkYZ_td0UOqLFiWgJRq5pwm-fpahkw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3qRG26-hA_TJLNx-LZGQmsPJooyMtFlaKAIinvrJNpmEWpywW5Py8uxHdrmNsn9lBdWKe_hUOUBBlh2-_pYzWA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3qRG26-hA_TJLNx-LZGQmsPJooyMtFlaKAIinvrJNpmEWpywW5Py8uxHdrmNsn9lBdWKe_hUOUBBlh2-_pYzWA== new file mode 100644 index 0000000..0d47e1e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3qRG26-hA_TJLNx-LZGQmsPJooyMtFlaKAIinvrJNpmEWpywW5Py8uxHdrmNsn9lBdWKe_hUOUBBlh2-_pYzWA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3t6ZXVated_68syqvvyQ0rtkUnjGHxXYL8O5YkvzmXohmYkpvKf-K6PATsqpLZpcz0giZV0Jtzb1j4nYAj1Z9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3t6ZXVated_68syqvvyQ0rtkUnjGHxXYL8O5YkvzmXohmYkpvKf-K6PATsqpLZpcz0giZV0Jtzb1j4nYAj1Z9A== new file mode 100644 index 0000000..dc67d4e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3t6ZXVated_68syqvvyQ0rtkUnjGHxXYL8O5YkvzmXohmYkpvKf-K6PATsqpLZpcz0giZV0Jtzb1j4nYAj1Z9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3wcJSfcesqMzAzx700cak_Nx_UC6dnHnG5NHBNP9Vj3vtiHZLR1ikwaisHYzZIvsS1M9Utm9m6e9BnTYRYo19w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3wcJSfcesqMzAzx700cak_Nx_UC6dnHnG5NHBNP9Vj3vtiHZLR1ikwaisHYzZIvsS1M9Utm9m6e9BnTYRYo19w== new file mode 100644 index 0000000..4eae102 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~3wcJSfcesqMzAzx700cak_Nx_UC6dnHnG5NHBNP9Vj3vtiHZLR1ikwaisHYzZIvsS1M9Utm9m6e9BnTYRYo19w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~46BdStfwh-ErA6pMpjzSixtK2-R05RqkAU0vFSNLcnWEOXMZogPIsZXmXVdooZvlg4kPgGACLs4Qzslnbq_mRQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~46BdStfwh-ErA6pMpjzSixtK2-R05RqkAU0vFSNLcnWEOXMZogPIsZXmXVdooZvlg4kPgGACLs4Qzslnbq_mRQ== new file mode 100644 index 0000000..eaede2e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~46BdStfwh-ErA6pMpjzSixtK2-R05RqkAU0vFSNLcnWEOXMZogPIsZXmXVdooZvlg4kPgGACLs4Qzslnbq_mRQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4BD9Y_yx2dANIm3TKNo4d6B3j602kPLycojYniUqcwMb3uZpmZNE-csSfhcj1eF4UDwCr0dZNymh7u9xvSupvg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4BD9Y_yx2dANIm3TKNo4d6B3j602kPLycojYniUqcwMb3uZpmZNE-csSfhcj1eF4UDwCr0dZNymh7u9xvSupvg== new file mode 100644 index 0000000..62e5469 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4BD9Y_yx2dANIm3TKNo4d6B3j602kPLycojYniUqcwMb3uZpmZNE-csSfhcj1eF4UDwCr0dZNymh7u9xvSupvg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4Qow6gsC_3zD4-CiqYup12EVV70tE5dn58OSnTUZ-H_rkZl6kWUbsP1C2X4YWd80d8lhLK2O9Iu3Y6sZaxlxOQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4Qow6gsC_3zD4-CiqYup12EVV70tE5dn58OSnTUZ-H_rkZl6kWUbsP1C2X4YWd80d8lhLK2O9Iu3Y6sZaxlxOQ== new file mode 100644 index 0000000..57626ad Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4Qow6gsC_3zD4-CiqYup12EVV70tE5dn58OSnTUZ-H_rkZl6kWUbsP1C2X4YWd80d8lhLK2O9Iu3Y6sZaxlxOQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4UqGe2y9UCENOPgxLHbCcsho6nBOZskanVgdzZftV1ttTJxO7biFyV9iKl28UsD6cvCFS4TUINTS1M__2oJehQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4UqGe2y9UCENOPgxLHbCcsho6nBOZskanVgdzZftV1ttTJxO7biFyV9iKl28UsD6cvCFS4TUINTS1M__2oJehQ== new file mode 100644 index 0000000..d235bab Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4UqGe2y9UCENOPgxLHbCcsho6nBOZskanVgdzZftV1ttTJxO7biFyV9iKl28UsD6cvCFS4TUINTS1M__2oJehQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4cyjQzVGf1Q7mrdH1RybKbbSMdkFRkcazHcGmWoMg38ymTl8B0nCcPtAJFl9XN9TrGeXKTQX3rl8C0JU0Gbl2A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4cyjQzVGf1Q7mrdH1RybKbbSMdkFRkcazHcGmWoMg38ymTl8B0nCcPtAJFl9XN9TrGeXKTQX3rl8C0JU0Gbl2A== new file mode 100644 index 0000000..8fe252a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4cyjQzVGf1Q7mrdH1RybKbbSMdkFRkcazHcGmWoMg38ymTl8B0nCcPtAJFl9XN9TrGeXKTQX3rl8C0JU0Gbl2A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4jLkvTKUrNlvyp6tKHVhPANAJsGt4Qt901BTsHnC-hGz5T8i-zXmi6gY_y39hC1esDl9QiXnXuT0UFkUeEEYrg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4jLkvTKUrNlvyp6tKHVhPANAJsGt4Qt901BTsHnC-hGz5T8i-zXmi6gY_y39hC1esDl9QiXnXuT0UFkUeEEYrg== new file mode 100644 index 0000000..393be55 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4jLkvTKUrNlvyp6tKHVhPANAJsGt4Qt901BTsHnC-hGz5T8i-zXmi6gY_y39hC1esDl9QiXnXuT0UFkUeEEYrg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4msDU1RkvzwbYNZR3AYE_gIhGxabSiJgHVzQqZKpvjx0qpaNjdvY9LH9W41MyZ7sKzGprNyDorVkcpA6V_oC4Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4msDU1RkvzwbYNZR3AYE_gIhGxabSiJgHVzQqZKpvjx0qpaNjdvY9LH9W41MyZ7sKzGprNyDorVkcpA6V_oC4Q== new file mode 100644 index 0000000..6625826 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4msDU1RkvzwbYNZR3AYE_gIhGxabSiJgHVzQqZKpvjx0qpaNjdvY9LH9W41MyZ7sKzGprNyDorVkcpA6V_oC4Q== @@ -0,0 +1 @@ +[{"type":1,"name":"5F179CB7BB3EA4BD84DF97D65D3BF1"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4qY9cPGuGx2vx4Y3GyBmPd7sO7gXafKq-1bfBaEYqzDKsr7yzBkizSPTJP7HdnGNaK-AR9ANZPs41B2UwBWPzg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4qY9cPGuGx2vx4Y3GyBmPd7sO7gXafKq-1bfBaEYqzDKsr7yzBkizSPTJP7HdnGNaK-AR9ANZPs41B2UwBWPzg== new file mode 100644 index 0000000..580dbdf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4qY9cPGuGx2vx4Y3GyBmPd7sO7gXafKq-1bfBaEYqzDKsr7yzBkizSPTJP7HdnGNaK-AR9ANZPs41B2UwBWPzg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4qkBxKzMpUfnMCnBWKo4-fePObbhGEn5AFwOQqYpixJ3V6VC5nv2cEeVzINL-Pl1XXmq0l30B8zTDau1StFZng== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4qkBxKzMpUfnMCnBWKo4-fePObbhGEn5AFwOQqYpixJ3V6VC5nv2cEeVzINL-Pl1XXmq0l30B8zTDau1StFZng== new file mode 100644 index 0000000..34d6b9d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4qkBxKzMpUfnMCnBWKo4-fePObbhGEn5AFwOQqYpixJ3V6VC5nv2cEeVzINL-Pl1XXmq0l30B8zTDau1StFZng== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4u6hjAl7zwnI441VmiruMYAYnN-KG_HUOwz3XVmQgDndJBg5CUmoSCwsQmkwtDs36VaF5OQZdW3bOa2z90yG-Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4u6hjAl7zwnI441VmiruMYAYnN-KG_HUOwz3XVmQgDndJBg5CUmoSCwsQmkwtDs36VaF5OQZdW3bOa2z90yG-Q== new file mode 100644 index 0000000..4aad013 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4u6hjAl7zwnI441VmiruMYAYnN-KG_HUOwz3XVmQgDndJBg5CUmoSCwsQmkwtDs36VaF5OQZdW3bOa2z90yG-Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4uBbk-SkEssIzdTrZOxpD3wvMOsV0ywntwHcFVnpY1v8FNYW8uWiDFJk2MRceC8aTt_h6xEa3BzUTRsRj-dFMA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4uBbk-SkEssIzdTrZOxpD3wvMOsV0ywntwHcFVnpY1v8FNYW8uWiDFJk2MRceC8aTt_h6xEa3BzUTRsRj-dFMA== new file mode 100644 index 0000000..6bedd5f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4uBbk-SkEssIzdTrZOxpD3wvMOsV0ywntwHcFVnpY1v8FNYW8uWiDFJk2MRceC8aTt_h6xEa3BzUTRsRj-dFMA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4wGp67SlStrULf-ZZ2i_dPOzIvS7v6CrGcQPiFT8z-r7Wd7QNbvi0mMu9y31JIov9HlJJpXkCkVYez2g1Y_0ag== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4wGp67SlStrULf-ZZ2i_dPOzIvS7v6CrGcQPiFT8z-r7Wd7QNbvi0mMu9y31JIov9HlJJpXkCkVYez2g1Y_0ag== new file mode 100644 index 0000000..bc9b96b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4wGp67SlStrULf-ZZ2i_dPOzIvS7v6CrGcQPiFT8z-r7Wd7QNbvi0mMu9y31JIov9HlJJpXkCkVYez2g1Y_0ag== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4x3bnprKf_aWVyFiSqIWp2DegEN-_JEqxPR-lCBtQFgSKBUr6Uh4Li9OEOo2q9yMzdBonWJjd6sjwHUOdmNW2g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4x3bnprKf_aWVyFiSqIWp2DegEN-_JEqxPR-lCBtQFgSKBUr6Uh4Li9OEOo2q9yMzdBonWJjd6sjwHUOdmNW2g== new file mode 100644 index 0000000..78134b7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4x3bnprKf_aWVyFiSqIWp2DegEN-_JEqxPR-lCBtQFgSKBUr6Uh4Li9OEOo2q9yMzdBonWJjd6sjwHUOdmNW2g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4xKo5EnXRVfXIqd_gEe_jxhLEP1XiiYD6It80eYVrawGRozzVEvj5vDFUgkFOemvc-OxSmN5cn71cZx9o4Mb9Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4xKo5EnXRVfXIqd_gEe_jxhLEP1XiiYD6It80eYVrawGRozzVEvj5vDFUgkFOemvc-OxSmN5cn71cZx9o4Mb9Q== new file mode 100644 index 0000000..9f1254a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~4xKo5EnXRVfXIqd_gEe_jxhLEP1XiiYD6It80eYVrawGRozzVEvj5vDFUgkFOemvc-OxSmN5cn71cZx9o4Mb9Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5-lwZ_kX3e6hXeNSQ7_NkHWHY7R687rIgKw-3ObTAYgmvmEJqlNB0w4D1CA9KuVLgdN7Pex6RyXDmm0ZMx-B6w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5-lwZ_kX3e6hXeNSQ7_NkHWHY7R687rIgKw-3ObTAYgmvmEJqlNB0w4D1CA9KuVLgdN7Pex6RyXDmm0ZMx-B6w== new file mode 100644 index 0000000..ef8b8bd --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5-lwZ_kX3e6hXeNSQ7_NkHWHY7R687rIgKw-3ObTAYgmvmEJqlNB0w4D1CA9KuVLgdN7Pex6RyXDmm0ZMx-B6w== @@ -0,0 +1 @@ +[{"type":1,"name":"21076CAADC3EFA9CCE6428E3681021"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~55hIb1xDw3ot5MQ880Z-tC4HusiK46AM50sloVWtptvfZm0uxrh7k9e_tp38rOSk2j9X4IvrvW07IgqOSURACg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~55hIb1xDw3ot5MQ880Z-tC4HusiK46AM50sloVWtptvfZm0uxrh7k9e_tp38rOSk2j9X4IvrvW07IgqOSURACg== new file mode 100644 index 0000000..26e79c3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~55hIb1xDw3ot5MQ880Z-tC4HusiK46AM50sloVWtptvfZm0uxrh7k9e_tp38rOSk2j9X4IvrvW07IgqOSURACg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5BjhXHRFOo93g0jhJiK1OIwfbWbb14pd5nyfqQRcacUaaRuZP_WUPZ-LYfq3atg6ou1Wof8w7XKNH9_SRkTeBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5BjhXHRFOo93g0jhJiK1OIwfbWbb14pd5nyfqQRcacUaaRuZP_WUPZ-LYfq3atg6ou1Wof8w7XKNH9_SRkTeBA== new file mode 100644 index 0000000..47cc474 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5BjhXHRFOo93g0jhJiK1OIwfbWbb14pd5nyfqQRcacUaaRuZP_WUPZ-LYfq3atg6ou1Wof8w7XKNH9_SRkTeBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5K2yPjMcYURpRv4rAiYWYisI5LmgZh2ZGMBCEg5TGiby5FB48bcmInhSDU9ADfMZoofu1hQToCGpE96y-f7E2Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5K2yPjMcYURpRv4rAiYWYisI5LmgZh2ZGMBCEg5TGiby5FB48bcmInhSDU9ADfMZoofu1hQToCGpE96y-f7E2Q== new file mode 100644 index 0000000..df7a3c3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5K2yPjMcYURpRv4rAiYWYisI5LmgZh2ZGMBCEg5TGiby5FB48bcmInhSDU9ADfMZoofu1hQToCGpE96y-f7E2Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5LwY9oF9gx_0b-X5bk2edFeifXMbWq4f0_A0swuYwj18RO2qDFmkZTlr_MFHzMDM-JAZDhsZI1p7PS2dACLDHg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5LwY9oF9gx_0b-X5bk2edFeifXMbWq4f0_A0swuYwj18RO2qDFmkZTlr_MFHzMDM-JAZDhsZI1p7PS2dACLDHg== new file mode 100644 index 0000000..92c7a06 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5LwY9oF9gx_0b-X5bk2edFeifXMbWq4f0_A0swuYwj18RO2qDFmkZTlr_MFHzMDM-JAZDhsZI1p7PS2dACLDHg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5MX2w9cbtpC2vgffUYMY9gm6tR0LPja4NGmW7nPZ0rxnbqj3pT15lVEQzqsBlDG-_ocDMFkT1SQmgTGnVWDqnw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5MX2w9cbtpC2vgffUYMY9gm6tR0LPja4NGmW7nPZ0rxnbqj3pT15lVEQzqsBlDG-_ocDMFkT1SQmgTGnVWDqnw== new file mode 100644 index 0000000..15066d8 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5MX2w9cbtpC2vgffUYMY9gm6tR0LPja4NGmW7nPZ0rxnbqj3pT15lVEQzqsBlDG-_ocDMFkT1SQmgTGnVWDqnw== @@ -0,0 +1 @@ +[{"type":1,"name":"72C2769A8C3274A953B381118D9194"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5O0aov5_0O45t4rjUBS2dRcpLMWTg5hTzCDZjY5ofovQuUweQ5t-VwPzGtOYGAtw4qUpemvlm2b_xPT3VmNa_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5O0aov5_0O45t4rjUBS2dRcpLMWTg5hTzCDZjY5ofovQuUweQ5t-VwPzGtOYGAtw4qUpemvlm2b_xPT3VmNa_w== new file mode 100644 index 0000000..49d3062 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5O0aov5_0O45t4rjUBS2dRcpLMWTg5hTzCDZjY5ofovQuUweQ5t-VwPzGtOYGAtw4qUpemvlm2b_xPT3VmNa_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5XxkToXfYqUgq3ka07K5nUBxr6JbY5ZbfZ8HQD5_DTaPSTemqBX8HnOAVI6lXTA0VyRiUSfslnkvTfLAAYsIOw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5XxkToXfYqUgq3ka07K5nUBxr6JbY5ZbfZ8HQD5_DTaPSTemqBX8HnOAVI6lXTA0VyRiUSfslnkvTfLAAYsIOw== new file mode 100644 index 0000000..0d19eb1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5XxkToXfYqUgq3ka07K5nUBxr6JbY5ZbfZ8HQD5_DTaPSTemqBX8HnOAVI6lXTA0VyRiUSfslnkvTfLAAYsIOw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5Yx2oGOWQqa7-TDdoE0KuCZQ2yTeZHRFi_bwOTgtvqTROenm2TIKZcwh_imee0HEjxmRAQid6E2QL3UdaBDSow== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5Yx2oGOWQqa7-TDdoE0KuCZQ2yTeZHRFi_bwOTgtvqTROenm2TIKZcwh_imee0HEjxmRAQid6E2QL3UdaBDSow== new file mode 100644 index 0000000..47d5052 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5Yx2oGOWQqa7-TDdoE0KuCZQ2yTeZHRFi_bwOTgtvqTROenm2TIKZcwh_imee0HEjxmRAQid6E2QL3UdaBDSow== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5bLL6WwJH6Tlef70vtZMGxmxPJSVXIUFDPj6gNex07AfjKep3d1uEP8B92V7Bjfe6pfymCVJmZbwJFpDLHptWA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5bLL6WwJH6Tlef70vtZMGxmxPJSVXIUFDPj6gNex07AfjKep3d1uEP8B92V7Bjfe6pfymCVJmZbwJFpDLHptWA== new file mode 100644 index 0000000..284fc8a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5bLL6WwJH6Tlef70vtZMGxmxPJSVXIUFDPj6gNex07AfjKep3d1uEP8B92V7Bjfe6pfymCVJmZbwJFpDLHptWA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5eU0dnfDcK58G9lkxpLdJUdbyAJFVUFlXDYj1Cl6Os6D11dt3rxFruGpiUX1_ATwrvFXxQjjkEFB5AbL694pRQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5eU0dnfDcK58G9lkxpLdJUdbyAJFVUFlXDYj1Cl6Os6D11dt3rxFruGpiUX1_ATwrvFXxQjjkEFB5AbL694pRQ== new file mode 100644 index 0000000..92eea26 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5eU0dnfDcK58G9lkxpLdJUdbyAJFVUFlXDYj1Cl6Os6D11dt3rxFruGpiUX1_ATwrvFXxQjjkEFB5AbL694pRQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5giAcoyO4zkHcum0NqrWiisYmpKQuyb-03RIGMqG3CXzggKbKQPjSxRbzDJXq6aOgVW4PMXQkNNJTC1qin9pfA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5giAcoyO4zkHcum0NqrWiisYmpKQuyb-03RIGMqG3CXzggKbKQPjSxRbzDJXq6aOgVW4PMXQkNNJTC1qin9pfA== new file mode 100644 index 0000000..2667555 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5giAcoyO4zkHcum0NqrWiisYmpKQuyb-03RIGMqG3CXzggKbKQPjSxRbzDJXq6aOgVW4PMXQkNNJTC1qin9pfA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5le3SwtHs2glFGqXF8ShJigx3Q0-wO_gSXa_Pq8Doe1K-AmKh4KY9zBItm9-tr-RtReyc8Ifttlq5ddIKNRvpQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5le3SwtHs2glFGqXF8ShJigx3Q0-wO_gSXa_Pq8Doe1K-AmKh4KY9zBItm9-tr-RtReyc8Ifttlq5ddIKNRvpQ== new file mode 100644 index 0000000..a575169 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~5le3SwtHs2glFGqXF8ShJigx3Q0-wO_gSXa_Pq8Doe1K-AmKh4KY9zBItm9-tr-RtReyc8Ifttlq5ddIKNRvpQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~63b-GUUgVPuy8ybcLF_nwD1twHp1cHbi02Ht7OFNep4MBNTGITix8LSNjd5ma9LmbJGwzg7gQt6jqTZNyMaAaA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~63b-GUUgVPuy8ybcLF_nwD1twHp1cHbi02Ht7OFNep4MBNTGITix8LSNjd5ma9LmbJGwzg7gQt6jqTZNyMaAaA== new file mode 100644 index 0000000..b753798 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~63b-GUUgVPuy8ybcLF_nwD1twHp1cHbi02Ht7OFNep4MBNTGITix8LSNjd5ma9LmbJGwzg7gQt6jqTZNyMaAaA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~64Bvqe1sCHlJJco2WcmDtxbmvI2mLpTmmG6CmnLfNL7WfHWOuMCGgtBpzfDEqZQtmgaY_dY6sWCHMmOR0mOtCA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~64Bvqe1sCHlJJco2WcmDtxbmvI2mLpTmmG6CmnLfNL7WfHWOuMCGgtBpzfDEqZQtmgaY_dY6sWCHMmOR0mOtCA== new file mode 100644 index 0000000..6eea566 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~64Bvqe1sCHlJJco2WcmDtxbmvI2mLpTmmG6CmnLfNL7WfHWOuMCGgtBpzfDEqZQtmgaY_dY6sWCHMmOR0mOtCA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~65POgdN4vnkT9G6AVdktbfIvGDf9YiQGYswbpr4C4jKMIZyxnu7ebOaB2LZu_ZXvp1dpsC7FEpGS0bY99IQcOQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~65POgdN4vnkT9G6AVdktbfIvGDf9YiQGYswbpr4C4jKMIZyxnu7ebOaB2LZu_ZXvp1dpsC7FEpGS0bY99IQcOQ== new file mode 100644 index 0000000..03d4212 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~65POgdN4vnkT9G6AVdktbfIvGDf9YiQGYswbpr4C4jKMIZyxnu7ebOaB2LZu_ZXvp1dpsC7FEpGS0bY99IQcOQ== @@ -0,0 +1 @@ +[{"type":1,"name":"0000000000000045.tracev3"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~67n8bsOx-zd3rHC2dWkLyB6M-8SzJnEVu9DWvJAwRHb-KUZGCiE_rxcu_9VuJBi-4abgeP1iE1hgm7oo1G5xXw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~67n8bsOx-zd3rHC2dWkLyB6M-8SzJnEVu9DWvJAwRHb-KUZGCiE_rxcu_9VuJBi-4abgeP1iE1hgm7oo1G5xXw== new file mode 100644 index 0000000..06567b2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~67n8bsOx-zd3rHC2dWkLyB6M-8SzJnEVu9DWvJAwRHb-KUZGCiE_rxcu_9VuJBi-4abgeP1iE1hgm7oo1G5xXw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6DkCMaMKPIvkC28Od_o0cJ6KPObXKgHPEGS3q_-0_-pUr0G4qbG-Fi3Fs-fJWE8xeTIGfEQTT2nydt626fDY_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6DkCMaMKPIvkC28Od_o0cJ6KPObXKgHPEGS3q_-0_-pUr0G4qbG-Fi3Fs-fJWE8xeTIGfEQTT2nydt626fDY_w== new file mode 100644 index 0000000..bff8eaf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6DkCMaMKPIvkC28Od_o0cJ6KPObXKgHPEGS3q_-0_-pUr0G4qbG-Fi3Fs-fJWE8xeTIGfEQTT2nydt626fDY_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6GK32W5xHyei9AGjP3u71UFZpUOBfmiDdPoE7xLGw563h9U7B45W-ItDwG9aTKcKiY9PiyamlG7yeKyNTyBiAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6GK32W5xHyei9AGjP3u71UFZpUOBfmiDdPoE7xLGw563h9U7B45W-ItDwG9aTKcKiY9PiyamlG7yeKyNTyBiAg== new file mode 100644 index 0000000..351c1bf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6GK32W5xHyei9AGjP3u71UFZpUOBfmiDdPoE7xLGw563h9U7B45W-ItDwG9aTKcKiY9PiyamlG7yeKyNTyBiAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6Ggw2-4jnY9fouojLZB3_u1-J8LRLwXxdIGv1pqdN77ndavhPEynuEYWvAmv4TpMCR_ZIkKB2ISWawOgbpxjDA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6Ggw2-4jnY9fouojLZB3_u1-J8LRLwXxdIGv1pqdN77ndavhPEynuEYWvAmv4TpMCR_ZIkKB2ISWawOgbpxjDA== new file mode 100644 index 0000000..cb968f9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6Ggw2-4jnY9fouojLZB3_u1-J8LRLwXxdIGv1pqdN77ndavhPEynuEYWvAmv4TpMCR_ZIkKB2ISWawOgbpxjDA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6MCmcpyJuW-FWNkhEZzQDeU372c-pCm_C60Fx3SRnNa67Pgdc9imYmc9Gnj6zs5bsfwONH2cCvWQqPMd0Mndlg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6MCmcpyJuW-FWNkhEZzQDeU372c-pCm_C60Fx3SRnNa67Pgdc9imYmc9Gnj6zs5bsfwONH2cCvWQqPMd0Mndlg== new file mode 100644 index 0000000..aac7e72 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6MCmcpyJuW-FWNkhEZzQDeU372c-pCm_C60Fx3SRnNa67Pgdc9imYmc9Gnj6zs5bsfwONH2cCvWQqPMd0Mndlg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6NJoMTwY6kMn0A38UF0Rjixn-hqs77KQ8OdCNN0eEdd4VsOpCB6VvdlH4IwdJPbatztrD9yAeNlB1jjg4mO38g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6NJoMTwY6kMn0A38UF0Rjixn-hqs77KQ8OdCNN0eEdd4VsOpCB6VvdlH4IwdJPbatztrD9yAeNlB1jjg4mO38g== new file mode 100644 index 0000000..173662b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6NJoMTwY6kMn0A38UF0Rjixn-hqs77KQ8OdCNN0eEdd4VsOpCB6VvdlH4IwdJPbatztrD9yAeNlB1jjg4mO38g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6NVb_4j4adtEDqhUmey7aE1BleF013nH_4Cmrq97hJh1eG3rkc-t71alZYXHPDA7kTTYc5wamA5u7KAhLscZjg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6NVb_4j4adtEDqhUmey7aE1BleF013nH_4Cmrq97hJh1eG3rkc-t71alZYXHPDA7kTTYc5wamA5u7KAhLscZjg== new file mode 100644 index 0000000..a01b878 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6NVb_4j4adtEDqhUmey7aE1BleF013nH_4Cmrq97hJh1eG3rkc-t71alZYXHPDA7kTTYc5wamA5u7KAhLscZjg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6PlFW8fhpjZW3vF5HxIAEwJHqjEYpCDpLTAozztO0zvBn-fB1iI68qfj5kSk0hqbU-I8hAfLt1Dz34N6S_hI0w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6PlFW8fhpjZW3vF5HxIAEwJHqjEYpCDpLTAozztO0zvBn-fB1iI68qfj5kSk0hqbU-I8hAfLt1Dz34N6S_hI0w== new file mode 100644 index 0000000..6103377 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6PlFW8fhpjZW3vF5HxIAEwJHqjEYpCDpLTAozztO0zvBn-fB1iI68qfj5kSk0hqbU-I8hAfLt1Dz34N6S_hI0w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6X7ZsWgSNqppsHLCJNJJPEKgyC6-rWmkVdPO-IYL51ZGTJmSc6enHaXaf6daVp4O_XgEc-EwPqhzJ-9ags9DsQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6X7ZsWgSNqppsHLCJNJJPEKgyC6-rWmkVdPO-IYL51ZGTJmSc6enHaXaf6daVp4O_XgEc-EwPqhzJ-9ags9DsQ== new file mode 100644 index 0000000..457494b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6X7ZsWgSNqppsHLCJNJJPEKgyC6-rWmkVdPO-IYL51ZGTJmSc6enHaXaf6daVp4O_XgEc-EwPqhzJ-9ags9DsQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6ZMW8Lt_MAbBKzQf6pH5f4uyoNGtIlhyHOeHWESQ3vStH6VfAPFUxVoFUfnVmCuijlM8evZFU26PIOmHxysALg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6ZMW8Lt_MAbBKzQf6pH5f4uyoNGtIlhyHOeHWESQ3vStH6VfAPFUxVoFUfnVmCuijlM8evZFU26PIOmHxysALg== new file mode 100644 index 0000000..ad57a0e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6ZMW8Lt_MAbBKzQf6pH5f4uyoNGtIlhyHOeHWESQ3vStH6VfAPFUxVoFUfnVmCuijlM8evZFU26PIOmHxysALg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6chzCm0UD3IxktwP-Dhcq57CKMPDJi-XirKr8RGfdUGDaH92WK6_pJfC44R21PjklW97825liR3TUM9IhPSWwA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6chzCm0UD3IxktwP-Dhcq57CKMPDJi-XirKr8RGfdUGDaH92WK6_pJfC44R21PjklW97825liR3TUM9IhPSWwA== new file mode 100644 index 0000000..9f0d6cf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6chzCm0UD3IxktwP-Dhcq57CKMPDJi-XirKr8RGfdUGDaH92WK6_pJfC44R21PjklW97825liR3TUM9IhPSWwA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6fuM6r5iYpBKU5DL0JSTKInBwHi4AFfXzwYNJ41Ur3ufcuec63qNlc7AMM3TFlchr_QH-KPOYLrNQYxiWUi2kg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6fuM6r5iYpBKU5DL0JSTKInBwHi4AFfXzwYNJ41Ur3ufcuec63qNlc7AMM3TFlchr_QH-KPOYLrNQYxiWUi2kg== new file mode 100644 index 0000000..5dd3a28 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6fuM6r5iYpBKU5DL0JSTKInBwHi4AFfXzwYNJ41Ur3ufcuec63qNlc7AMM3TFlchr_QH-KPOYLrNQYxiWUi2kg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6nuUnF-ilvUPddYogAngcYUKNlvIvHnMiCPq4V956Nh1E5fiFhj7ZdDesAJXE00w078kbKOxxUsW5bQmIYMilQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6nuUnF-ilvUPddYogAngcYUKNlvIvHnMiCPq4V956Nh1E5fiFhj7ZdDesAJXE00w078kbKOxxUsW5bQmIYMilQ== new file mode 100644 index 0000000..9a96789 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6nuUnF-ilvUPddYogAngcYUKNlvIvHnMiCPq4V956Nh1E5fiFhj7ZdDesAJXE00w078kbKOxxUsW5bQmIYMilQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6qe2Ryp8VUZ2kTPCFK9SbbyjQLL8kmyHpSLlfv6F2HOVeNp1Sk0z5Tr0qHoNPryJ3FpQP8nqCpGdQAd2zAZXug== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6qe2Ryp8VUZ2kTPCFK9SbbyjQLL8kmyHpSLlfv6F2HOVeNp1Sk0z5Tr0qHoNPryJ3FpQP8nqCpGdQAd2zAZXug== new file mode 100644 index 0000000..1346a1d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6qe2Ryp8VUZ2kTPCFK9SbbyjQLL8kmyHpSLlfv6F2HOVeNp1Sk0z5Tr0qHoNPryJ3FpQP8nqCpGdQAd2zAZXug== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6rIbZDzklnjdRZUzttuPdSx90_2DN7BXP1JBzZRbKVJox8XUVogrI7L2_eqB0qqbURydu8TFKzF520NHQzXnuA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6rIbZDzklnjdRZUzttuPdSx90_2DN7BXP1JBzZRbKVJox8XUVogrI7L2_eqB0qqbURydu8TFKzF520NHQzXnuA== new file mode 100644 index 0000000..2f054d4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6rIbZDzklnjdRZUzttuPdSx90_2DN7BXP1JBzZRbKVJox8XUVogrI7L2_eqB0qqbURydu8TFKzF520NHQzXnuA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6tvWENy9dKOzLEj4Cna7scdEImmpaBm5aQm-z0wunqsTNJEuiKq-9RWHownoI2phkoEF4eiQEC_0USOiWVutuA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6tvWENy9dKOzLEj4Cna7scdEImmpaBm5aQm-z0wunqsTNJEuiKq-9RWHownoI2phkoEF4eiQEC_0USOiWVutuA== new file mode 100644 index 0000000..254aa8d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6tvWENy9dKOzLEj4Cna7scdEImmpaBm5aQm-z0wunqsTNJEuiKq-9RWHownoI2phkoEF4eiQEC_0USOiWVutuA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6xHlkvnnIxAZAl48TyVoJ9thgXU7mrppQdzk7LlcLaoFY1z8lNeBtc0qIORuBELCAAo2cUNEzkAxMc5sLMKpGg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6xHlkvnnIxAZAl48TyVoJ9thgXU7mrppQdzk7LlcLaoFY1z8lNeBtc0qIORuBELCAAo2cUNEzkAxMc5sLMKpGg== new file mode 100644 index 0000000..605a883 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~6xHlkvnnIxAZAl48TyVoJ9thgXU7mrppQdzk7LlcLaoFY1z8lNeBtc0qIORuBELCAAo2cUNEzkAxMc5sLMKpGg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~73wE651Bnl5Gq2-L4kmRS7vC3q9mel9hULzCL9TXGSM-XCqvqfYsvQ2yAKT_0O560Uwdi7D4NyychHupmHdbTQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~73wE651Bnl5Gq2-L4kmRS7vC3q9mel9hULzCL9TXGSM-XCqvqfYsvQ2yAKT_0O560Uwdi7D4NyychHupmHdbTQ== new file mode 100644 index 0000000..9ff57b8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~73wE651Bnl5Gq2-L4kmRS7vC3q9mel9hULzCL9TXGSM-XCqvqfYsvQ2yAKT_0O560Uwdi7D4NyychHupmHdbTQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~75ypQMDhbR7u5SN4xHVhEJlIUs6cXhYcHuhvyipYzovqNxDGcpPOh4j8UqM2EgUwrN9uSx8UZBMt3grYC5S7NA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~75ypQMDhbR7u5SN4xHVhEJlIUs6cXhYcHuhvyipYzovqNxDGcpPOh4j8UqM2EgUwrN9uSx8UZBMt3grYC5S7NA== new file mode 100644 index 0000000..356446a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~75ypQMDhbR7u5SN4xHVhEJlIUs6cXhYcHuhvyipYzovqNxDGcpPOh4j8UqM2EgUwrN9uSx8UZBMt3grYC5S7NA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~76_FRXiFa0cVYAJM1vkQjQaQ28b7L2PYCp-LfFfuAKXELCi-nOcf_udP_vP2hGadAaT6avv6fG4MeEapcC0SzA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~76_FRXiFa0cVYAJM1vkQjQaQ28b7L2PYCp-LfFfuAKXELCi-nOcf_udP_vP2hGadAaT6avv6fG4MeEapcC0SzA== new file mode 100644 index 0000000..7476d52 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~76_FRXiFa0cVYAJM1vkQjQaQ28b7L2PYCp-LfFfuAKXELCi-nOcf_udP_vP2hGadAaT6avv6fG4MeEapcC0SzA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7AUGyb4VDFSJlmxfhXXWJ4IWxLHGhxV7zF4-sQoipR_BYXtm72XZvBo54uN-3YFtGOIURx1LfTjzeYqJz9lelQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7AUGyb4VDFSJlmxfhXXWJ4IWxLHGhxV7zF4-sQoipR_BYXtm72XZvBo54uN-3YFtGOIURx1LfTjzeYqJz9lelQ== new file mode 100644 index 0000000..89c0c0c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7AUGyb4VDFSJlmxfhXXWJ4IWxLHGhxV7zF4-sQoipR_BYXtm72XZvBo54uN-3YFtGOIURx1LfTjzeYqJz9lelQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7LzIh0bHuEYh-O1gnO4Bk94imbpLgB6Q0LgpEzmuzYVqVYZ4XOeQn3MYa7pbvsQ3NQmrwmWLTLIwqzE34GSR5Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7LzIh0bHuEYh-O1gnO4Bk94imbpLgB6Q0LgpEzmuzYVqVYZ4XOeQn3MYa7pbvsQ3NQmrwmWLTLIwqzE34GSR5Q== new file mode 100644 index 0000000..f995cee Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7LzIh0bHuEYh-O1gnO4Bk94imbpLgB6Q0LgpEzmuzYVqVYZ4XOeQn3MYa7pbvsQ3NQmrwmWLTLIwqzE34GSR5Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7QDMB4tuMh2EJUUJl3DGBCkI3GPAYeBu8uxQVofCbVbemKhe1PbJUT145BB87qtSgW3PKbi1J-TApZMqAzFBnw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7QDMB4tuMh2EJUUJl3DGBCkI3GPAYeBu8uxQVofCbVbemKhe1PbJUT145BB87qtSgW3PKbi1J-TApZMqAzFBnw== new file mode 100644 index 0000000..c13ecaf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7QDMB4tuMh2EJUUJl3DGBCkI3GPAYeBu8uxQVofCbVbemKhe1PbJUT145BB87qtSgW3PKbi1J-TApZMqAzFBnw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7Qb7xltc9cdEBNHwv5F2jSA7AOWp1Lzk-8GALZR_MMP9amJ9TElgCEjbwSz1L64W4pqHjHitMm8q2waa9r1rcQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7Qb7xltc9cdEBNHwv5F2jSA7AOWp1Lzk-8GALZR_MMP9amJ9TElgCEjbwSz1L64W4pqHjHitMm8q2waa9r1rcQ== new file mode 100644 index 0000000..71d3ba7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7Qb7xltc9cdEBNHwv5F2jSA7AOWp1Lzk-8GALZR_MMP9amJ9TElgCEjbwSz1L64W4pqHjHitMm8q2waa9r1rcQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7_Iw0wNUT6k8xM12h6bYsYp-kGcnLYz6-NFPAv11dQ9BTsFeuq6LO1vXtKgd4fx7r4HKOh7tf9WSHgAxFZVu1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7_Iw0wNUT6k8xM12h6bYsYp-kGcnLYz6-NFPAv11dQ9BTsFeuq6LO1vXtKgd4fx7r4HKOh7tf9WSHgAxFZVu1g== new file mode 100644 index 0000000..b921d3e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7_Iw0wNUT6k8xM12h6bYsYp-kGcnLYz6-NFPAv11dQ9BTsFeuq6LO1vXtKgd4fx7r4HKOh7tf9WSHgAxFZVu1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7cw4hdpadOfBH__DjbzRSl0Bi-LbVBggOwK37AaxwmUIE-_IHHl0JGd6COHHk9OUVjDcBWQNlY9wp4DpPKYEuw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7cw4hdpadOfBH__DjbzRSl0Bi-LbVBggOwK37AaxwmUIE-_IHHl0JGd6COHHk9OUVjDcBWQNlY9wp4DpPKYEuw== new file mode 100644 index 0000000..4425f7f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7cw4hdpadOfBH__DjbzRSl0Bi-LbVBggOwK37AaxwmUIE-_IHHl0JGd6COHHk9OUVjDcBWQNlY9wp4DpPKYEuw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7cz0tCvQZqn7VJuBTzaRhe66O76HGa9VYQijcVFjs3UpOFie-1qUZz1gPQlcyfiE5Tgmq20rtMx393GckhbPpg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7cz0tCvQZqn7VJuBTzaRhe66O76HGa9VYQijcVFjs3UpOFie-1qUZz1gPQlcyfiE5Tgmq20rtMx393GckhbPpg== new file mode 100644 index 0000000..a82110b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7cz0tCvQZqn7VJuBTzaRhe66O76HGa9VYQijcVFjs3UpOFie-1qUZz1gPQlcyfiE5Tgmq20rtMx393GckhbPpg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7eNbIZ-S2YT6jatQeNiTeHI1RwOdv_9cGi3n7MjG1v3QYmYLCZuUn2cQDXrEgjspiVeqgXcSJ9DfuoRPlqov5A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7eNbIZ-S2YT6jatQeNiTeHI1RwOdv_9cGi3n7MjG1v3QYmYLCZuUn2cQDXrEgjspiVeqgXcSJ9DfuoRPlqov5A== new file mode 100644 index 0000000..e3066a4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7eNbIZ-S2YT6jatQeNiTeHI1RwOdv_9cGi3n7MjG1v3QYmYLCZuUn2cQDXrEgjspiVeqgXcSJ9DfuoRPlqov5A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7rVSrAu2lTmjScl96spZdbpmDHNx0Q-gDVlgpI-P0-tSYGhH3LMydTVRNS4ZNkMBePu4p2CY7z5C3FuWLzLOCQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7rVSrAu2lTmjScl96spZdbpmDHNx0Q-gDVlgpI-P0-tSYGhH3LMydTVRNS4ZNkMBePu4p2CY7z5C3FuWLzLOCQ== new file mode 100644 index 0000000..5adb13e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7rVSrAu2lTmjScl96spZdbpmDHNx0Q-gDVlgpI-P0-tSYGhH3LMydTVRNS4ZNkMBePu4p2CY7z5C3FuWLzLOCQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7yqaM4KR1le1n2gpG0UN_K2XlUWp-LddF84qGvk5gTCgJqxQrDXr14Rl-_Zqe1WtvA9kw7NTQ-42yZ020UNRig== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7yqaM4KR1le1n2gpG0UN_K2XlUWp-LddF84qGvk5gTCgJqxQrDXr14Rl-_Zqe1WtvA9kw7NTQ-42yZ020UNRig== new file mode 100644 index 0000000..484b74e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~7yqaM4KR1le1n2gpG0UN_K2XlUWp-LddF84qGvk5gTCgJqxQrDXr14Rl-_Zqe1WtvA9kw7NTQ-42yZ020UNRig== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8-QzYQGE5FZapNfrrbLu7hhl3B5DXSt0xZxw4Tk9lvI3FM2X_TXvWzsis4_W2zj9NatxDa_BL2GGaiF-kQXadg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8-QzYQGE5FZapNfrrbLu7hhl3B5DXSt0xZxw4Tk9lvI3FM2X_TXvWzsis4_W2zj9NatxDa_BL2GGaiF-kQXadg== new file mode 100644 index 0000000..9b3cd0d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8-QzYQGE5FZapNfrrbLu7hhl3B5DXSt0xZxw4Tk9lvI3FM2X_TXvWzsis4_W2zj9NatxDa_BL2GGaiF-kQXadg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8AvwqoB_dqRqP8Nfb69diqfUIcIew5anuJvV-PlJ_SRB_ZS6L4fa94z2ABgBxF3o20rb0M-lgdRUV30j-aqRgQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8AvwqoB_dqRqP8Nfb69diqfUIcIew5anuJvV-PlJ_SRB_ZS6L4fa94z2ABgBxF3o20rb0M-lgdRUV30j-aqRgQ== new file mode 100644 index 0000000..4f3af62 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8AvwqoB_dqRqP8Nfb69diqfUIcIew5anuJvV-PlJ_SRB_ZS6L4fa94z2ABgBxF3o20rb0M-lgdRUV30j-aqRgQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8CXnjnbqbR0HLEmEW9LNlP1RBER_Vdr0uM4perUKVppYAl4LtkQIT_Xq15PGUHFekuvCvMsoqDOVSxSiOqDc_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8CXnjnbqbR0HLEmEW9LNlP1RBER_Vdr0uM4perUKVppYAl4LtkQIT_Xq15PGUHFekuvCvMsoqDOVSxSiOqDc_A== new file mode 100644 index 0000000..9d2e35a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8CXnjnbqbR0HLEmEW9LNlP1RBER_Vdr0uM4perUKVppYAl4LtkQIT_Xq15PGUHFekuvCvMsoqDOVSxSiOqDc_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8CXznNy5DddV4wg2F6UEqVXEPQ7tZLB_W8zvyVXtJwZIczCh45nLqDjlXX6c6rBUrLi2rPPklwMYxEFh9e2_Ig== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8CXznNy5DddV4wg2F6UEqVXEPQ7tZLB_W8zvyVXtJwZIczCh45nLqDjlXX6c6rBUrLi2rPPklwMYxEFh9e2_Ig== new file mode 100644 index 0000000..69f2f49 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8CXznNy5DddV4wg2F6UEqVXEPQ7tZLB_W8zvyVXtJwZIczCh45nLqDjlXX6c6rBUrLi2rPPklwMYxEFh9e2_Ig== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8H5UKernTz984It1DmuA2JZtsteKCieZneN9o_o-iz2XIyKl4ybU08ywLZA6xiHeWq7YDhPUmuqH-Xg38Z1yWg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8H5UKernTz984It1DmuA2JZtsteKCieZneN9o_o-iz2XIyKl4ybU08ywLZA6xiHeWq7YDhPUmuqH-Xg38Z1yWg== new file mode 100644 index 0000000..73b8ddf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8H5UKernTz984It1DmuA2JZtsteKCieZneN9o_o-iz2XIyKl4ybU08ywLZA6xiHeWq7YDhPUmuqH-Xg38Z1yWg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8PCh1xg-Mbm3-sXpV5DvVCyOI2YaEzVUGESfCzoF49s3eCUuMWNuLgVt8Z_FGUFfWTsNrMixQ_bhevylLIwJmw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8PCh1xg-Mbm3-sXpV5DvVCyOI2YaEzVUGESfCzoF49s3eCUuMWNuLgVt8Z_FGUFfWTsNrMixQ_bhevylLIwJmw== new file mode 100644 index 0000000..4dfcd7b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8PCh1xg-Mbm3-sXpV5DvVCyOI2YaEzVUGESfCzoF49s3eCUuMWNuLgVt8Z_FGUFfWTsNrMixQ_bhevylLIwJmw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8Qx3N_eO9HMQdFg0BxY5qLoTEVUn0pXcPIqF2PtTeJB1TuCxkENL3TwNA7rOZlXDQRyDKPryd7ZM43lrcYXQPA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8Qx3N_eO9HMQdFg0BxY5qLoTEVUn0pXcPIqF2PtTeJB1TuCxkENL3TwNA7rOZlXDQRyDKPryd7ZM43lrcYXQPA== new file mode 100644 index 0000000..d9fb332 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8Qx3N_eO9HMQdFg0BxY5qLoTEVUn0pXcPIqF2PtTeJB1TuCxkENL3TwNA7rOZlXDQRyDKPryd7ZM43lrcYXQPA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8Slm7ffix0MnXSf3g5AvW8WoAxu9X7hbuH7olm3boMA9AxN-AR7_yXZ1tcLyRxvluQdyrLYBynOyNpVrvsv6ig== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8Slm7ffix0MnXSf3g5AvW8WoAxu9X7hbuH7olm3boMA9AxN-AR7_yXZ1tcLyRxvluQdyrLYBynOyNpVrvsv6ig== new file mode 100644 index 0000000..ada5464 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8Slm7ffix0MnXSf3g5AvW8WoAxu9X7hbuH7olm3boMA9AxN-AR7_yXZ1tcLyRxvluQdyrLYBynOyNpVrvsv6ig== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8TqWj1JnLI14tgYPLriZR2V-3l74PpoXbcnFRZBABcZ8S9pw33gDVkssi5f1XZm_eQlNdvH7l_X9dpF-nhiEqQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8TqWj1JnLI14tgYPLriZR2V-3l74PpoXbcnFRZBABcZ8S9pw33gDVkssi5f1XZm_eQlNdvH7l_X9dpF-nhiEqQ== new file mode 100644 index 0000000..603b9ff Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8TqWj1JnLI14tgYPLriZR2V-3l74PpoXbcnFRZBABcZ8S9pw33gDVkssi5f1XZm_eQlNdvH7l_X9dpF-nhiEqQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8eUPwn_eTf-0KF0MD79ZMWTBTU-z6mRZgG0XDUia2Qg5zAUpJj3xZA1px-U36WjOVoxe5ZFePrWmp3hFUt3Sng== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8eUPwn_eTf-0KF0MD79ZMWTBTU-z6mRZgG0XDUia2Qg5zAUpJj3xZA1px-U36WjOVoxe5ZFePrWmp3hFUt3Sng== new file mode 100644 index 0000000..9df10f6 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8eUPwn_eTf-0KF0MD79ZMWTBTU-z6mRZgG0XDUia2Qg5zAUpJj3xZA1px-U36WjOVoxe5ZFePrWmp3hFUt3Sng== @@ -0,0 +1 @@ +[{"type":1,"name":"AB967D208A313EA46FD0C374AAD602"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8i8MQstICwCJgnjvBlsuSLNrpXMPsegwwTikVW7GkdridlHr84lvqmJm19uvy1zNZlCZxs8Ce-z7rNXQzjLC6A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8i8MQstICwCJgnjvBlsuSLNrpXMPsegwwTikVW7GkdridlHr84lvqmJm19uvy1zNZlCZxs8Ce-z7rNXQzjLC6A== new file mode 100644 index 0000000..f2614d0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8i8MQstICwCJgnjvBlsuSLNrpXMPsegwwTikVW7GkdridlHr84lvqmJm19uvy1zNZlCZxs8Ce-z7rNXQzjLC6A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8rlJb1TdvpewXWMkRijn-K8MCKj2IdEJgcjKjcBYV2VeAcxP6j8zgTW7DKVjXHBU-YxlP44Mpuy1HrGP0DO-Hg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8rlJb1TdvpewXWMkRijn-K8MCKj2IdEJgcjKjcBYV2VeAcxP6j8zgTW7DKVjXHBU-YxlP44Mpuy1HrGP0DO-Hg== new file mode 100644 index 0000000..7000510 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8rlJb1TdvpewXWMkRijn-K8MCKj2IdEJgcjKjcBYV2VeAcxP6j8zgTW7DKVjXHBU-YxlP44Mpuy1HrGP0DO-Hg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8sMtUpxhRKgswx2lOMHr9ptgrwJo7tIKzlIkVGd0zsVibpHupr26owqH3-qgiwsGPdZ1nBbrzRpIFhIQLKRa8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8sMtUpxhRKgswx2lOMHr9ptgrwJo7tIKzlIkVGd0zsVibpHupr26owqH3-qgiwsGPdZ1nBbrzRpIFhIQLKRa8Q== new file mode 100644 index 0000000..2e50297 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8sMtUpxhRKgswx2lOMHr9ptgrwJo7tIKzlIkVGd0zsVibpHupr26owqH3-qgiwsGPdZ1nBbrzRpIFhIQLKRa8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8svHvbL0eX286lHJQhQA9pHKZcTAhEQ3PATAIsMoyT_GS3fPjOxX4adIkRyF6lMWhOvKYgmHeEwhaiVAVVLOZw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8svHvbL0eX286lHJQhQA9pHKZcTAhEQ3PATAIsMoyT_GS3fPjOxX4adIkRyF6lMWhOvKYgmHeEwhaiVAVVLOZw== new file mode 100644 index 0000000..9411e60 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8svHvbL0eX286lHJQhQA9pHKZcTAhEQ3PATAIsMoyT_GS3fPjOxX4adIkRyF6lMWhOvKYgmHeEwhaiVAVVLOZw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8twyqx-l1Cb2ac0rbG6Nj6c8zvVJwcFsnhQndIYIcWwry1fNo3s2iUpbhpu4MmCSMF3BONMH9f8DvLOepTX_FA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8twyqx-l1Cb2ac0rbG6Nj6c8zvVJwcFsnhQndIYIcWwry1fNo3s2iUpbhpu4MmCSMF3BONMH9f8DvLOepTX_FA== new file mode 100644 index 0000000..c9c011b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8twyqx-l1Cb2ac0rbG6Nj6c8zvVJwcFsnhQndIYIcWwry1fNo3s2iUpbhpu4MmCSMF3BONMH9f8DvLOepTX_FA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8vd-028OZ4lemZGhKGKcrm8CQuVfAeITn_AfY2w-PcIXBLH1rFyxFcriCiZ1B2KUGBU_EHCY2fty5lbwkvAUTQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8vd-028OZ4lemZGhKGKcrm8CQuVfAeITn_AfY2w-PcIXBLH1rFyxFcriCiZ1B2KUGBU_EHCY2fty5lbwkvAUTQ== new file mode 100644 index 0000000..9dbc898 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8vd-028OZ4lemZGhKGKcrm8CQuVfAeITn_AfY2w-PcIXBLH1rFyxFcriCiZ1B2KUGBU_EHCY2fty5lbwkvAUTQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8vqE63zCsSS91At9iHYolSrAmnlV19xSaQw8xB_MDxKV3rZqgknyzYy19j8QpzZXatCRlsy263roGsC6-tYajw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8vqE63zCsSS91At9iHYolSrAmnlV19xSaQw8xB_MDxKV3rZqgknyzYy19j8QpzZXatCRlsy263roGsC6-tYajw== new file mode 100644 index 0000000..4c5b696 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8vqE63zCsSS91At9iHYolSrAmnlV19xSaQw8xB_MDxKV3rZqgknyzYy19j8QpzZXatCRlsy263roGsC6-tYajw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8wFhrg7oRz4OakqnpVgp8HS841Te2hGoQzjUW-0b0A_dFnwFZbnIc5kSyZKtXBrS1U3F58OtEoP7stIvyTjjHQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8wFhrg7oRz4OakqnpVgp8HS841Te2hGoQzjUW-0b0A_dFnwFZbnIc5kSyZKtXBrS1U3F58OtEoP7stIvyTjjHQ== new file mode 100644 index 0000000..021c1ce Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~8wFhrg7oRz4OakqnpVgp8HS841Te2hGoQzjUW-0b0A_dFnwFZbnIc5kSyZKtXBrS1U3F58OtEoP7stIvyTjjHQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9-zw4ixiRMXyD2M-AEe7jiK9ph0HFiGoFs81PWHYNkVeWnlwmhwcE469klRIRfeRKZtz9VPvBjXRg7OTBQET8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9-zw4ixiRMXyD2M-AEe7jiK9ph0HFiGoFs81PWHYNkVeWnlwmhwcE469klRIRfeRKZtz9VPvBjXRg7OTBQET8Q== new file mode 100644 index 0000000..58da27b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9-zw4ixiRMXyD2M-AEe7jiK9ph0HFiGoFs81PWHYNkVeWnlwmhwcE469klRIRfeRKZtz9VPvBjXRg7OTBQET8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~90wq67TgWUSzNH4I1h4TOC8NMy7aacOVrYKl6qMT6xhHiGICXajM32o8VvX-Ekenw35XKC1VZJ7fx3GMpgGiSg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~90wq67TgWUSzNH4I1h4TOC8NMy7aacOVrYKl6qMT6xhHiGICXajM32o8VvX-Ekenw35XKC1VZJ7fx3GMpgGiSg== new file mode 100644 index 0000000..cb09df6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~90wq67TgWUSzNH4I1h4TOC8NMy7aacOVrYKl6qMT6xhHiGICXajM32o8VvX-Ekenw35XKC1VZJ7fx3GMpgGiSg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~93UkbO7ZaBesXdHxgh4qjAQJYcTIKOfDpySPuBDgdfhpr3dss_ylFnKxrKRd56mwMDGnctC6wf6crkhCLNKjnw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~93UkbO7ZaBesXdHxgh4qjAQJYcTIKOfDpySPuBDgdfhpr3dss_ylFnKxrKRd56mwMDGnctC6wf6crkhCLNKjnw== new file mode 100644 index 0000000..91990dc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~93UkbO7ZaBesXdHxgh4qjAQJYcTIKOfDpySPuBDgdfhpr3dss_ylFnKxrKRd56mwMDGnctC6wf6crkhCLNKjnw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~93oJmfCg3749DoRCUHjWESrbpZG5dITGFjAGtVZP6NHVRGOo0f3f71qXpY2ssYcebHO1MI_IoOnqA2H9iyFKyg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~93oJmfCg3749DoRCUHjWESrbpZG5dITGFjAGtVZP6NHVRGOo0f3f71qXpY2ssYcebHO1MI_IoOnqA2H9iyFKyg== new file mode 100644 index 0000000..99f1d36 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~93oJmfCg3749DoRCUHjWESrbpZG5dITGFjAGtVZP6NHVRGOo0f3f71qXpY2ssYcebHO1MI_IoOnqA2H9iyFKyg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~97XcSlErc8ShP3ykSAk-G8F4Zqi3T-_emOYFhV2YLz7hy1KMKjOj9KF6sBLUDqKbl88EnGwNbT6d2wFxCgDFNQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~97XcSlErc8ShP3ykSAk-G8F4Zqi3T-_emOYFhV2YLz7hy1KMKjOj9KF6sBLUDqKbl88EnGwNbT6d2wFxCgDFNQ== new file mode 100644 index 0000000..1fe65da Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~97XcSlErc8ShP3ykSAk-G8F4Zqi3T-_emOYFhV2YLz7hy1KMKjOj9KF6sBLUDqKbl88EnGwNbT6d2wFxCgDFNQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~98bFpc8HCMHzIKJ6BUt92vxogx81m1z1gCUOFVNvajsit7vgJaMw7HvsTACOBRlxCfrUOPFh5cIdpK2t9n-Dpg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~98bFpc8HCMHzIKJ6BUt92vxogx81m1z1gCUOFVNvajsit7vgJaMw7HvsTACOBRlxCfrUOPFh5cIdpK2t9n-Dpg== new file mode 100644 index 0000000..fc474b2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~98bFpc8HCMHzIKJ6BUt92vxogx81m1z1gCUOFVNvajsit7vgJaMw7HvsTACOBRlxCfrUOPFh5cIdpK2t9n-Dpg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~98jQZzq4K2esVRcqV3hkUOOUhSzjWmxckPdXXZZ2_ikdSh0INYb6uQFz35gEJe7F1V7bau3_YuIoOFMp7TXJWg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~98jQZzq4K2esVRcqV3hkUOOUhSzjWmxckPdXXZZ2_ikdSh0INYb6uQFz35gEJe7F1V7bau3_YuIoOFMp7TXJWg== new file mode 100644 index 0000000..02bdc24 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~98jQZzq4K2esVRcqV3hkUOOUhSzjWmxckPdXXZZ2_ikdSh0INYb6uQFz35gEJe7F1V7bau3_YuIoOFMp7TXJWg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9AAxBD2ZjMz27-fhuhuD5LAPPR-ivJmE7qYxXa3pFDY9Wim9gnYC7UoG2ThOxtq-MSCYMGoClwViXMGyb0Ix8A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9AAxBD2ZjMz27-fhuhuD5LAPPR-ivJmE7qYxXa3pFDY9Wim9gnYC7UoG2ThOxtq-MSCYMGoClwViXMGyb0Ix8A== new file mode 100644 index 0000000..724c986 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9AAxBD2ZjMz27-fhuhuD5LAPPR-ivJmE7qYxXa3pFDY9Wim9gnYC7UoG2ThOxtq-MSCYMGoClwViXMGyb0Ix8A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9Fak13FtGTSdk9ngUfDO9Shd-WDuz-JYYK3-_rUR9OMeIlkk9brVgP7gq0IsIYaqklfusgfbLx_38K7emtOc9w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9Fak13FtGTSdk9ngUfDO9Shd-WDuz-JYYK3-_rUR9OMeIlkk9brVgP7gq0IsIYaqklfusgfbLx_38K7emtOc9w== new file mode 100644 index 0000000..5870565 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9Fak13FtGTSdk9ngUfDO9Shd-WDuz-JYYK3-_rUR9OMeIlkk9brVgP7gq0IsIYaqklfusgfbLx_38K7emtOc9w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9Ku0A_wRJaUf_vvaUKb6jmWHHov0lRElf96sQc7jvlNzELr-xBeHY0gpSyMm-SBz_rH7Pu9YFHJU50HL3JO-uw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9Ku0A_wRJaUf_vvaUKb6jmWHHov0lRElf96sQc7jvlNzELr-xBeHY0gpSyMm-SBz_rH7Pu9YFHJU50HL3JO-uw== new file mode 100644 index 0000000..ff61f08 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9Ku0A_wRJaUf_vvaUKb6jmWHHov0lRElf96sQc7jvlNzELr-xBeHY0gpSyMm-SBz_rH7Pu9YFHJU50HL3JO-uw== @@ -0,0 +1 @@ +[{"type":1,"name":"testmanagerd.log"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9LhlTTjBW7PVHJObIvzSN5eZfOK6mpb2ba4vdiXVl0o4gk9p1befEAw0JAm1knv3e-5cL5PaHIFgspZEOxac1w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9LhlTTjBW7PVHJObIvzSN5eZfOK6mpb2ba4vdiXVl0o4gk9p1befEAw0JAm1knv3e-5cL5PaHIFgspZEOxac1w== new file mode 100644 index 0000000..aba8475 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9LhlTTjBW7PVHJObIvzSN5eZfOK6mpb2ba4vdiXVl0o4gk9p1befEAw0JAm1knv3e-5cL5PaHIFgspZEOxac1w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9O8ijNLHQ_RZSqjQCZPq3-gsMmFagg3QiZG56JQvJHRa1PH-RtigYOVR794YZeyE8q1oY9kyEU69dSfd4RZ45g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9O8ijNLHQ_RZSqjQCZPq3-gsMmFagg3QiZG56JQvJHRa1PH-RtigYOVR794YZeyE8q1oY9kyEU69dSfd4RZ45g== new file mode 100644 index 0000000..ecf0889 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9O8ijNLHQ_RZSqjQCZPq3-gsMmFagg3QiZG56JQvJHRa1PH-RtigYOVR794YZeyE8q1oY9kyEU69dSfd4RZ45g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9OV_sc3ucjknll4RIhtiP3sVpqe2gydixDmsXNV_9SUi52ZOvV_EbmZgfVuPY17R8oh6CTdAgufcYqjlxgzmmA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9OV_sc3ucjknll4RIhtiP3sVpqe2gydixDmsXNV_9SUi52ZOvV_EbmZgfVuPY17R8oh6CTdAgufcYqjlxgzmmA== new file mode 100644 index 0000000..2a41b71 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9OV_sc3ucjknll4RIhtiP3sVpqe2gydixDmsXNV_9SUi52ZOvV_EbmZgfVuPY17R8oh6CTdAgufcYqjlxgzmmA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9Q0eQRJCRzmCgJyiH85V66wEdiAk1VZRPTrAZqlcUkOrSwA84jXCdaVAd9A9BQdZqGZfyMF_VmF1Dnh9HKCFgw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9Q0eQRJCRzmCgJyiH85V66wEdiAk1VZRPTrAZqlcUkOrSwA84jXCdaVAd9A9BQdZqGZfyMF_VmF1Dnh9HKCFgw== new file mode 100644 index 0000000..1b02d96 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9Q0eQRJCRzmCgJyiH85V66wEdiAk1VZRPTrAZqlcUkOrSwA84jXCdaVAd9A9BQdZqGZfyMF_VmF1Dnh9HKCFgw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9SHnzbghRuDZzSM5zkASQkT0wQIL4r8MQKTL8qB5QaLbOLzsNpdaZSFUuB7_LQpabk-DVXVTG4P4tLm0YzMrwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9SHnzbghRuDZzSM5zkASQkT0wQIL4r8MQKTL8qB5QaLbOLzsNpdaZSFUuB7_LQpabk-DVXVTG4P4tLm0YzMrwg== new file mode 100644 index 0000000..1ac054a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9SHnzbghRuDZzSM5zkASQkT0wQIL4r8MQKTL8qB5QaLbOLzsNpdaZSFUuB7_LQpabk-DVXVTG4P4tLm0YzMrwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9UAxB7fG1bVjUA6Q1BvU7dqt1q9vlR9MofgButBwIY-nXSz7ZzEH_WPNIOSvmdoLG0vZEMn-stc__e1yCneOww== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9UAxB7fG1bVjUA6Q1BvU7dqt1q9vlR9MofgButBwIY-nXSz7ZzEH_WPNIOSvmdoLG0vZEMn-stc__e1yCneOww== new file mode 100644 index 0000000..0dd59ee Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9UAxB7fG1bVjUA6Q1BvU7dqt1q9vlR9MofgButBwIY-nXSz7ZzEH_WPNIOSvmdoLG0vZEMn-stc__e1yCneOww== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9a6AGkH3-8RFV4aqNifT2YBQ62hAcMkYGq7qWyQzFgBgi9k8tYVlKSCk_R7EDqMTNSrSXuUN15J8sIB_-ksA0g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9a6AGkH3-8RFV4aqNifT2YBQ62hAcMkYGq7qWyQzFgBgi9k8tYVlKSCk_R7EDqMTNSrSXuUN15J8sIB_-ksA0g== new file mode 100644 index 0000000..8bb4654 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9a6AGkH3-8RFV4aqNifT2YBQ62hAcMkYGq7qWyQzFgBgi9k8tYVlKSCk_R7EDqMTNSrSXuUN15J8sIB_-ksA0g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9hpe3DAgvJF0NmDWclmbqpPA0idZi8LIFLnZuqnEKYNgWe6a1ZkPQG8rGWvfzipI1MU1aEe31NiIu4gPf7yzDw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9hpe3DAgvJF0NmDWclmbqpPA0idZi8LIFLnZuqnEKYNgWe6a1ZkPQG8rGWvfzipI1MU1aEe31NiIu4gPf7yzDw== new file mode 100644 index 0000000..14bb1f3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9hpe3DAgvJF0NmDWclmbqpPA0idZi8LIFLnZuqnEKYNgWe6a1ZkPQG8rGWvfzipI1MU1aEe31NiIu4gPf7yzDw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9irOSIaC5k04TW-tzMJoh2X2bYQoEc50tI9VIaDmdJnHhkfOJ_Fx26Bou5UC0rOA3LdlS_M-7JqjtE3Kt5SfZA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9irOSIaC5k04TW-tzMJoh2X2bYQoEc50tI9VIaDmdJnHhkfOJ_Fx26Bou5UC0rOA3LdlS_M-7JqjtE3Kt5SfZA== new file mode 100644 index 0000000..311b8bb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9irOSIaC5k04TW-tzMJoh2X2bYQoEc50tI9VIaDmdJnHhkfOJ_Fx26Bou5UC0rOA3LdlS_M-7JqjtE3Kt5SfZA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9kTkUDra-L1vEzO3tnLuB-gQx1Mmx5snNbK6NAIbzGpIBTfQI5QowRRVzPZKiy6SN6JJzCSID2rMDqQpYIOoQw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9kTkUDra-L1vEzO3tnLuB-gQx1Mmx5snNbK6NAIbzGpIBTfQI5QowRRVzPZKiy6SN6JJzCSID2rMDqQpYIOoQw== new file mode 100644 index 0000000..d378cab Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9kTkUDra-L1vEzO3tnLuB-gQx1Mmx5snNbK6NAIbzGpIBTfQI5QowRRVzPZKiy6SN6JJzCSID2rMDqQpYIOoQw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9uN4ZMUk3sidanSsWvHegt0rzMeAOve4GUZJXAqNDdTCdpcskhgRhP21alloqQiFftN0STT7RnHIFls5PQNnWQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9uN4ZMUk3sidanSsWvHegt0rzMeAOve4GUZJXAqNDdTCdpcskhgRhP21alloqQiFftN0STT7RnHIFls5PQNnWQ== new file mode 100644 index 0000000..38101ae Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9uN4ZMUk3sidanSsWvHegt0rzMeAOve4GUZJXAqNDdTCdpcskhgRhP21alloqQiFftN0STT7RnHIFls5PQNnWQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9ugc0Qhb38n1sSEyfFWlAa6s8pMf5P3fVTZX-yJWxPQnIssIVRp75zCOuYfSWHG9xv9WNzxTFclUVNfokF5l-w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9ugc0Qhb38n1sSEyfFWlAa6s8pMf5P3fVTZX-yJWxPQnIssIVRp75zCOuYfSWHG9xv9WNzxTFclUVNfokF5l-w== new file mode 100644 index 0000000..b3a49d1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9ugc0Qhb38n1sSEyfFWlAa6s8pMf5P3fVTZX-yJWxPQnIssIVRp75zCOuYfSWHG9xv9WNzxTFclUVNfokF5l-w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9xJVGG4HoXnj5xjnYj8tkWWm4ny2rr8WeLyHPNnEghHxnAvGFDUVccFUDv7SxMk5SKtdnTs4ESOuSJdsdrwoOA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9xJVGG4HoXnj5xjnYj8tkWWm4ny2rr8WeLyHPNnEghHxnAvGFDUVccFUDv7SxMk5SKtdnTs4ESOuSJdsdrwoOA== new file mode 100644 index 0000000..ee2957a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~9xJVGG4HoXnj5xjnYj8tkWWm4ny2rr8WeLyHPNnEghHxnAvGFDUVccFUDv7SxMk5SKtdnTs4ESOuSJdsdrwoOA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~A1jI_k71Slh4KhcBNNkXHmdXg3-cMBTOPGYpf0PdQsOYF4mMeq8eqREYy_WWNBD3u0s8w53hI0An7hAFpDoJHw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~A1jI_k71Slh4KhcBNNkXHmdXg3-cMBTOPGYpf0PdQsOYF4mMeq8eqREYy_WWNBD3u0s8w53hI0An7hAFpDoJHw== new file mode 100644 index 0000000..4c5d80a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~A1jI_k71Slh4KhcBNNkXHmdXg3-cMBTOPGYpf0PdQsOYF4mMeq8eqREYy_WWNBD3u0s8w53hI0An7hAFpDoJHw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~A4YcN4syXepALlAKUpIQReB_37C7PIim43fgoChXOjPhKOt8h9isFRY4a0ja0ckjrOIuw3nAIibm9Ne8dlCq0w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~A4YcN4syXepALlAKUpIQReB_37C7PIim43fgoChXOjPhKOt8h9isFRY4a0ja0ckjrOIuw3nAIibm9Ne8dlCq0w== new file mode 100644 index 0000000..63cddd8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~A4YcN4syXepALlAKUpIQReB_37C7PIim43fgoChXOjPhKOt8h9isFRY4a0ja0ckjrOIuw3nAIibm9Ne8dlCq0w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~A60rNSRgTRAJZ7KSIrZyQUcWVFZYYFhC4utYeJRJZcfD1CCazXOa0a_MXbCANZ_HbCXotn1Hfsr4xObhxqoStg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~A60rNSRgTRAJZ7KSIrZyQUcWVFZYYFhC4utYeJRJZcfD1CCazXOa0a_MXbCANZ_HbCXotn1Hfsr4xObhxqoStg== new file mode 100644 index 0000000..f0ea294 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~A60rNSRgTRAJZ7KSIrZyQUcWVFZYYFhC4utYeJRJZcfD1CCazXOa0a_MXbCANZ_HbCXotn1Hfsr4xObhxqoStg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~A6bdF-bYqKoyUh76aYg8sw_z2_2qhnpzXNnBHmYZNyAuFfaGqa0gAlwmiTPcIf4iptXEqQsM0PNaDEek5aLz1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~A6bdF-bYqKoyUh76aYg8sw_z2_2qhnpzXNnBHmYZNyAuFfaGqa0gAlwmiTPcIf4iptXEqQsM0PNaDEek5aLz1g== new file mode 100644 index 0000000..92dd628 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~A6bdF-bYqKoyUh76aYg8sw_z2_2qhnpzXNnBHmYZNyAuFfaGqa0gAlwmiTPcIf4iptXEqQsM0PNaDEek5aLz1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AALtV40_ssMqXtU1pSm8dA2ZL-6jYTpq7DVx6EYqBICBC5ZN5gpQmzIEtwAt1xdiSQudF5iUS1Tw77Py1hPZyw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AALtV40_ssMqXtU1pSm8dA2ZL-6jYTpq7DVx6EYqBICBC5ZN5gpQmzIEtwAt1xdiSQudF5iUS1Tw77Py1hPZyw== new file mode 100644 index 0000000..0f84ae0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AALtV40_ssMqXtU1pSm8dA2ZL-6jYTpq7DVx6EYqBICBC5ZN5gpQmzIEtwAt1xdiSQudF5iUS1Tw77Py1hPZyw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AB3s0_xk8uzOgJaD9q8ZDMhypU9t03YgDUgEL0-g3XZy9RsKLUNhd5oYUOPthcrknKpm51EmczlaS6PAydbQyQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AB3s0_xk8uzOgJaD9q8ZDMhypU9t03YgDUgEL0-g3XZy9RsKLUNhd5oYUOPthcrknKpm51EmczlaS6PAydbQyQ== new file mode 100644 index 0000000..0a608fd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AB3s0_xk8uzOgJaD9q8ZDMhypU9t03YgDUgEL0-g3XZy9RsKLUNhd5oYUOPthcrknKpm51EmczlaS6PAydbQyQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ABaLJG5z-hE0nhThzFXiMUS31Cik-g9Hp--Sc39xKRTyAW4ZAsi1OmF3mOAY9oIPhECQl88lbiihofmyELuCNA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ABaLJG5z-hE0nhThzFXiMUS31Cik-g9Hp--Sc39xKRTyAW4ZAsi1OmF3mOAY9oIPhECQl88lbiihofmyELuCNA== new file mode 100644 index 0000000..dfd9f2f --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ABaLJG5z-hE0nhThzFXiMUS31Cik-g9Hp--Sc39xKRTyAW4ZAsi1OmF3mOAY9oIPhECQl88lbiihofmyELuCNA== @@ -0,0 +1 @@ +[{"type":1,"name":"16EE6BDE05340E9A03C498EFE1FB26"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AIolazpHiBaFR2pSXTSiArekEi-w3x4H20ppjvq9RKDurgt8OngeFNElRdKbtTT5LZkGoAOH8cbbWxmWf8I1gQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AIolazpHiBaFR2pSXTSiArekEi-w3x4H20ppjvq9RKDurgt8OngeFNElRdKbtTT5LZkGoAOH8cbbWxmWf8I1gQ== new file mode 100644 index 0000000..d591646 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AIolazpHiBaFR2pSXTSiArekEi-w3x4H20ppjvq9RKDurgt8OngeFNElRdKbtTT5LZkGoAOH8cbbWxmWf8I1gQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AK36dcfJFlHHPVtBP63llUtl-aah0WZNTp5bf9ikQJokeMCadC2sz1roJzHwR_neOb9GTjalwO-Kiz1w9zP8hA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AK36dcfJFlHHPVtBP63llUtl-aah0WZNTp5bf9ikQJokeMCadC2sz1roJzHwR_neOb9GTjalwO-Kiz1w9zP8hA== new file mode 100644 index 0000000..4f5e411 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AK36dcfJFlHHPVtBP63llUtl-aah0WZNTp5bf9ikQJokeMCadC2sz1roJzHwR_neOb9GTjalwO-Kiz1w9zP8hA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ALKw7SU6ZakVKERJlwV6V8U6swaykujzt6J_lbYijmuRnho0uKzkvEP3DryX84yxrJHZR_RyEgUR-tpnYMmJ_Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ALKw7SU6ZakVKERJlwV6V8U6swaykujzt6J_lbYijmuRnho0uKzkvEP3DryX84yxrJHZR_RyEgUR-tpnYMmJ_Q== new file mode 100644 index 0000000..36fcb8b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ALKw7SU6ZakVKERJlwV6V8U6swaykujzt6J_lbYijmuRnho0uKzkvEP3DryX84yxrJHZR_RyEgUR-tpnYMmJ_Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ANRfILEESLFUmiq6gzlLJENdz8RyLtLukQtqNMcrLH1x-v9zjCVi-VFNQKuNOrrQEivdJeRVUv_A8ZGDoSnOcA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ANRfILEESLFUmiq6gzlLJENdz8RyLtLukQtqNMcrLH1x-v9zjCVi-VFNQKuNOrrQEivdJeRVUv_A8ZGDoSnOcA== new file mode 100644 index 0000000..9057832 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ANRfILEESLFUmiq6gzlLJENdz8RyLtLukQtqNMcrLH1x-v9zjCVi-VFNQKuNOrrQEivdJeRVUv_A8ZGDoSnOcA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AUd1Q33azwLwFWCEp6WTxS_9rXksl5Xdeu91wQCIClvitxl_Q5CET9vMvohmhON03AX2_mcteDckBsV83kPsdw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AUd1Q33azwLwFWCEp6WTxS_9rXksl5Xdeu91wQCIClvitxl_Q5CET9vMvohmhON03AX2_mcteDckBsV83kPsdw== new file mode 100644 index 0000000..354424d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AUd1Q33azwLwFWCEp6WTxS_9rXksl5Xdeu91wQCIClvitxl_Q5CET9vMvohmhON03AX2_mcteDckBsV83kPsdw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AV7a149U4Mn5lordeLaUJ7B_0aVNLrpcL3PXFsUk6k_yEJ6NLXqvl20gevuQ58VzgCXpO1THFYc4m1lcVjen2Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AV7a149U4Mn5lordeLaUJ7B_0aVNLrpcL3PXFsUk6k_yEJ6NLXqvl20gevuQ58VzgCXpO1THFYc4m1lcVjen2Q== new file mode 100644 index 0000000..8269888 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AV7a149U4Mn5lordeLaUJ7B_0aVNLrpcL3PXFsUk6k_yEJ6NLXqvl20gevuQ58VzgCXpO1THFYc4m1lcVjen2Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AZpulhWoNLdSouHyDrjiz3ItN6YBEri52xNmDj8FSXir8zD4ekqiAYaWKk7obZ-bQ3UgomHt_YA4cHWlfYoO2A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AZpulhWoNLdSouHyDrjiz3ItN6YBEri52xNmDj8FSXir8zD4ekqiAYaWKk7obZ-bQ3UgomHt_YA4cHWlfYoO2A== new file mode 100644 index 0000000..fee810e --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AZpulhWoNLdSouHyDrjiz3ItN6YBEri52xNmDj8FSXir8zD4ekqiAYaWKk7obZ-bQ3UgomHt_YA4cHWlfYoO2A== @@ -0,0 +1 @@ +[{"type":1,"name":"6C102421E93E748C29E78DAED01CBC"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AhNGhAbAgBVu1SoGBBj3U6U1FZrBrcm_umRddfYe_Y-SbSOyBCU3-pKZ7WAvxLzKuZlT6iOH1M77oYHwlVsdSw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AhNGhAbAgBVu1SoGBBj3U6U1FZrBrcm_umRddfYe_Y-SbSOyBCU3-pKZ7WAvxLzKuZlT6iOH1M77oYHwlVsdSw== new file mode 100644 index 0000000..afd92a6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AhNGhAbAgBVu1SoGBBj3U6U1FZrBrcm_umRddfYe_Y-SbSOyBCU3-pKZ7WAvxLzKuZlT6iOH1M77oYHwlVsdSw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AkijaDw96R4QoftUHe0-faLwRhJiAB67zax-Qa35zMVcla--Ir5CumHmbV4yae88l6MUkHxyIf2B8c7ikXrbKQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AkijaDw96R4QoftUHe0-faLwRhJiAB67zax-Qa35zMVcla--Ir5CumHmbV4yae88l6MUkHxyIf2B8c7ikXrbKQ== new file mode 100644 index 0000000..5f76aea Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AkijaDw96R4QoftUHe0-faLwRhJiAB67zax-Qa35zMVcla--Ir5CumHmbV4yae88l6MUkHxyIf2B8c7ikXrbKQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AurhIEyHfZNP1jXEL9ZiUvvD5_O-jJx7X1dOKk4nn2YgXgjPviTy5hGoMsPYJbyqVFjV3C35riUWYowwJRI2Mw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AurhIEyHfZNP1jXEL9ZiUvvD5_O-jJx7X1dOKk4nn2YgXgjPviTy5hGoMsPYJbyqVFjV3C35riUWYowwJRI2Mw== new file mode 100644 index 0000000..2a6ed65 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AurhIEyHfZNP1jXEL9ZiUvvD5_O-jJx7X1dOKk4nn2YgXgjPviTy5hGoMsPYJbyqVFjV3C35riUWYowwJRI2Mw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AvKVXdS6KOEyJX2CZh7pIEmkaDc5X8DhuzhhEPtb3UI1OgBcXFODQdEAIOdU7ytHHr1sMC5BPafrKROUngFolg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AvKVXdS6KOEyJX2CZh7pIEmkaDc5X8DhuzhhEPtb3UI1OgBcXFODQdEAIOdU7ytHHr1sMC5BPafrKROUngFolg== new file mode 100644 index 0000000..26255a5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AvKVXdS6KOEyJX2CZh7pIEmkaDc5X8DhuzhhEPtb3UI1OgBcXFODQdEAIOdU7ytHHr1sMC5BPafrKROUngFolg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AvazQqeoLlpdaAGcBQaDaj9DdFvewXKHxAs7VTI7uZ4yqNnsMrvsmR1hvlPdPS7hAqEHGwdq7xwqX6mS44SpcA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AvazQqeoLlpdaAGcBQaDaj9DdFvewXKHxAs7VTI7uZ4yqNnsMrvsmR1hvlPdPS7hAqEHGwdq7xwqX6mS44SpcA== new file mode 100644 index 0000000..76418b0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AvazQqeoLlpdaAGcBQaDaj9DdFvewXKHxAs7VTI7uZ4yqNnsMrvsmR1hvlPdPS7hAqEHGwdq7xwqX6mS44SpcA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AwPQXjruJniFKWpspWfy_iTgkOCJZ2PoQsdcOjZ2OgCzluMR3Kral3cMKPo7midPpphqdBkdcQAJjS6Lq9BgFQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AwPQXjruJniFKWpspWfy_iTgkOCJZ2PoQsdcOjZ2OgCzluMR3Kral3cMKPo7midPpphqdBkdcQAJjS6Lq9BgFQ== new file mode 100644 index 0000000..4e36c14 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AwPQXjruJniFKWpspWfy_iTgkOCJZ2PoQsdcOjZ2OgCzluMR3Kral3cMKPo7midPpphqdBkdcQAJjS6Lq9BgFQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Aw_hIWkWpbSv90ZnLnoPpOoeO-teGgDS5udhpmN6cch5UnzWLW75NVmuzMfNKdg2cH8VqEVoACqOYl9060zolQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Aw_hIWkWpbSv90ZnLnoPpOoeO-teGgDS5udhpmN6cch5UnzWLW75NVmuzMfNKdg2cH8VqEVoACqOYl9060zolQ== new file mode 100644 index 0000000..03e43a7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Aw_hIWkWpbSv90ZnLnoPpOoeO-teGgDS5udhpmN6cch5UnzWLW75NVmuzMfNKdg2cH8VqEVoACqOYl9060zolQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AxksJa82vPEuYWVm_IakdRgUitzlAfgpMf36A1MszahkrVymZmFzQf20HW2xmZKgPQiWmp3g-9DFXJHfuoajTA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AxksJa82vPEuYWVm_IakdRgUitzlAfgpMf36A1MszahkrVymZmFzQf20HW2xmZKgPQiWmp3g-9DFXJHfuoajTA== new file mode 100644 index 0000000..dd3d1fe Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~AxksJa82vPEuYWVm_IakdRgUitzlAfgpMf36A1MszahkrVymZmFzQf20HW2xmZKgPQiWmp3g-9DFXJHfuoajTA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~B4S6CuiQL7GPxMSSSHjPOHIZMd7fQPzrFDFEHlelDgLq4a2SxazHxxsO5XIMMC59Z01Wk-sk2YMmtuHir1xtHg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~B4S6CuiQL7GPxMSSSHjPOHIZMd7fQPzrFDFEHlelDgLq4a2SxazHxxsO5XIMMC59Z01Wk-sk2YMmtuHir1xtHg== new file mode 100644 index 0000000..ad1062a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~B4S6CuiQL7GPxMSSSHjPOHIZMd7fQPzrFDFEHlelDgLq4a2SxazHxxsO5XIMMC59Z01Wk-sk2YMmtuHir1xtHg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~B8Z7Tbx82pK_7MyNj6b82OtQ441P_NUpMyJpNVRECQ0RDvUsK_JgqFZH8NfYhoPaEbyecq3c8tc-s1WEnm3yCA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~B8Z7Tbx82pK_7MyNj6b82OtQ441P_NUpMyJpNVRECQ0RDvUsK_JgqFZH8NfYhoPaEbyecq3c8tc-s1WEnm3yCA== new file mode 100644 index 0000000..23f631b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~B8Z7Tbx82pK_7MyNj6b82OtQ441P_NUpMyJpNVRECQ0RDvUsK_JgqFZH8NfYhoPaEbyecq3c8tc-s1WEnm3yCA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~BM8B6O0kO5IiIO_tiVhcSAjSJSEOU5BOPWL7n5BU9wde6yAwZLuwVb7YnYcNTYVQs7O5xOE2YOdF8_drf47dJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~BM8B6O0kO5IiIO_tiVhcSAjSJSEOU5BOPWL7n5BU9wde6yAwZLuwVb7YnYcNTYVQs7O5xOE2YOdF8_drf47dJg== new file mode 100644 index 0000000..365ce6f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~BM8B6O0kO5IiIO_tiVhcSAjSJSEOU5BOPWL7n5BU9wde6yAwZLuwVb7YnYcNTYVQs7O5xOE2YOdF8_drf47dJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~BhJdh235Mpqu4HfY606MHq9UiB1IsAZTOTiM1UPdEBL7g1RwJ0XBFNLNNIhNnrKiDr06hwiR50EkOLOaa7Tb7w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~BhJdh235Mpqu4HfY606MHq9UiB1IsAZTOTiM1UPdEBL7g1RwJ0XBFNLNNIhNnrKiDr06hwiR50EkOLOaa7Tb7w== new file mode 100644 index 0000000..93b5bc4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~BhJdh235Mpqu4HfY606MHq9UiB1IsAZTOTiM1UPdEBL7g1RwJ0XBFNLNNIhNnrKiDr06hwiR50EkOLOaa7Tb7w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Bu8xyufQEAx2B80ABWs7bmVY3saHgnRD7tt5Op60fwcl9O9531WKL9lXyl9JknXB9RdE2X5XUNyP0vLBUFBg8g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Bu8xyufQEAx2B80ABWs7bmVY3saHgnRD7tt5Op60fwcl9O9531WKL9lXyl9JknXB9RdE2X5XUNyP0vLBUFBg8g== new file mode 100644 index 0000000..493b06b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Bu8xyufQEAx2B80ABWs7bmVY3saHgnRD7tt5Op60fwcl9O9531WKL9lXyl9JknXB9RdE2X5XUNyP0vLBUFBg8g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C-Uxmg2xmFtrAYm3BIEcT432rwR2YGflR3VKh9K6053UiqlDmwcjRO0gZxoNCiovYg_BVSXISIRhk5emjN2Dig== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C-Uxmg2xmFtrAYm3BIEcT432rwR2YGflR3VKh9K6053UiqlDmwcjRO0gZxoNCiovYg_BVSXISIRhk5emjN2Dig== new file mode 100644 index 0000000..929b4c2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C-Uxmg2xmFtrAYm3BIEcT432rwR2YGflR3VKh9K6053UiqlDmwcjRO0gZxoNCiovYg_BVSXISIRhk5emjN2Dig== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C2AkO47DB70vwQ7rCxVJVfUs5wC02-5wHxdmB2sm0O9KpS1zZXc0mKon0Uw6kIKSepe0ItXHZQwOFnqI6YGs7g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C2AkO47DB70vwQ7rCxVJVfUs5wC02-5wHxdmB2sm0O9KpS1zZXc0mKon0Uw6kIKSepe0ItXHZQwOFnqI6YGs7g== new file mode 100644 index 0000000..7b5d669 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C2AkO47DB70vwQ7rCxVJVfUs5wC02-5wHxdmB2sm0O9KpS1zZXc0mKon0Uw6kIKSepe0ItXHZQwOFnqI6YGs7g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C2UeWTV-dfcXWWiqOJowE-ZfyjR3Vrr0MYHPWFKtl9woTuW104YXdC-NQTA6qf2Rsa_Hl8jidnNb3LMiBDfdEQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C2UeWTV-dfcXWWiqOJowE-ZfyjR3Vrr0MYHPWFKtl9woTuW104YXdC-NQTA6qf2Rsa_Hl8jidnNb3LMiBDfdEQ== new file mode 100644 index 0000000..2519d0d --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C2UeWTV-dfcXWWiqOJowE-ZfyjR3Vrr0MYHPWFKtl9woTuW104YXdC-NQTA6qf2Rsa_Hl8jidnNb3LMiBDfdEQ== @@ -0,0 +1 @@ +[{"type":1,"name":"34D6940ED9370C96FC9D997C9F2EB1"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C2bzaRU0Uz0Yx20-k84ZT26yipphvDAIavkgjK5jrACF8Cq8oEe3v3gN6RnMEy-q57LK1f0EMt8GcE3mjxjMqA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C2bzaRU0Uz0Yx20-k84ZT26yipphvDAIavkgjK5jrACF8Cq8oEe3v3gN6RnMEy-q57LK1f0EMt8GcE3mjxjMqA== new file mode 100644 index 0000000..c7313ed Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C2bzaRU0Uz0Yx20-k84ZT26yipphvDAIavkgjK5jrACF8Cq8oEe3v3gN6RnMEy-q57LK1f0EMt8GcE3mjxjMqA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C4NSuj5xwedy6dozKZA7ir8BUEhrrYbU52mti2tMkErOQSbH4DobQshmDzOCKKKOzDfkokKK4b-9gjVo6xaDUQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C4NSuj5xwedy6dozKZA7ir8BUEhrrYbU52mti2tMkErOQSbH4DobQshmDzOCKKKOzDfkokKK4b-9gjVo6xaDUQ== new file mode 100644 index 0000000..1e958e5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C4NSuj5xwedy6dozKZA7ir8BUEhrrYbU52mti2tMkErOQSbH4DobQshmDzOCKKKOzDfkokKK4b-9gjVo6xaDUQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C5MEJuhwtL7oP5itvsHyR4AMPOtOaUKuEcm3wjPuMMsRPW8SBwOzuhouQ4I3tkyrO-rCnFAd49prkp-bc4ZNkQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C5MEJuhwtL7oP5itvsHyR4AMPOtOaUKuEcm3wjPuMMsRPW8SBwOzuhouQ4I3tkyrO-rCnFAd49prkp-bc4ZNkQ== new file mode 100644 index 0000000..3bda6d0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~C5MEJuhwtL7oP5itvsHyR4AMPOtOaUKuEcm3wjPuMMsRPW8SBwOzuhouQ4I3tkyrO-rCnFAd49prkp-bc4ZNkQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CLtu7mZOUYfcsCVaQpjUajdPc2A1xy-vrgkIKjKM_7TDXTIcXs3KTNKFIQNi76GsjgbhXoUor5e3Awn-J04rKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CLtu7mZOUYfcsCVaQpjUajdPc2A1xy-vrgkIKjKM_7TDXTIcXs3KTNKFIQNi76GsjgbhXoUor5e3Awn-J04rKw== new file mode 100644 index 0000000..ff15646 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CLtu7mZOUYfcsCVaQpjUajdPc2A1xy-vrgkIKjKM_7TDXTIcXs3KTNKFIQNi76GsjgbhXoUor5e3Awn-J04rKw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CMQPHnlkR9xF2TdltuehJtaX2NKX-LSXidSyHF-UB0fGUpLfldVZbT_krPDUqZi9jN484X-OBy_t1MajX2r9qQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CMQPHnlkR9xF2TdltuehJtaX2NKX-LSXidSyHF-UB0fGUpLfldVZbT_krPDUqZi9jN484X-OBy_t1MajX2r9qQ== new file mode 100644 index 0000000..9fbf1c5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CMQPHnlkR9xF2TdltuehJtaX2NKX-LSXidSyHF-UB0fGUpLfldVZbT_krPDUqZi9jN484X-OBy_t1MajX2r9qQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CSNqOu_taS3SXSo-kVanSJOBFXTchV0WNqe8IZFU0TA-M3kydRne6ZS1BifGlcx8hffP1EW5kwCzl1UOgcMS8w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CSNqOu_taS3SXSo-kVanSJOBFXTchV0WNqe8IZFU0TA-M3kydRne6ZS1BifGlcx8hffP1EW5kwCzl1UOgcMS8w== new file mode 100644 index 0000000..16a3184 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CSNqOu_taS3SXSo-kVanSJOBFXTchV0WNqe8IZFU0TA-M3kydRne6ZS1BifGlcx8hffP1EW5kwCzl1UOgcMS8w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CZnwDhjlgRfAxYgpWUUTNG1JoqlnDZ9VviQz2gbNCvlNeqSPPhpABuLP4F6Uvi4xlAzDTLgEngFSP_fVur0_aw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CZnwDhjlgRfAxYgpWUUTNG1JoqlnDZ9VviQz2gbNCvlNeqSPPhpABuLP4F6Uvi4xlAzDTLgEngFSP_fVur0_aw== new file mode 100644 index 0000000..24722fc --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CZnwDhjlgRfAxYgpWUUTNG1JoqlnDZ9VviQz2gbNCvlNeqSPPhpABuLP4F6Uvi4xlAzDTLgEngFSP_fVur0_aw== @@ -0,0 +1 @@ +[{"type":1,"name":"0000000000000002.timesync"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CbFGWNdNiQkcf_XC8Jz45aIBdeG7E_Iqg3GIjoTWtgMRxLezBGpXGfZgD2AlqSZVmKm6YA75Du2dJpRZ6PFKIA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CbFGWNdNiQkcf_XC8Jz45aIBdeG7E_Iqg3GIjoTWtgMRxLezBGpXGfZgD2AlqSZVmKm6YA75Du2dJpRZ6PFKIA== new file mode 100644 index 0000000..e7565bf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CbFGWNdNiQkcf_XC8Jz45aIBdeG7E_Iqg3GIjoTWtgMRxLezBGpXGfZgD2AlqSZVmKm6YA75Du2dJpRZ6PFKIA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CcPy3mXlojDt2OyzrekUy3ddgDdm5vLxXbgpSkVEtBTaleyhyb2BXhRlSF0QQjHKj-UDiWZOiu5yk7-8hOLUsw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CcPy3mXlojDt2OyzrekUy3ddgDdm5vLxXbgpSkVEtBTaleyhyb2BXhRlSF0QQjHKj-UDiWZOiu5yk7-8hOLUsw== new file mode 100644 index 0000000..7fa162b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CcPy3mXlojDt2OyzrekUy3ddgDdm5vLxXbgpSkVEtBTaleyhyb2BXhRlSF0QQjHKj-UDiWZOiu5yk7-8hOLUsw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Cj1DUDETA90AQodrgL5_bTzZs-6vut1cQepxuw33rI7zSt-J2AwPEkxLFXmYdUXjDIg5IPt4mTFi9ybQESpu8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Cj1DUDETA90AQodrgL5_bTzZs-6vut1cQepxuw33rI7zSt-J2AwPEkxLFXmYdUXjDIg5IPt4mTFi9ybQESpu8Q== new file mode 100644 index 0000000..e24265f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Cj1DUDETA90AQodrgL5_bTzZs-6vut1cQepxuw33rI7zSt-J2AwPEkxLFXmYdUXjDIg5IPt4mTFi9ybQESpu8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ClDooC6bX3b6JHQmRKAIHWF36H40lBSljkDcawoyPf0lUypQHJMOWhTlwclulro65E8xbrDG5rvf4O3bWYRnWQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ClDooC6bX3b6JHQmRKAIHWF36H40lBSljkDcawoyPf0lUypQHJMOWhTlwclulro65E8xbrDG5rvf4O3bWYRnWQ== new file mode 100644 index 0000000..b15a4e5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ClDooC6bX3b6JHQmRKAIHWF36H40lBSljkDcawoyPf0lUypQHJMOWhTlwclulro65E8xbrDG5rvf4O3bWYRnWQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ClP7iQJleHL1siidlyLik-4buVF2SYthcI1Pjr4mQInWHH-NT3FDtUVfO6lBycb8gqhrey3K2bC1fN_R-F51AQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ClP7iQJleHL1siidlyLik-4buVF2SYthcI1Pjr4mQInWHH-NT3FDtUVfO6lBycb8gqhrey3K2bC1fN_R-F51AQ== new file mode 100644 index 0000000..bb3827f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ClP7iQJleHL1siidlyLik-4buVF2SYthcI1Pjr4mQInWHH-NT3FDtUVfO6lBycb8gqhrey3K2bC1fN_R-F51AQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ClqGY7sm-ZibEuR3nOdEHusE4y4ZND-zdRzPZ9VP6PfhUZmH3cs0EAGkyzXIIfsZdo3OXSayDMKm8HOqpR5gEw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ClqGY7sm-ZibEuR3nOdEHusE4y4ZND-zdRzPZ9VP6PfhUZmH3cs0EAGkyzXIIfsZdo3OXSayDMKm8HOqpR5gEw== new file mode 100644 index 0000000..aebf6e4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ClqGY7sm-ZibEuR3nOdEHusE4y4ZND-zdRzPZ9VP6PfhUZmH3cs0EAGkyzXIIfsZdo3OXSayDMKm8HOqpR5gEw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CxfbxV7RsBJwmuIB5CIfnX2IavmKMJA1ul1nLLk3gEs1T2aADwLRFujuFs1gnENYHFI5BETnVvAU0-AHkLNSJQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CxfbxV7RsBJwmuIB5CIfnX2IavmKMJA1ul1nLLk3gEs1T2aADwLRFujuFs1gnENYHFI5BETnVvAU0-AHkLNSJQ== new file mode 100644 index 0000000..6c5a59e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~CxfbxV7RsBJwmuIB5CIfnX2IavmKMJA1ul1nLLk3gEs1T2aADwLRFujuFs1gnENYHFI5BETnVvAU0-AHkLNSJQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D1ADshkw4l-YJ3vqmZtVJ0td1DujvWX8Ba-jP54MHvw0fxrk3OyIDW0c4yyi3-ybxVPFugy2hqbPLMm08_mSDQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D1ADshkw4l-YJ3vqmZtVJ0td1DujvWX8Ba-jP54MHvw0fxrk3OyIDW0c4yyi3-ybxVPFugy2hqbPLMm08_mSDQ== new file mode 100644 index 0000000..4ebc192 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D1ADshkw4l-YJ3vqmZtVJ0td1DujvWX8Ba-jP54MHvw0fxrk3OyIDW0c4yyi3-ybxVPFugy2hqbPLMm08_mSDQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D2q7DPh_9bJuokmi2LIBDXuBOkC7l4GzfLrtwrF8YQkXU8gLXwKcmhgeiRjSzukaued6l3gkNprzBxRPdverSg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D2q7DPh_9bJuokmi2LIBDXuBOkC7l4GzfLrtwrF8YQkXU8gLXwKcmhgeiRjSzukaued6l3gkNprzBxRPdverSg== new file mode 100644 index 0000000..0ee9897 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D2q7DPh_9bJuokmi2LIBDXuBOkC7l4GzfLrtwrF8YQkXU8gLXwKcmhgeiRjSzukaued6l3gkNprzBxRPdverSg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D55-dpiXnA1sijhnZfpiGPfxa7O9WHWw51hVO30Jdi3ZmKS7s5LkfYaZ6qP-Lhv8DcYtNLyj6AiwIdKhtKIK3g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D55-dpiXnA1sijhnZfpiGPfxa7O9WHWw51hVO30Jdi3ZmKS7s5LkfYaZ6qP-Lhv8DcYtNLyj6AiwIdKhtKIK3g== new file mode 100644 index 0000000..2e30dd7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D55-dpiXnA1sijhnZfpiGPfxa7O9WHWw51hVO30Jdi3ZmKS7s5LkfYaZ6qP-Lhv8DcYtNLyj6AiwIdKhtKIK3g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D77XjVXi0jsv55mTW6Lrdq7QZ-9xylLibCyukUDaZxUxlZGQMODFfGPIM1QP3kj-sc02VImfQRvUEDmxCgahkg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D77XjVXi0jsv55mTW6Lrdq7QZ-9xylLibCyukUDaZxUxlZGQMODFfGPIM1QP3kj-sc02VImfQRvUEDmxCgahkg== new file mode 100644 index 0000000..cf4720d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D77XjVXi0jsv55mTW6Lrdq7QZ-9xylLibCyukUDaZxUxlZGQMODFfGPIM1QP3kj-sc02VImfQRvUEDmxCgahkg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D7uppP1vpXBwW9jJWeWZfS92xljqmyHDWXMHKO0njGCGOms77fd_VHnF6bM8fcXjjJn_JpVgevC5LnhqkRs4xg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D7uppP1vpXBwW9jJWeWZfS92xljqmyHDWXMHKO0njGCGOms77fd_VHnF6bM8fcXjjJn_JpVgevC5LnhqkRs4xg== new file mode 100644 index 0000000..e612919 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~D7uppP1vpXBwW9jJWeWZfS92xljqmyHDWXMHKO0njGCGOms77fd_VHnF6bM8fcXjjJn_JpVgevC5LnhqkRs4xg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DArRWeATsJVhJ7TBbnRBx0ieuBxo4YhzXkuvBxtNfVvyTbQ3v-T-fyNvLhHpd112rzqiblXdsEdSWt3PdR3IKg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DArRWeATsJVhJ7TBbnRBx0ieuBxo4YhzXkuvBxtNfVvyTbQ3v-T-fyNvLhHpd112rzqiblXdsEdSWt3PdR3IKg== new file mode 100644 index 0000000..2a0f257 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DArRWeATsJVhJ7TBbnRBx0ieuBxo4YhzXkuvBxtNfVvyTbQ3v-T-fyNvLhHpd112rzqiblXdsEdSWt3PdR3IKg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DCZ5hD_PBIgvCGS19OA0ncYyw06MH9CcfvlvJLnCcNX3r0Vhvvcnbqr0jtHodewVqC5zy_SJv-B38VleOpohKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DCZ5hD_PBIgvCGS19OA0ncYyw06MH9CcfvlvJLnCcNX3r0Vhvvcnbqr0jtHodewVqC5zy_SJv-B38VleOpohKw== new file mode 100644 index 0000000..4ff32bc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DCZ5hD_PBIgvCGS19OA0ncYyw06MH9CcfvlvJLnCcNX3r0Vhvvcnbqr0jtHodewVqC5zy_SJv-B38VleOpohKw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DD23Nrinprk4dwiewrSggwRryPbBtyK5zzSLxpneg4HtM6lnygCc9V-2Tb7QgqMrq6ngKQXiFQ2pwMf1s3_zkw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DD23Nrinprk4dwiewrSggwRryPbBtyK5zzSLxpneg4HtM6lnygCc9V-2Tb7QgqMrq6ngKQXiFQ2pwMf1s3_zkw== new file mode 100644 index 0000000..5f7d986 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DD23Nrinprk4dwiewrSggwRryPbBtyK5zzSLxpneg4HtM6lnygCc9V-2Tb7QgqMrq6ngKQXiFQ2pwMf1s3_zkw== @@ -0,0 +1 @@ +[{"type":1,"name":"453CA4985D3B9396E6A251A1CEB442"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DGQLMBEpl2RuAou-RU-FpZUWtQjFRe08gX8xZnA9Y61PW9Un7PJRuOOoMPOIFWnNv-l8wSKPCVtCuTtFVJbMEg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DGQLMBEpl2RuAou-RU-FpZUWtQjFRe08gX8xZnA9Y61PW9Un7PJRuOOoMPOIFWnNv-l8wSKPCVtCuTtFVJbMEg== new file mode 100644 index 0000000..d97efd4 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DGQLMBEpl2RuAou-RU-FpZUWtQjFRe08gX8xZnA9Y61PW9Un7PJRuOOoMPOIFWnNv-l8wSKPCVtCuTtFVJbMEg== @@ -0,0 +1 @@ +[{"type":1,"name":"C32638FB883409A49B9A22B4CDFCE7"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DJrWFHYdqo_uC1b7h3_fSnWudK8UML8zQwAvp4PHlBk2-A_v1cqfuAc3l_HfXDHdbVqz-i6xtjy8DaH2udqflA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DJrWFHYdqo_uC1b7h3_fSnWudK8UML8zQwAvp4PHlBk2-A_v1cqfuAc3l_HfXDHdbVqz-i6xtjy8DaH2udqflA== new file mode 100644 index 0000000..ed97489 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DJrWFHYdqo_uC1b7h3_fSnWudK8UML8zQwAvp4PHlBk2-A_v1cqfuAc3l_HfXDHdbVqz-i6xtjy8DaH2udqflA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DMw_ZPU1U57A8uBHelNZ-MeooeAaK_LUJm8SSHcAWOJ6h9lYAvmYj5AkoM60RkNQIWpKPuDbDKiRDwDt9wjvoA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DMw_ZPU1U57A8uBHelNZ-MeooeAaK_LUJm8SSHcAWOJ6h9lYAvmYj5AkoM60RkNQIWpKPuDbDKiRDwDt9wjvoA== new file mode 100644 index 0000000..fbeb9a3 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DMw_ZPU1U57A8uBHelNZ-MeooeAaK_LUJm8SSHcAWOJ6h9lYAvmYj5AkoM60RkNQIWpKPuDbDKiRDwDt9wjvoA== @@ -0,0 +1 @@ +[{"type":1,"name":"2D2EEDF5233043A4CAEB62F398E6DD"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DOW5Jg64syYqYsW83yyUaDnf5KS_8zndEn7pKMKD6jAUMeVoxFR4F5w7tdWL6Fb3i5ugYgLJrWfLVAQnlpRF8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DOW5Jg64syYqYsW83yyUaDnf5KS_8zndEn7pKMKD6jAUMeVoxFR4F5w7tdWL6Fb3i5ugYgLJrWfLVAQnlpRF8Q== new file mode 100644 index 0000000..b629a81 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DOW5Jg64syYqYsW83yyUaDnf5KS_8zndEn7pKMKD6jAUMeVoxFR4F5w7tdWL6Fb3i5ugYgLJrWfLVAQnlpRF8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DQ0q4YJzGBMhFPFANC_Tm2WmS-XnYfGOPyMGcaPvoeC3Fk9JyDccnyjsDXEkyyzJn5rfdEsK8D2zFeVB4U8kQA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DQ0q4YJzGBMhFPFANC_Tm2WmS-XnYfGOPyMGcaPvoeC3Fk9JyDccnyjsDXEkyyzJn5rfdEsK8D2zFeVB4U8kQA== new file mode 100644 index 0000000..066749e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DQ0q4YJzGBMhFPFANC_Tm2WmS-XnYfGOPyMGcaPvoeC3Fk9JyDccnyjsDXEkyyzJn5rfdEsK8D2zFeVB4U8kQA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DQAXdsXgURNJWZ7ko_20AFuLRD8oy-lfT2NYEo4vbrCv0hHYAeCFx1pgdklzEb2XwqrQk4cIickNW-Mb5_aLFg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DQAXdsXgURNJWZ7ko_20AFuLRD8oy-lfT2NYEo4vbrCv0hHYAeCFx1pgdklzEb2XwqrQk4cIickNW-Mb5_aLFg== new file mode 100644 index 0000000..20bf7d2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DQAXdsXgURNJWZ7ko_20AFuLRD8oy-lfT2NYEo4vbrCv0hHYAeCFx1pgdklzEb2XwqrQk4cIickNW-Mb5_aLFg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DQRk1NQI3hYW1IW4lC9ZiTKV52k-GnpnuG8-iKNnlvbN41csb9WXfU86qPvNG_gzm9AVOARgxAJoVUtGG5Lnlw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DQRk1NQI3hYW1IW4lC9ZiTKV52k-GnpnuG8-iKNnlvbN41csb9WXfU86qPvNG_gzm9AVOARgxAJoVUtGG5Lnlw== new file mode 100644 index 0000000..b5c80bb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DQRk1NQI3hYW1IW4lC9ZiTKV52k-GnpnuG8-iKNnlvbN41csb9WXfU86qPvNG_gzm9AVOARgxAJoVUtGG5Lnlw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DRcQLW5xXn6nZ0MiJEOy1kUDkfMqsd2p3E6QBhPfYVrr1Isue269zu3UxTp52hi9zgGzzfFmxzRpRkRu871PLg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DRcQLW5xXn6nZ0MiJEOy1kUDkfMqsd2p3E6QBhPfYVrr1Isue269zu3UxTp52hi9zgGzzfFmxzRpRkRu871PLg== new file mode 100644 index 0000000..57fae1c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DRcQLW5xXn6nZ0MiJEOy1kUDkfMqsd2p3E6QBhPfYVrr1Isue269zu3UxTp52hi9zgGzzfFmxzRpRkRu871PLg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DU94HuOkADiiz4g-UnFEnFyTKFwnmpwrylMkPzDfCKTp4xQf0EJB3IWA4zKjme-wCHc8I95Q8Mzm-0vt6758RQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DU94HuOkADiiz4g-UnFEnFyTKFwnmpwrylMkPzDfCKTp4xQf0EJB3IWA4zKjme-wCHc8I95Q8Mzm-0vt6758RQ== new file mode 100644 index 0000000..757449b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DU94HuOkADiiz4g-UnFEnFyTKFwnmpwrylMkPzDfCKTp4xQf0EJB3IWA4zKjme-wCHc8I95Q8Mzm-0vt6758RQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DXpy4g8mRLuqTPmOv4fnjowvAtknV8PmmFzRU2HM5SFSxc64ucZJNSt62uHZrY6YRgnpqAA3cBks5vOzL20ytA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DXpy4g8mRLuqTPmOv4fnjowvAtknV8PmmFzRU2HM5SFSxc64ucZJNSt62uHZrY6YRgnpqAA3cBks5vOzL20ytA== new file mode 100644 index 0000000..e6b5564 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DXpy4g8mRLuqTPmOv4fnjowvAtknV8PmmFzRU2HM5SFSxc64ucZJNSt62uHZrY6YRgnpqAA3cBks5vOzL20ytA== @@ -0,0 +1 @@ +[{"type":1,"name":"136CA439E5399C829A2DD0A67E25DF"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DcVRSxUVeiGj3HbUCsi1gWJ3XpNlE4d18o8K3PPNIu4jQKXn3p_91jewRJR_WIU7OkVDJfYxSEZs5LA-yWbaIw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DcVRSxUVeiGj3HbUCsi1gWJ3XpNlE4d18o8K3PPNIu4jQKXn3p_91jewRJR_WIU7OkVDJfYxSEZs5LA-yWbaIw== new file mode 100644 index 0000000..f59335e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DcVRSxUVeiGj3HbUCsi1gWJ3XpNlE4d18o8K3PPNIu4jQKXn3p_91jewRJR_WIU7OkVDJfYxSEZs5LA-yWbaIw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Di9WMdjFabFlNnskJLKV4nYnH6h46MvKfEmcl6VmnEP0s-Iw9_hoAL23CvLM430Rl8_-4-7cwMfvI_ykSmWBVg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Di9WMdjFabFlNnskJLKV4nYnH6h46MvKfEmcl6VmnEP0s-Iw9_hoAL23CvLM430Rl8_-4-7cwMfvI_ykSmWBVg== new file mode 100644 index 0000000..2b42370 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Di9WMdjFabFlNnskJLKV4nYnH6h46MvKfEmcl6VmnEP0s-Iw9_hoAL23CvLM430Rl8_-4-7cwMfvI_ykSmWBVg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Dv1o_7SqqwFldQGwlYfEGKk03-nqQevKMbXq7lTK7aHUbhCc9IYvvKceuYAer9qnqjx2wBIToMEYuSKrcAugkg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Dv1o_7SqqwFldQGwlYfEGKk03-nqQevKMbXq7lTK7aHUbhCc9IYvvKceuYAer9qnqjx2wBIToMEYuSKrcAugkg== new file mode 100644 index 0000000..1a081f1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Dv1o_7SqqwFldQGwlYfEGKk03-nqQevKMbXq7lTK7aHUbhCc9IYvvKceuYAer9qnqjx2wBIToMEYuSKrcAugkg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DvTrwtHPtSxp6pUYc1lNbrQtjClVK_PSvtojRHchYcjhpPw7nnZHh7djXxqZeCiWGSWe0grvt6R2dbihyg9EyQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DvTrwtHPtSxp6pUYc1lNbrQtjClVK_PSvtojRHchYcjhpPw7nnZHh7djXxqZeCiWGSWe0grvt6R2dbihyg9EyQ== new file mode 100644 index 0000000..bb85184 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DvTrwtHPtSxp6pUYc1lNbrQtjClVK_PSvtojRHchYcjhpPw7nnZHh7djXxqZeCiWGSWe0grvt6R2dbihyg9EyQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DvYxUB62MdQiwA48-QKTNfOZS1kNhFYa0sCCiMdmKeUamHI7QGgb7fpzbPjBAH3sJWb6vG473H2uacq-qyg1kw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DvYxUB62MdQiwA48-QKTNfOZS1kNhFYa0sCCiMdmKeUamHI7QGgb7fpzbPjBAH3sJWb6vG473H2uacq-qyg1kw== new file mode 100644 index 0000000..fe44196 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~DvYxUB62MdQiwA48-QKTNfOZS1kNhFYa0sCCiMdmKeUamHI7QGgb7fpzbPjBAH3sJWb6vG473H2uacq-qyg1kw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Dz_jpNSqZnW55DzxUvrPXLrAhZ5Cm6NVXMbnA4x-QrpUGMvmJ7oruLiO3QTJb9ZnYWzcLf8xY8FOf8c4Gt1Ekw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Dz_jpNSqZnW55DzxUvrPXLrAhZ5Cm6NVXMbnA4x-QrpUGMvmJ7oruLiO3QTJb9ZnYWzcLf8xY8FOf8c4Gt1Ekw== new file mode 100644 index 0000000..12eeb82 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Dz_jpNSqZnW55DzxUvrPXLrAhZ5Cm6NVXMbnA4x-QrpUGMvmJ7oruLiO3QTJb9ZnYWzcLf8xY8FOf8c4Gt1Ekw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EDVLhWxhxRrtS7NfMRRyKgByOkK_cXpmQDWN4d-WPqo3QjzyESjZPzz3H5TawGxgNpKjaqS1EOmBwBw2xx7axg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EDVLhWxhxRrtS7NfMRRyKgByOkK_cXpmQDWN4d-WPqo3QjzyESjZPzz3H5TawGxgNpKjaqS1EOmBwBw2xx7axg== new file mode 100644 index 0000000..5b9b6fb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EDVLhWxhxRrtS7NfMRRyKgByOkK_cXpmQDWN4d-WPqo3QjzyESjZPzz3H5TawGxgNpKjaqS1EOmBwBw2xx7axg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EEdLMKSetsJ3NZIoG9gT2-fZsPixz4_1Kefd2Zpbjo0bwB-LdMGmGtqVydGD_bpu4GuAglVpn_UDdQ-2UfH3mw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EEdLMKSetsJ3NZIoG9gT2-fZsPixz4_1Kefd2Zpbjo0bwB-LdMGmGtqVydGD_bpu4GuAglVpn_UDdQ-2UfH3mw== new file mode 100644 index 0000000..dd17e0b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EEdLMKSetsJ3NZIoG9gT2-fZsPixz4_1Kefd2Zpbjo0bwB-LdMGmGtqVydGD_bpu4GuAglVpn_UDdQ-2UfH3mw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EFhPntpkvMB-S1yWm2yEc7IwFHp_DkxWod-RNWhaM91zsqSmZRK1jeRw6Yx3mVhpYYMwCAO6-CHANHnb4ePTZA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EFhPntpkvMB-S1yWm2yEc7IwFHp_DkxWod-RNWhaM91zsqSmZRK1jeRw6Yx3mVhpYYMwCAO6-CHANHnb4ePTZA== new file mode 100644 index 0000000..5e6527a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EFhPntpkvMB-S1yWm2yEc7IwFHp_DkxWod-RNWhaM91zsqSmZRK1jeRw6Yx3mVhpYYMwCAO6-CHANHnb4ePTZA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EHEyqcJ3gwQq8UzQF-WYX4lHR-2TG4VdO4W8Nv0adbawNlvSX3wRfIIBKc6KYDrO-gg6ldd2qq5LTzh8J20dAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EHEyqcJ3gwQq8UzQF-WYX4lHR-2TG4VdO4W8Nv0adbawNlvSX3wRfIIBKc6KYDrO-gg6ldd2qq5LTzh8J20dAg== new file mode 100644 index 0000000..b5623a3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EHEyqcJ3gwQq8UzQF-WYX4lHR-2TG4VdO4W8Nv0adbawNlvSX3wRfIIBKc6KYDrO-gg6ldd2qq5LTzh8J20dAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EcWEEqDQNYvwpzSgv6cXehG_BbLq_w6LQr8CTqVD9aZpmCxBcKWA9PROnAdiN8GBFmh5lbV4BQUlikJEORjzjg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EcWEEqDQNYvwpzSgv6cXehG_BbLq_w6LQr8CTqVD9aZpmCxBcKWA9PROnAdiN8GBFmh5lbV4BQUlikJEORjzjg== new file mode 100644 index 0000000..7b5901b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EcWEEqDQNYvwpzSgv6cXehG_BbLq_w6LQr8CTqVD9aZpmCxBcKWA9PROnAdiN8GBFmh5lbV4BQUlikJEORjzjg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EhHg52QOrJb4BtpJhSzx1-NjBpN8-q0mib7FBt4P8u4GmafjTG2EPvWqoSJ7bBOcIaeDWLnXHILvx__vgIiN0w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EhHg52QOrJb4BtpJhSzx1-NjBpN8-q0mib7FBt4P8u4GmafjTG2EPvWqoSJ7bBOcIaeDWLnXHILvx__vgIiN0w== new file mode 100644 index 0000000..a3ef3ea Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EhHg52QOrJb4BtpJhSzx1-NjBpN8-q0mib7FBt4P8u4GmafjTG2EPvWqoSJ7bBOcIaeDWLnXHILvx__vgIiN0w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EjcmeDzjSFjRxFcnlNAgUdWsZS5BScn4Mm80bg5A-nbqbSBYSrSfl6HYpfzGm-8wDBtOuZb8qQnF3zjrj-vs5Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EjcmeDzjSFjRxFcnlNAgUdWsZS5BScn4Mm80bg5A-nbqbSBYSrSfl6HYpfzGm-8wDBtOuZb8qQnF3zjrj-vs5Q== new file mode 100644 index 0000000..06cb1a4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EjcmeDzjSFjRxFcnlNAgUdWsZS5BScn4Mm80bg5A-nbqbSBYSrSfl6HYpfzGm-8wDBtOuZb8qQnF3zjrj-vs5Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ek29aXb7XsSJCBSAWkdtekMFvdjEAW5m_2eaLdRMZJvLuOOf2pEaXtbHw5CELlcdm8jwGNU_TWbV3mmZYNtgfw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ek29aXb7XsSJCBSAWkdtekMFvdjEAW5m_2eaLdRMZJvLuOOf2pEaXtbHw5CELlcdm8jwGNU_TWbV3mmZYNtgfw== new file mode 100644 index 0000000..14557db Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ek29aXb7XsSJCBSAWkdtekMFvdjEAW5m_2eaLdRMZJvLuOOf2pEaXtbHw5CELlcdm8jwGNU_TWbV3mmZYNtgfw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EkPG5Uk1MO76xLxHhN_Hf5ysCvCymIEBjyVr1_1XzrIAMZOPWwfUtDCc447T9DmsT-eCD2FGVTkbR1hnl7Pqlw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EkPG5Uk1MO76xLxHhN_Hf5ysCvCymIEBjyVr1_1XzrIAMZOPWwfUtDCc447T9DmsT-eCD2FGVTkbR1hnl7Pqlw== new file mode 100644 index 0000000..c7ef90d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EkPG5Uk1MO76xLxHhN_Hf5ysCvCymIEBjyVr1_1XzrIAMZOPWwfUtDCc447T9DmsT-eCD2FGVTkbR1hnl7Pqlw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ekn1bxfIjdNCfC8ipkSyGOP4c5hwsoSa4sW6OlHPnfAX6_YKD0cu9HVeonwmzV4nHGDlKr6Q3otvLLrs3MDHsg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ekn1bxfIjdNCfC8ipkSyGOP4c5hwsoSa4sW6OlHPnfAX6_YKD0cu9HVeonwmzV4nHGDlKr6Q3otvLLrs3MDHsg== new file mode 100644 index 0000000..8dbc17f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ekn1bxfIjdNCfC8ipkSyGOP4c5hwsoSa4sW6OlHPnfAX6_YKD0cu9HVeonwmzV4nHGDlKr6Q3otvLLrs3MDHsg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Er4PW8mnt7AYiBP4k--o0LJnw8G6jHQ-INIwfITYhQwHhzE7npgBOyiO23JGjReQKQGpcPqs_qAldACzVdMY_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Er4PW8mnt7AYiBP4k--o0LJnw8G6jHQ-INIwfITYhQwHhzE7npgBOyiO23JGjReQKQGpcPqs_qAldACzVdMY_A== new file mode 100644 index 0000000..d1b21d5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Er4PW8mnt7AYiBP4k--o0LJnw8G6jHQ-INIwfITYhQwHhzE7npgBOyiO23JGjReQKQGpcPqs_qAldACzVdMY_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Er5sBLzOLoPDg9y3inTxRsPUXuLu1bOsiPiNN74RqoaUg8yX8CZl6wQZFoDErdToIXZQgsdnQVwSajTo8Irt2g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Er5sBLzOLoPDg9y3inTxRsPUXuLu1bOsiPiNN74RqoaUg8yX8CZl6wQZFoDErdToIXZQgsdnQVwSajTo8Irt2g== new file mode 100644 index 0000000..e239e4f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Er5sBLzOLoPDg9y3inTxRsPUXuLu1bOsiPiNN74RqoaUg8yX8CZl6wQZFoDErdToIXZQgsdnQVwSajTo8Irt2g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Es14WLFsoNpFxb8XjodhwirK7gbb-uKDWy9XgNNmddBWiazXLs1ozcZBPYpJMGHv4JveHpgYS30gz_cgu1W6yg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Es14WLFsoNpFxb8XjodhwirK7gbb-uKDWy9XgNNmddBWiazXLs1ozcZBPYpJMGHv4JveHpgYS30gz_cgu1W6yg== new file mode 100644 index 0000000..8396ab3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Es14WLFsoNpFxb8XjodhwirK7gbb-uKDWy9XgNNmddBWiazXLs1ozcZBPYpJMGHv4JveHpgYS30gz_cgu1W6yg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EtY9XRMTKzcCZQvlH8Yq6bbCrZKqQ6rOzgDOx5yFGmlnsPDs1gOFOkecZG1N3ZKrWOxopCiLdtiskZNhAc_2qg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EtY9XRMTKzcCZQvlH8Yq6bbCrZKqQ6rOzgDOx5yFGmlnsPDs1gOFOkecZG1N3ZKrWOxopCiLdtiskZNhAc_2qg== new file mode 100644 index 0000000..ecabefe Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~EtY9XRMTKzcCZQvlH8Yq6bbCrZKqQ6rOzgDOx5yFGmlnsPDs1gOFOkecZG1N3ZKrWOxopCiLdtiskZNhAc_2qg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~F-pW5kLCaTOcXF2HDtRr68Kb6KYY3ayNuPNmV22jVeEBPlST1x-BMwXM8h8SnjmT7EsI4zw61Nz74tgPhsypzQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~F-pW5kLCaTOcXF2HDtRr68Kb6KYY3ayNuPNmV22jVeEBPlST1x-BMwXM8h8SnjmT7EsI4zw61Nz74tgPhsypzQ== new file mode 100644 index 0000000..0f8ab5a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~F-pW5kLCaTOcXF2HDtRr68Kb6KYY3ayNuPNmV22jVeEBPlST1x-BMwXM8h8SnjmT7EsI4zw61Nz74tgPhsypzQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~F21gWx-qPhoSfFMK8ZfqAQobZatRfP0a3-h5pDP0TbmrWDVzJ8yWcRgjizNPxKBNMg-Toh94bvzC_JRIR2D7vQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~F21gWx-qPhoSfFMK8ZfqAQobZatRfP0a3-h5pDP0TbmrWDVzJ8yWcRgjizNPxKBNMg-Toh94bvzC_JRIR2D7vQ== new file mode 100644 index 0000000..e610fdd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~F21gWx-qPhoSfFMK8ZfqAQobZatRfP0a3-h5pDP0TbmrWDVzJ8yWcRgjizNPxKBNMg-Toh94bvzC_JRIR2D7vQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FA2dvyzo5eX_O22l84q1UBoSBNCxHBDaePYwGpHsaPZUR56jSmzZTKfVZ9eeXFm9FzPUsN4CPZJLS2upgtRshw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FA2dvyzo5eX_O22l84q1UBoSBNCxHBDaePYwGpHsaPZUR56jSmzZTKfVZ9eeXFm9FzPUsN4CPZJLS2upgtRshw== new file mode 100644 index 0000000..02377f9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FA2dvyzo5eX_O22l84q1UBoSBNCxHBDaePYwGpHsaPZUR56jSmzZTKfVZ9eeXFm9FzPUsN4CPZJLS2upgtRshw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FC40coUJSK6j851Dvpa_S9gYL3lOdS_BV-AxHup_qe_HUaq4TJeicaj9fqiinwAwiIP1S4azeObhhccsDp7ACQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FC40coUJSK6j851Dvpa_S9gYL3lOdS_BV-AxHup_qe_HUaq4TJeicaj9fqiinwAwiIP1S4azeObhhccsDp7ACQ== new file mode 100644 index 0000000..4e26c72 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FC40coUJSK6j851Dvpa_S9gYL3lOdS_BV-AxHup_qe_HUaq4TJeicaj9fqiinwAwiIP1S4azeObhhccsDp7ACQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FLInpEnmGotjWBoLlMRAIDekWVe-NR90f3zZWalc7ykZaghP_4hDNNqe9q6Mskc0QpsSvMaNfiYZb4zVUpl7nA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FLInpEnmGotjWBoLlMRAIDekWVe-NR90f3zZWalc7ykZaghP_4hDNNqe9q6Mskc0QpsSvMaNfiYZb4zVUpl7nA== new file mode 100644 index 0000000..30349ed Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FLInpEnmGotjWBoLlMRAIDekWVe-NR90f3zZWalc7ykZaghP_4hDNNqe9q6Mskc0QpsSvMaNfiYZb4zVUpl7nA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FP46HfwcNAPXCMC3i4fGP_W1JDHolJn_hCCo8QHpB3SxuHkw58pMu6DT7PU0OJhEmJBXPSbScz4oxND2jSuopA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FP46HfwcNAPXCMC3i4fGP_W1JDHolJn_hCCo8QHpB3SxuHkw58pMu6DT7PU0OJhEmJBXPSbScz4oxND2jSuopA== new file mode 100644 index 0000000..e225076 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FP46HfwcNAPXCMC3i4fGP_W1JDHolJn_hCCo8QHpB3SxuHkw58pMu6DT7PU0OJhEmJBXPSbScz4oxND2jSuopA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FPhBqPc3B_6fVEbN0wZJ54K1gQ0wj0xlJJrWrP741siiveIy3ZetgkUsmpWUYUw8sbPvOzaIq5BjhY86qwFjxQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FPhBqPc3B_6fVEbN0wZJ54K1gQ0wj0xlJJrWrP741siiveIy3ZetgkUsmpWUYUw8sbPvOzaIq5BjhY86qwFjxQ== new file mode 100644 index 0000000..9d96e35 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FPhBqPc3B_6fVEbN0wZJ54K1gQ0wj0xlJJrWrP741siiveIy3ZetgkUsmpWUYUw8sbPvOzaIq5BjhY86qwFjxQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FSpCm3MMOPa0JcNHkQe3V4f3CusCrOG6VzQhpsX9BmifcioajhWZHjWSlIxwzi38LAnCvWF2XpiIYmyQGS88tw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FSpCm3MMOPa0JcNHkQe3V4f3CusCrOG6VzQhpsX9BmifcioajhWZHjWSlIxwzi38LAnCvWF2XpiIYmyQGS88tw== new file mode 100644 index 0000000..4699b96 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FSpCm3MMOPa0JcNHkQe3V4f3CusCrOG6VzQhpsX9BmifcioajhWZHjWSlIxwzi38LAnCvWF2XpiIYmyQGS88tw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FVNuNTGtVI1LvRwNt8ZsVhcyyjXOCj6Ea7KGxU_IIueQMbZa57A2KfUnaR2v1HBoAy2uYiAjIWqcITtJikV4LA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FVNuNTGtVI1LvRwNt8ZsVhcyyjXOCj6Ea7KGxU_IIueQMbZa57A2KfUnaR2v1HBoAy2uYiAjIWqcITtJikV4LA== new file mode 100644 index 0000000..b61cce9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FVNuNTGtVI1LvRwNt8ZsVhcyyjXOCj6Ea7KGxU_IIueQMbZa57A2KfUnaR2v1HBoAy2uYiAjIWqcITtJikV4LA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Fimf-zDewaH9TlKx9jChwrg2DeOqnls3dIAtd3bnkuFL6RAHZf2DQ_7-fm01DE0BSusVowRAOmYpoSwX4ZzXhQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Fimf-zDewaH9TlKx9jChwrg2DeOqnls3dIAtd3bnkuFL6RAHZf2DQ_7-fm01DE0BSusVowRAOmYpoSwX4ZzXhQ== new file mode 100644 index 0000000..9cc546c --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Fimf-zDewaH9TlKx9jChwrg2DeOqnls3dIAtd3bnkuFL6RAHZf2DQ_7-fm01DE0BSusVowRAOmYpoSwX4ZzXhQ== @@ -0,0 +1 @@ +[{"type":1,"name":"BA8080844F3C02BEE601336E722F08"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Fit-GPZkn8v8jCP4eKQrq3_L5Dmdfyfvwd9MX-QkUHRmugjcz2YzcX4EhdwiptCbYbUPymADg9lTS9GArNAb6w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Fit-GPZkn8v8jCP4eKQrq3_L5Dmdfyfvwd9MX-QkUHRmugjcz2YzcX4EhdwiptCbYbUPymADg9lTS9GArNAb6w== new file mode 100644 index 0000000..ae2f94e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Fit-GPZkn8v8jCP4eKQrq3_L5Dmdfyfvwd9MX-QkUHRmugjcz2YzcX4EhdwiptCbYbUPymADg9lTS9GArNAb6w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Fm68gNkd8-X7_DaPFJ_vtY7IxYAoTcVWR4Hj8CoBgLuLdsIqAziQCXolTSNu4gsvMEYD_eQu2sh5eaExbTHPcw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Fm68gNkd8-X7_DaPFJ_vtY7IxYAoTcVWR4Hj8CoBgLuLdsIqAziQCXolTSNu4gsvMEYD_eQu2sh5eaExbTHPcw== new file mode 100644 index 0000000..190d8f4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Fm68gNkd8-X7_DaPFJ_vtY7IxYAoTcVWR4Hj8CoBgLuLdsIqAziQCXolTSNu4gsvMEYD_eQu2sh5eaExbTHPcw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Fw0qp4QbShsoQzplmQeNuxsBxF1vOIFvlPxrAAmcO8gBcAOe4hSQ6hjEysDbQEif4tScq3dGHlhgHLgP2TPaTg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Fw0qp4QbShsoQzplmQeNuxsBxF1vOIFvlPxrAAmcO8gBcAOe4hSQ6hjEysDbQEif4tScq3dGHlhgHLgP2TPaTg== new file mode 100644 index 0000000..b90b1d2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Fw0qp4QbShsoQzplmQeNuxsBxF1vOIFvlPxrAAmcO8gBcAOe4hSQ6hjEysDbQEif4tScq3dGHlhgHLgP2TPaTg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FywSASYzczKBNqGlmIY7j6sVpjowo2zaQddB_DO3V7RlbU-nFgpLYlV4CrAd4J36J9vbC37HULRevbRNU0Vqrg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FywSASYzczKBNqGlmIY7j6sVpjowo2zaQddB_DO3V7RlbU-nFgpLYlV4CrAd4J36J9vbC37HULRevbRNU0Vqrg== new file mode 100644 index 0000000..45c0cb3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~FywSASYzczKBNqGlmIY7j6sVpjowo2zaQddB_DO3V7RlbU-nFgpLYlV4CrAd4J36J9vbC37HULRevbRNU0Vqrg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~G6vqsiKgjnPYV6LGwI_m9qCECYYkcVp0oZj2uvDpOWArmHQM34qkclAiR_KLGEyXDkHbaVfqaJ1if0SVonUr-Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~G6vqsiKgjnPYV6LGwI_m9qCECYYkcVp0oZj2uvDpOWArmHQM34qkclAiR_KLGEyXDkHbaVfqaJ1if0SVonUr-Q== new file mode 100644 index 0000000..042cbf8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~G6vqsiKgjnPYV6LGwI_m9qCECYYkcVp0oZj2uvDpOWArmHQM34qkclAiR_KLGEyXDkHbaVfqaJ1if0SVonUr-Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~GO5L81Os-DmlNRQQW-BFyiDtOvWpqNY2ByR9hZqTARhYxmLqASpuh246QIl046ls6AEvJR_MezkZcOVwxzE3hw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~GO5L81Os-DmlNRQQW-BFyiDtOvWpqNY2ByR9hZqTARhYxmLqASpuh246QIl046ls6AEvJR_MezkZcOVwxzE3hw== new file mode 100644 index 0000000..85b5697 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~GO5L81Os-DmlNRQQW-BFyiDtOvWpqNY2ByR9hZqTARhYxmLqASpuh246QIl046ls6AEvJR_MezkZcOVwxzE3hw== @@ -0,0 +1 @@ +[{"type":1,"name":"BA97D45EEB3A938F9E5F2155A86445"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~GOXNoXcQpUk1pISJRyRFnhaCQ8ld_hrEA-ke9LehgmF3xZ8wXkEXNe_69yXqN9jqFuwFS3HSzvfzdLFvWoaW_Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~GOXNoXcQpUk1pISJRyRFnhaCQ8ld_hrEA-ke9LehgmF3xZ8wXkEXNe_69yXqN9jqFuwFS3HSzvfzdLFvWoaW_Q== new file mode 100644 index 0000000..e83a7de Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~GOXNoXcQpUk1pISJRyRFnhaCQ8ld_hrEA-ke9LehgmF3xZ8wXkEXNe_69yXqN9jqFuwFS3HSzvfzdLFvWoaW_Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Gh4kggtrxtP94SBeZvnAvrtUuWMQPs6L2Lh7iX8px09X1ODDOxEFdWeKgqthkdpLhcWkq1FZajXQyySZmc9PDA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Gh4kggtrxtP94SBeZvnAvrtUuWMQPs6L2Lh7iX8px09X1ODDOxEFdWeKgqthkdpLhcWkq1FZajXQyySZmc9PDA== new file mode 100644 index 0000000..48632ae Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Gh4kggtrxtP94SBeZvnAvrtUuWMQPs6L2Lh7iX8px09X1ODDOxEFdWeKgqthkdpLhcWkq1FZajXQyySZmc9PDA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~GhlrQiK-l7gnmv5gQEYIoF-OdB1cMyxe19JUI8gtPiB6uqkAghWdARbVtlwbuuAA8794zzGR3J0Bc4P4ZBaCpw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~GhlrQiK-l7gnmv5gQEYIoF-OdB1cMyxe19JUI8gtPiB6uqkAghWdARbVtlwbuuAA8794zzGR3J0Bc4P4ZBaCpw== new file mode 100644 index 0000000..278d7c5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~GhlrQiK-l7gnmv5gQEYIoF-OdB1cMyxe19JUI8gtPiB6uqkAghWdARbVtlwbuuAA8794zzGR3J0Bc4P4ZBaCpw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Gmp_03WyX7EIlyadD5GwvB4vCS1YumNZLDTffrxIkbkDhOvl6jZst65EB_VFzqRcy-ixx0-NbgdQk-Pf3xeMgg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Gmp_03WyX7EIlyadD5GwvB4vCS1YumNZLDTffrxIkbkDhOvl6jZst65EB_VFzqRcy-ixx0-NbgdQk-Pf3xeMgg== new file mode 100644 index 0000000..8478091 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Gmp_03WyX7EIlyadD5GwvB4vCS1YumNZLDTffrxIkbkDhOvl6jZst65EB_VFzqRcy-ixx0-NbgdQk-Pf3xeMgg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~H-WX3u1mNAZ3Y364nHPmiqAzgi4vELS2yJgm_4p32ybu_zCjdKr-_aXrc4AOm9FXG0dnsutAwhsGYAmsCygMYw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~H-WX3u1mNAZ3Y364nHPmiqAzgi4vELS2yJgm_4p32ybu_zCjdKr-_aXrc4AOm9FXG0dnsutAwhsGYAmsCygMYw== new file mode 100644 index 0000000..a9dd9ce --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~H-WX3u1mNAZ3Y364nHPmiqAzgi4vELS2yJgm_4p32ybu_zCjdKr-_aXrc4AOm9FXG0dnsutAwhsGYAmsCygMYw== @@ -0,0 +1 @@ +[{"type":1,"name":"D43C48C2CA3818B9069DB33C911324"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~H9OfdyEqZ5JYG9QTAFV4_A7nspR2QwBdBRQhiijfExEsQoXLFVsKeoeO-RIkT3lQDYfKyHHiPlE1Oz9WOBGUcA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~H9OfdyEqZ5JYG9QTAFV4_A7nspR2QwBdBRQhiijfExEsQoXLFVsKeoeO-RIkT3lQDYfKyHHiPlE1Oz9WOBGUcA== new file mode 100644 index 0000000..ae556b0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~H9OfdyEqZ5JYG9QTAFV4_A7nspR2QwBdBRQhiijfExEsQoXLFVsKeoeO-RIkT3lQDYfKyHHiPlE1Oz9WOBGUcA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HFYdbQCf_kFEqz4kxeMVYonQIA2DkB7SWDJOQrDlptmA8Ys6ii-HBm0-p7VBmDn1PFrYEeafzUB9HZkx1jOntg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HFYdbQCf_kFEqz4kxeMVYonQIA2DkB7SWDJOQrDlptmA8Ys6ii-HBm0-p7VBmDn1PFrYEeafzUB9HZkx1jOntg== new file mode 100644 index 0000000..47923fa Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HFYdbQCf_kFEqz4kxeMVYonQIA2DkB7SWDJOQrDlptmA8Ys6ii-HBm0-p7VBmDn1PFrYEeafzUB9HZkx1jOntg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HIdsdSnCRs2vn6jZqbpmuNNfopo8Obz8suARALidN7zDzlUppmwILx-W77H7ZF0idSXWwFLNT-1NsyMck1MGjw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HIdsdSnCRs2vn6jZqbpmuNNfopo8Obz8suARALidN7zDzlUppmwILx-W77H7ZF0idSXWwFLNT-1NsyMck1MGjw== new file mode 100644 index 0000000..7c22776 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HIdsdSnCRs2vn6jZqbpmuNNfopo8Obz8suARALidN7zDzlUppmwILx-W77H7ZF0idSXWwFLNT-1NsyMck1MGjw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HN32skdp_7GpmgJH1bN8ZeH842M358fA0HQu9ZM1a7EcCJfopDysJTCzFP60BM_DmRN2s8GZDE3PMcVbSG66-Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HN32skdp_7GpmgJH1bN8ZeH842M358fA0HQu9ZM1a7EcCJfopDysJTCzFP60BM_DmRN2s8GZDE3PMcVbSG66-Q== new file mode 100644 index 0000000..9b6953e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HN32skdp_7GpmgJH1bN8ZeH842M358fA0HQu9ZM1a7EcCJfopDysJTCzFP60BM_DmRN2s8GZDE3PMcVbSG66-Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HROBzYBYJSbkNzUFASmNmOUzUtEAfKHzpoJTT2hS2YnrPaRbla2vsHoTdiIms2017GgW_S0W4jqWLU0mQjb6rw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HROBzYBYJSbkNzUFASmNmOUzUtEAfKHzpoJTT2hS2YnrPaRbla2vsHoTdiIms2017GgW_S0W4jqWLU0mQjb6rw== new file mode 100644 index 0000000..4aac518 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HROBzYBYJSbkNzUFASmNmOUzUtEAfKHzpoJTT2hS2YnrPaRbla2vsHoTdiIms2017GgW_S0W4jqWLU0mQjb6rw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HS305DccBlWF1AWiVpMu_lfMtk43nMp4OGy3FexLSoCKk-79t3NIfehB3Gnwr5yDv6fEaBU5gJpSoL_J3zEP0Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HS305DccBlWF1AWiVpMu_lfMtk43nMp4OGy3FexLSoCKk-79t3NIfehB3Gnwr5yDv6fEaBU5gJpSoL_J3zEP0Q== new file mode 100644 index 0000000..05f0fe1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HS305DccBlWF1AWiVpMu_lfMtk43nMp4OGy3FexLSoCKk-79t3NIfehB3Gnwr5yDv6fEaBU5gJpSoL_J3zEP0Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HTMg2jUs1Kh3nmjL_Z2bPRKB1k-iKGdME-GBryn0CVep5OReYVt5wiCMnOsJ_iSIb2EIybGqc_8IdfD0BCKeEw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HTMg2jUs1Kh3nmjL_Z2bPRKB1k-iKGdME-GBryn0CVep5OReYVt5wiCMnOsJ_iSIb2EIybGqc_8IdfD0BCKeEw== new file mode 100644 index 0000000..a10e2d8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HTMg2jUs1Kh3nmjL_Z2bPRKB1k-iKGdME-GBryn0CVep5OReYVt5wiCMnOsJ_iSIb2EIybGqc_8IdfD0BCKeEw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HecNhNxCvexmBSX7DVH_kMmz_iEcSeWlu8zrr2AhaoQA1p06l_WnQDgVPNRQHjlw7MfB53I6ZGZemNBAd2QebQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HecNhNxCvexmBSX7DVH_kMmz_iEcSeWlu8zrr2AhaoQA1p06l_WnQDgVPNRQHjlw7MfB53I6ZGZemNBAd2QebQ== new file mode 100644 index 0000000..9955390 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HecNhNxCvexmBSX7DVH_kMmz_iEcSeWlu8zrr2AhaoQA1p06l_WnQDgVPNRQHjlw7MfB53I6ZGZemNBAd2QebQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Hqh8KHoSbjxV2VcAmIfRDVu01RQ4NluEyPbOBRH4NXCVPMSiGdhzX5q3iKa7fmsjRWxj4PzltfsxZt2Gpb3Fmg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Hqh8KHoSbjxV2VcAmIfRDVu01RQ4NluEyPbOBRH4NXCVPMSiGdhzX5q3iKa7fmsjRWxj4PzltfsxZt2Gpb3Fmg== new file mode 100644 index 0000000..e44240d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Hqh8KHoSbjxV2VcAmIfRDVu01RQ4NluEyPbOBRH4NXCVPMSiGdhzX5q3iKa7fmsjRWxj4PzltfsxZt2Gpb3Fmg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HuJ7AYG5LwLEXoaRHuVi_uI5JpdXxpKXl3uGPVmkzsHsoqN6lzyj15PhuDclFZOVgLewgxFaKZy-xwlCZ_fuvg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HuJ7AYG5LwLEXoaRHuVi_uI5JpdXxpKXl3uGPVmkzsHsoqN6lzyj15PhuDclFZOVgLewgxFaKZy-xwlCZ_fuvg== new file mode 100644 index 0000000..929b8d5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~HuJ7AYG5LwLEXoaRHuVi_uI5JpdXxpKXl3uGPVmkzsHsoqN6lzyj15PhuDclFZOVgLewgxFaKZy-xwlCZ_fuvg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~I58CB_L39T8ktUV_goUYpc9_-vXd2xAAsIXM8CLdLNRnMFNXec35TH_YMlGtG0O0M2tq6mllxJacofYVvwciMQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~I58CB_L39T8ktUV_goUYpc9_-vXd2xAAsIXM8CLdLNRnMFNXec35TH_YMlGtG0O0M2tq6mllxJacofYVvwciMQ== new file mode 100644 index 0000000..5515458 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~I58CB_L39T8ktUV_goUYpc9_-vXd2xAAsIXM8CLdLNRnMFNXec35TH_YMlGtG0O0M2tq6mllxJacofYVvwciMQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~I6vWMB5L8j1RWL2AS5o33SRcHqjDv0fBQThvOkBla5nNo6ibQUzCsIuZpJOALIEoyZPwBjJXsYJfhUCzsVA4nw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~I6vWMB5L8j1RWL2AS5o33SRcHqjDv0fBQThvOkBla5nNo6ibQUzCsIuZpJOALIEoyZPwBjJXsYJfhUCzsVA4nw== new file mode 100644 index 0000000..6324ebd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~I6vWMB5L8j1RWL2AS5o33SRcHqjDv0fBQThvOkBla5nNo6ibQUzCsIuZpJOALIEoyZPwBjJXsYJfhUCzsVA4nw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~I7neW9mQ0wGGzapf6kqG9XH1KMF-ubymb1JwSsu4fHJHzKbzSR4eVlzWgRX5dINkuIK91hSWZzDjCd5NE3jxEQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~I7neW9mQ0wGGzapf6kqG9XH1KMF-ubymb1JwSsu4fHJHzKbzSR4eVlzWgRX5dINkuIK91hSWZzDjCd5NE3jxEQ== new file mode 100644 index 0000000..f63007e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~I7neW9mQ0wGGzapf6kqG9XH1KMF-ubymb1JwSsu4fHJHzKbzSR4eVlzWgRX5dINkuIK91hSWZzDjCd5NE3jxEQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IAMaaglYdY1U-6F1MZ2P37Yv1wmiQxQDavNIo41ydADADFYsq7EXF_qD1b_j6ard0jHGQuD_Zn2bCeKjwe42ow== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IAMaaglYdY1U-6F1MZ2P37Yv1wmiQxQDavNIo41ydADADFYsq7EXF_qD1b_j6ard0jHGQuD_Zn2bCeKjwe42ow== new file mode 100644 index 0000000..d03c488 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IAMaaglYdY1U-6F1MZ2P37Yv1wmiQxQDavNIo41ydADADFYsq7EXF_qD1b_j6ard0jHGQuD_Zn2bCeKjwe42ow== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IAqKzWBIYnfUjAkCg8qFLmwz300df3oli4bnVryhW4as02ygK6AE7uScFVsBfED4jPNao6rK8E9kQywiHRvuSg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IAqKzWBIYnfUjAkCg8qFLmwz300df3oli4bnVryhW4as02ygK6AE7uScFVsBfED4jPNao6rK8E9kQywiHRvuSg== new file mode 100644 index 0000000..5958aed --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IAqKzWBIYnfUjAkCg8qFLmwz300df3oli4bnVryhW4as02ygK6AE7uScFVsBfED4jPNao6rK8E9kQywiHRvuSg== @@ -0,0 +1 @@ +[{"type":1,"name":"78A411BC373416843E1C6AEE75B305"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IW2E6LnW2H8Vk8viRs6jal8lbEIYy32v7ohwFpluCEy8vFYY89-k_yZJlkjxc52oeNPdoBctggp1MPvThQfgEA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IW2E6LnW2H8Vk8viRs6jal8lbEIYy32v7ohwFpluCEy8vFYY89-k_yZJlkjxc52oeNPdoBctggp1MPvThQfgEA== new file mode 100644 index 0000000..a62e00a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IW2E6LnW2H8Vk8viRs6jal8lbEIYy32v7ohwFpluCEy8vFYY89-k_yZJlkjxc52oeNPdoBctggp1MPvThQfgEA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IWh2QmM67WM2SQoTEqRaT1slv3MEGo_E50rMhysEDnq-CVP-RTSRsWuHJeJc7GQskOJDYzh5mTd7PH1AKWzkaw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IWh2QmM67WM2SQoTEqRaT1slv3MEGo_E50rMhysEDnq-CVP-RTSRsWuHJeJc7GQskOJDYzh5mTd7PH1AKWzkaw== new file mode 100644 index 0000000..7104af4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IWh2QmM67WM2SQoTEqRaT1slv3MEGo_E50rMhysEDnq-CVP-RTSRsWuHJeJc7GQskOJDYzh5mTd7PH1AKWzkaw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IXr4heXP7Fd_NCz_akazSBLFtpWne75BM08M6MC3C9aVRaB57pYsqyDSyh2inL95sZoqA34AXjFDbzrenf-oXA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IXr4heXP7Fd_NCz_akazSBLFtpWne75BM08M6MC3C9aVRaB57pYsqyDSyh2inL95sZoqA34AXjFDbzrenf-oXA== new file mode 100644 index 0000000..3dddaf7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IXr4heXP7Fd_NCz_akazSBLFtpWne75BM08M6MC3C9aVRaB57pYsqyDSyh2inL95sZoqA34AXjFDbzrenf-oXA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Igp4k22KEA7ldF5QXIT44rp3660Ao3BU-OVOQBPJtspyp14JHKNSelQpa1XSk1gvnUO-ki4Fyk2dZ179I0IjLg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Igp4k22KEA7ldF5QXIT44rp3660Ao3BU-OVOQBPJtspyp14JHKNSelQpa1XSk1gvnUO-ki4Fyk2dZ179I0IjLg== new file mode 100644 index 0000000..94e8b9e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Igp4k22KEA7ldF5QXIT44rp3660Ao3BU-OVOQBPJtspyp14JHKNSelQpa1XSk1gvnUO-ki4Fyk2dZ179I0IjLg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Io5UQJUgjhY5y_9Y3moB3zk7jG5rw2LybH--qeCVrZ1XtayGE1SRqXkBTM8Ks79jPzyQCRwy1fj7SNLxzCO1Kg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Io5UQJUgjhY5y_9Y3moB3zk7jG5rw2LybH--qeCVrZ1XtayGE1SRqXkBTM8Ks79jPzyQCRwy1fj7SNLxzCO1Kg== new file mode 100644 index 0000000..577d3c6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Io5UQJUgjhY5y_9Y3moB3zk7jG5rw2LybH--qeCVrZ1XtayGE1SRqXkBTM8Ks79jPzyQCRwy1fj7SNLxzCO1Kg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IpzsS0a4tXQPM_dGr8APz2zKFohkPYkXlyAQ1TBTvDTea_8jiS1uwsMyNOc6ChHTENu9GbH5lph2I6MEU0AmjA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IpzsS0a4tXQPM_dGr8APz2zKFohkPYkXlyAQ1TBTvDTea_8jiS1uwsMyNOc6ChHTENu9GbH5lph2I6MEU0AmjA== new file mode 100644 index 0000000..6a01612 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~IpzsS0a4tXQPM_dGr8APz2zKFohkPYkXlyAQ1TBTvDTea_8jiS1uwsMyNOc6ChHTENu9GbH5lph2I6MEU0AmjA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Iw7aMgu3cxgEZ_AONcYYN4SN9_5ijGkrMrz_M9193-Y7yENMQg7dpEuDzNpd9xuKoHCdoO0cUgEg39cawctHmA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Iw7aMgu3cxgEZ_AONcYYN4SN9_5ijGkrMrz_M9193-Y7yENMQg7dpEuDzNpd9xuKoHCdoO0cUgEg39cawctHmA== new file mode 100644 index 0000000..a117d78 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Iw7aMgu3cxgEZ_AONcYYN4SN9_5ijGkrMrz_M9193-Y7yENMQg7dpEuDzNpd9xuKoHCdoO0cUgEg39cawctHmA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Iz-aMKE0qjh2-Ij1d7S0YPQAxk87mU1ryhRAuO-j-Bs4IQ6T4hwAxfhDXsA4UxNa1jNv9e470y8KnzPnHTK2lA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Iz-aMKE0qjh2-Ij1d7S0YPQAxk87mU1ryhRAuO-j-Bs4IQ6T4hwAxfhDXsA4UxNa1jNv9e470y8KnzPnHTK2lA== new file mode 100644 index 0000000..bd33c59 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Iz-aMKE0qjh2-Ij1d7S0YPQAxk87mU1ryhRAuO-j-Bs4IQ6T4hwAxfhDXsA4UxNa1jNv9e470y8KnzPnHTK2lA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J1IHLGyqQeTWHfoePqZT3X13MyocgfPKtJC8A6ckNRhIx0cVF5Z0qu4bEyGzh2FDDBuEOqztsWeefmNaGar_5Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J1IHLGyqQeTWHfoePqZT3X13MyocgfPKtJC8A6ckNRhIx0cVF5Z0qu4bEyGzh2FDDBuEOqztsWeefmNaGar_5Q== new file mode 100644 index 0000000..09786ac Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J1IHLGyqQeTWHfoePqZT3X13MyocgfPKtJC8A6ckNRhIx0cVF5Z0qu4bEyGzh2FDDBuEOqztsWeefmNaGar_5Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J2nMKQxHluHRXtPM0vG4q5k7trTyVUf_gLu9gsuLoOirjKQp1E04nIvWMjo9ZpC4Vgo8wmE-05eOhD-XGhYNxA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J2nMKQxHluHRXtPM0vG4q5k7trTyVUf_gLu9gsuLoOirjKQp1E04nIvWMjo9ZpC4Vgo8wmE-05eOhD-XGhYNxA== new file mode 100644 index 0000000..2f11770 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J2nMKQxHluHRXtPM0vG4q5k7trTyVUf_gLu9gsuLoOirjKQp1E04nIvWMjo9ZpC4Vgo8wmE-05eOhD-XGhYNxA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J53CYiSHvTwXmwfR454nCEeFZFvRPQxyiSi_oTy9XHmsPnbKg63r42p0lUVKfTFVGcq8-9W6rHQLdoYcySNxPQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J53CYiSHvTwXmwfR454nCEeFZFvRPQxyiSi_oTy9XHmsPnbKg63r42p0lUVKfTFVGcq8-9W6rHQLdoYcySNxPQ== new file mode 100644 index 0000000..25aeb9d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J53CYiSHvTwXmwfR454nCEeFZFvRPQxyiSi_oTy9XHmsPnbKg63r42p0lUVKfTFVGcq8-9W6rHQLdoYcySNxPQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J5ppHd2Q9A6LjlUeuuwqkdJh1KXsrAFeDRGXst06J7sY554MmgcjYI06urf4PDu2NejpYh9mn4RlHinDxNznPA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J5ppHd2Q9A6LjlUeuuwqkdJh1KXsrAFeDRGXst06J7sY554MmgcjYI06urf4PDu2NejpYh9mn4RlHinDxNznPA== new file mode 100644 index 0000000..681daa2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J5ppHd2Q9A6LjlUeuuwqkdJh1KXsrAFeDRGXst06J7sY554MmgcjYI06urf4PDu2NejpYh9mn4RlHinDxNznPA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J6gd3_HhQSFHTeDqY486qo-ZVbnWN9rYrKQmbMg6Vf6MqUjo6Ke_dCv0NEpavyQg8ctNHl9qvc2Ag6BxCQu-ZQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J6gd3_HhQSFHTeDqY486qo-ZVbnWN9rYrKQmbMg6Vf6MqUjo6Ke_dCv0NEpavyQg8ctNHl9qvc2Ag6BxCQu-ZQ== new file mode 100644 index 0000000..dea086e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~J6gd3_HhQSFHTeDqY486qo-ZVbnWN9rYrKQmbMg6Vf6MqUjo6Ke_dCv0NEpavyQg8ctNHl9qvc2Ag6BxCQu-ZQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JTAxG7voBpH0isf5-L3KA-6Z_1wEqEhg3mjSa7d_i61FGmAN-4g11JnVjza1NIvqtGMRtXRh16rjfC18KFt5jg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JTAxG7voBpH0isf5-L3KA-6Z_1wEqEhg3mjSa7d_i61FGmAN-4g11JnVjza1NIvqtGMRtXRh16rjfC18KFt5jg== new file mode 100644 index 0000000..e426620 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JTAxG7voBpH0isf5-L3KA-6Z_1wEqEhg3mjSa7d_i61FGmAN-4g11JnVjza1NIvqtGMRtXRh16rjfC18KFt5jg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JedvTnsn-sKlJ9xcX9-5MEou1bm_gtAIygV35OsUegxTpjT3uRu_7yF1pMAaZ4qx257nc2ga1jEjFeZPXyC_lg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JedvTnsn-sKlJ9xcX9-5MEou1bm_gtAIygV35OsUegxTpjT3uRu_7yF1pMAaZ4qx257nc2ga1jEjFeZPXyC_lg== new file mode 100644 index 0000000..7be971d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JedvTnsn-sKlJ9xcX9-5MEou1bm_gtAIygV35OsUegxTpjT3uRu_7yF1pMAaZ4qx257nc2ga1jEjFeZPXyC_lg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JjJOz1Dnhottkn__mPA_wUgr4_Tkxq0ErJKDFR2EbHDJJjLAQEwETL5Pooga8K8MAf4bPShasAyBUmv8oOxnCg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JjJOz1Dnhottkn__mPA_wUgr4_Tkxq0ErJKDFR2EbHDJJjLAQEwETL5Pooga8K8MAf4bPShasAyBUmv8oOxnCg== new file mode 100644 index 0000000..4453561 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JjJOz1Dnhottkn__mPA_wUgr4_Tkxq0ErJKDFR2EbHDJJjLAQEwETL5Pooga8K8MAf4bPShasAyBUmv8oOxnCg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JlUV0AZQINwclhLwyiApPsyTsvwN58bIrZ_0CXu_pWmAS2Gnai22C5wG0AK6-i8wjf7WTrl2-6yGMjoG1RRocg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JlUV0AZQINwclhLwyiApPsyTsvwN58bIrZ_0CXu_pWmAS2Gnai22C5wG0AK6-i8wjf7WTrl2-6yGMjoG1RRocg== new file mode 100644 index 0000000..7486a6d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JlUV0AZQINwclhLwyiApPsyTsvwN58bIrZ_0CXu_pWmAS2Gnai22C5wG0AK6-i8wjf7WTrl2-6yGMjoG1RRocg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JmXete5vQPE9xP24SOOKRTyYlrEE7IN3ag4bctvFv9WNeABpyXvu8Sk081neK5jD5BORNi_R58j43wQa-6q5FQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JmXete5vQPE9xP24SOOKRTyYlrEE7IN3ag4bctvFv9WNeABpyXvu8Sk081neK5jD5BORNi_R58j43wQa-6q5FQ== new file mode 100644 index 0000000..40a4e42 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JmXete5vQPE9xP24SOOKRTyYlrEE7IN3ag4bctvFv9WNeABpyXvu8Sk081neK5jD5BORNi_R58j43wQa-6q5FQ== @@ -0,0 +1 @@ +[{"type":1,"name":"19A00BE4BB38A7A8184DAA39DC9326"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Jr1arxBUA5pmPe0R78s0uJcUkg1PlKGWusJJWyIZbx5JMevnGonRYg5zbBuxBak2y3iRm3U02bc_PQz5fC29gg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Jr1arxBUA5pmPe0R78s0uJcUkg1PlKGWusJJWyIZbx5JMevnGonRYg5zbBuxBak2y3iRm3U02bc_PQz5fC29gg== new file mode 100644 index 0000000..95cb3b6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Jr1arxBUA5pmPe0R78s0uJcUkg1PlKGWusJJWyIZbx5JMevnGonRYg5zbBuxBak2y3iRm3U02bc_PQz5fC29gg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JudVVK2Mbw-p2pzAdtFQ9oIQgwFruI4hJCXV6EIZByjnYvuIcvorj6bhxiY6mmlVnfdhWRmUSPvH70pHrYScVQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JudVVK2Mbw-p2pzAdtFQ9oIQgwFruI4hJCXV6EIZByjnYvuIcvorj6bhxiY6mmlVnfdhWRmUSPvH70pHrYScVQ== new file mode 100644 index 0000000..3919463 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~JudVVK2Mbw-p2pzAdtFQ9oIQgwFruI4hJCXV6EIZByjnYvuIcvorj6bhxiY6mmlVnfdhWRmUSPvH70pHrYScVQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~K5Xc509qFfCr-Kbrn5sD4pXmrlIMR_rb6Pvi-kc1K4Op0EGlF99NmI8l--lgOWuauyxm0KaAGrIAkrpkZ-9gfQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~K5Xc509qFfCr-Kbrn5sD4pXmrlIMR_rb6Pvi-kc1K4Op0EGlF99NmI8l--lgOWuauyxm0KaAGrIAkrpkZ-9gfQ== new file mode 100644 index 0000000..e17cc5c --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~K5Xc509qFfCr-Kbrn5sD4pXmrlIMR_rb6Pvi-kc1K4Op0EGlF99NmI8l--lgOWuauyxm0KaAGrIAkrpkZ-9gfQ== @@ -0,0 +1 @@ +[{"type":1,"name":"9ECAA18E203FDABD1585028763463C"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~K7FvEHll1p4-0j-3B68u7CmkXfugd5GK3mihijkYAs0YaK82bzg-p96H53eStpzY44KSCztgNX3uFGNOtNCtBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~K7FvEHll1p4-0j-3B68u7CmkXfugd5GK3mihijkYAs0YaK82bzg-p96H53eStpzY44KSCztgNX3uFGNOtNCtBA== new file mode 100644 index 0000000..752c32e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~K7FvEHll1p4-0j-3B68u7CmkXfugd5GK3mihijkYAs0YaK82bzg-p96H53eStpzY44KSCztgNX3uFGNOtNCtBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~K9OXJtxgqGn75WpC2pSxXZ0jPOQmigucU82poiW3iVtY2SOgvj2YTJMZBi3afBYDI-DJa6noVwL3oseTFelAhw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~K9OXJtxgqGn75WpC2pSxXZ0jPOQmigucU82poiW3iVtY2SOgvj2YTJMZBi3afBYDI-DJa6noVwL3oseTFelAhw== new file mode 100644 index 0000000..484b2da Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~K9OXJtxgqGn75WpC2pSxXZ0jPOQmigucU82poiW3iVtY2SOgvj2YTJMZBi3afBYDI-DJa6noVwL3oseTFelAhw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KAXbthmvW8oc1tJrCkkmYusyN0PB42rG_eNjIWYGfYbqBPNZhs6gkIdz5OpFq4w0lEczUVMLy8aCG4cz0ysm1Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KAXbthmvW8oc1tJrCkkmYusyN0PB42rG_eNjIWYGfYbqBPNZhs6gkIdz5OpFq4w0lEczUVMLy8aCG4cz0ysm1Q== new file mode 100644 index 0000000..751eed3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KAXbthmvW8oc1tJrCkkmYusyN0PB42rG_eNjIWYGfYbqBPNZhs6gkIdz5OpFq4w0lEczUVMLy8aCG4cz0ysm1Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KC8Z6RZngNmMfQ-0_VAlBa7h6oeXv0cbf_V-OSMbU3N7n5jem1yQ667fvhYd6xdXp8QYhV6YfwzuvwcI1BVGfA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KC8Z6RZngNmMfQ-0_VAlBa7h6oeXv0cbf_V-OSMbU3N7n5jem1yQ667fvhYd6xdXp8QYhV6YfwzuvwcI1BVGfA== new file mode 100644 index 0000000..7aebf0f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KC8Z6RZngNmMfQ-0_VAlBa7h6oeXv0cbf_V-OSMbU3N7n5jem1yQ667fvhYd6xdXp8QYhV6YfwzuvwcI1BVGfA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KJt8yWx0HO3tRmh44hg6CoRHOwVFDPokomRhRKS-NqrFKO6oOHt9076rLm2wFo3sBfc6OhMdRdtW7d5GzgsLsw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KJt8yWx0HO3tRmh44hg6CoRHOwVFDPokomRhRKS-NqrFKO6oOHt9076rLm2wFo3sBfc6OhMdRdtW7d5GzgsLsw== new file mode 100644 index 0000000..f7f9a91 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KJt8yWx0HO3tRmh44hg6CoRHOwVFDPokomRhRKS-NqrFKO6oOHt9076rLm2wFo3sBfc6OhMdRdtW7d5GzgsLsw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KQx6TTYPe1yqQ7Jf4YDRiODKd7msc5jPUCzHrWe_zivt0s8AiV5YLwUbFvdcMfIne2iRUQZxdYLD-xPSMed81g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KQx6TTYPe1yqQ7Jf4YDRiODKd7msc5jPUCzHrWe_zivt0s8AiV5YLwUbFvdcMfIne2iRUQZxdYLD-xPSMed81g== new file mode 100644 index 0000000..d337a64 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KQx6TTYPe1yqQ7Jf4YDRiODKd7msc5jPUCzHrWe_zivt0s8AiV5YLwUbFvdcMfIne2iRUQZxdYLD-xPSMed81g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KYxeFupB77rj8mVU1cx0VfnY9MTskEG5mQoiDN4-Ti4jQsWoOe2bxjblG4R5gqzthXJ0FlBL-aGd2e0WFb6pjg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KYxeFupB77rj8mVU1cx0VfnY9MTskEG5mQoiDN4-Ti4jQsWoOe2bxjblG4R5gqzthXJ0FlBL-aGd2e0WFb6pjg== new file mode 100644 index 0000000..102c5a6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KYxeFupB77rj8mVU1cx0VfnY9MTskEG5mQoiDN4-Ti4jQsWoOe2bxjblG4R5gqzthXJ0FlBL-aGd2e0WFb6pjg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KdPf2Vae2F_69_jo48rOSiQl0V_8D2ZX1vuJ0EJm3l3BdjooHh9-0uTjbE1hAL2_nDLwqh7DnXHIBWOkwldOYA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KdPf2Vae2F_69_jo48rOSiQl0V_8D2ZX1vuJ0EJm3l3BdjooHh9-0uTjbE1hAL2_nDLwqh7DnXHIBWOkwldOYA== new file mode 100644 index 0000000..c2ca6d0 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KdPf2Vae2F_69_jo48rOSiQl0V_8D2ZX1vuJ0EJm3l3BdjooHh9-0uTjbE1hAL2_nDLwqh7DnXHIBWOkwldOYA== @@ -0,0 +1 @@ +[{"type":1,"name":"FA851116353102923C5D37B9C883B2"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Klrv2Np3w3FmUMNRa54QGKwGHUXDJweJbXKOsvoGB4fjHtndCanjIOHbwdkyiM8g_ptXl3JvUIfn2Tbw82nqww== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Klrv2Np3w3FmUMNRa54QGKwGHUXDJweJbXKOsvoGB4fjHtndCanjIOHbwdkyiM8g_ptXl3JvUIfn2Tbw82nqww== new file mode 100644 index 0000000..d06cc05 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Klrv2Np3w3FmUMNRa54QGKwGHUXDJweJbXKOsvoGB4fjHtndCanjIOHbwdkyiM8g_ptXl3JvUIfn2Tbw82nqww== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KprGUE1zp3hAlw92jgG6ozf4Hc9qMLtQxZOwiHTF-54FKCxi5znYJFfY8rsSIwIWeqeIPTaVEuSlnNfbiue8tA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KprGUE1zp3hAlw92jgG6ozf4Hc9qMLtQxZOwiHTF-54FKCxi5znYJFfY8rsSIwIWeqeIPTaVEuSlnNfbiue8tA== new file mode 100644 index 0000000..9d2f29f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KprGUE1zp3hAlw92jgG6ozf4Hc9qMLtQxZOwiHTF-54FKCxi5znYJFfY8rsSIwIWeqeIPTaVEuSlnNfbiue8tA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KrhXiEcuXC5jGKgL5cBPe1518uTfTAVqqZrfDRXFMMvaE1MfzcVWeG_M64tRs4Q3TCzNSyJNSuJWFRot-N9YxQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KrhXiEcuXC5jGKgL5cBPe1518uTfTAVqqZrfDRXFMMvaE1MfzcVWeG_M64tRs4Q3TCzNSyJNSuJWFRot-N9YxQ== new file mode 100644 index 0000000..4478abb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KrhXiEcuXC5jGKgL5cBPe1518uTfTAVqqZrfDRXFMMvaE1MfzcVWeG_M64tRs4Q3TCzNSyJNSuJWFRot-N9YxQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KxPA_pdmXc6zV14KKXj4DEbNHb_S4Q1pASGWEeoHw9HsGeXaqbrHU_u3rKSE6vWPwbyAvwFfyxOWHAl_9jdz3g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KxPA_pdmXc6zV14KKXj4DEbNHb_S4Q1pASGWEeoHw9HsGeXaqbrHU_u3rKSE6vWPwbyAvwFfyxOWHAl_9jdz3g== new file mode 100644 index 0000000..f634042 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~KxPA_pdmXc6zV14KKXj4DEbNHb_S4Q1pASGWEeoHw9HsGeXaqbrHU_u3rKSE6vWPwbyAvwFfyxOWHAl_9jdz3g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~L9TozNVHV8EtJAUlKSfHBFxIaHHO-eYy1z9UVkO7-1MnGhGUzHFvt6NTJsY1M69cRjUgrtUejJps4q5o8iVmFA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~L9TozNVHV8EtJAUlKSfHBFxIaHHO-eYy1z9UVkO7-1MnGhGUzHFvt6NTJsY1M69cRjUgrtUejJps4q5o8iVmFA== new file mode 100644 index 0000000..728f34b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~L9TozNVHV8EtJAUlKSfHBFxIaHHO-eYy1z9UVkO7-1MnGhGUzHFvt6NTJsY1M69cRjUgrtUejJps4q5o8iVmFA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LCXayUMAuK9M6DBFKR7AWx0ovOY8tG5FPSb4U5wip6KU0iXpu1FuhVICJef_x8Njl1D-bCWgpMBi8HMNgLukFg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LCXayUMAuK9M6DBFKR7AWx0ovOY8tG5FPSb4U5wip6KU0iXpu1FuhVICJef_x8Njl1D-bCWgpMBi8HMNgLukFg== new file mode 100644 index 0000000..5187779 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LCXayUMAuK9M6DBFKR7AWx0ovOY8tG5FPSb4U5wip6KU0iXpu1FuhVICJef_x8Njl1D-bCWgpMBi8HMNgLukFg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LCZmxOUdDwN9DhGALgjiMUibHiG7Pih_GYLAfpYvDabNA0ameCanVdp-zgTTNGEfnQddR1oRwbISoeK2duQNnA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LCZmxOUdDwN9DhGALgjiMUibHiG7Pih_GYLAfpYvDabNA0ameCanVdp-zgTTNGEfnQddR1oRwbISoeK2duQNnA== new file mode 100644 index 0000000..02e9a49 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LCZmxOUdDwN9DhGALgjiMUibHiG7Pih_GYLAfpYvDabNA0ameCanVdp-zgTTNGEfnQddR1oRwbISoeK2duQNnA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LHEjHE4C2wKRpGWRVh2id-ahnJqZ4No6Yf5w3FzgxHk1Y5sfXPUGNMMoxDC-IZKbFwYnOIM125X4xQaZml0Z1w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LHEjHE4C2wKRpGWRVh2id-ahnJqZ4No6Yf5w3FzgxHk1Y5sfXPUGNMMoxDC-IZKbFwYnOIM125X4xQaZml0Z1w== new file mode 100644 index 0000000..230f069 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LHEjHE4C2wKRpGWRVh2id-ahnJqZ4No6Yf5w3FzgxHk1Y5sfXPUGNMMoxDC-IZKbFwYnOIM125X4xQaZml0Z1w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LJ8Qu57d6-E-x9VFK-Tp40ZrjbqB20I0Gfzv_gv8VsnU1to3rkUXIWE4vw9FyyxKrx3-w-lL7x7TbzjfxTH_Gw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LJ8Qu57d6-E-x9VFK-Tp40ZrjbqB20I0Gfzv_gv8VsnU1to3rkUXIWE4vw9FyyxKrx3-w-lL7x7TbzjfxTH_Gw== new file mode 100644 index 0000000..cb3209b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LJ8Qu57d6-E-x9VFK-Tp40ZrjbqB20I0Gfzv_gv8VsnU1to3rkUXIWE4vw9FyyxKrx3-w-lL7x7TbzjfxTH_Gw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LRMemuPo-Nonyg4NpPR0yvtGtQ2FMr6q1I5bGt2WqUGQ-fFOtyVD_8viMy4PaM4ky0C5LI48vrvKbAIP9ZuqKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LRMemuPo-Nonyg4NpPR0yvtGtQ2FMr6q1I5bGt2WqUGQ-fFOtyVD_8viMy4PaM4ky0C5LI48vrvKbAIP9ZuqKw== new file mode 100644 index 0000000..5445334 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LRMemuPo-Nonyg4NpPR0yvtGtQ2FMr6q1I5bGt2WqUGQ-fFOtyVD_8viMy4PaM4ky0C5LI48vrvKbAIP9ZuqKw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LRyrCFzGV6CBb2Y_CqhYxqKxdF2Uh79-1knF6Ap3PawS3Zpq4gn9qTW721pyleiHK2aXMm--YajtXTfyu1Bvgw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LRyrCFzGV6CBb2Y_CqhYxqKxdF2Uh79-1knF6Ap3PawS3Zpq4gn9qTW721pyleiHK2aXMm--YajtXTfyu1Bvgw== new file mode 100644 index 0000000..ba36c89 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LRyrCFzGV6CBb2Y_CqhYxqKxdF2Uh79-1knF6Ap3PawS3Zpq4gn9qTW721pyleiHK2aXMm--YajtXTfyu1Bvgw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LSnP3M3YFN53gXJHZeAz6AzKPu1HJLblEjyhf-bOqDc8cg6piHyHPk4TJSnKdQXIlNChXgTeO_SQN3Q2w7qgVA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LSnP3M3YFN53gXJHZeAz6AzKPu1HJLblEjyhf-bOqDc8cg6piHyHPk4TJSnKdQXIlNChXgTeO_SQN3Q2w7qgVA== new file mode 100644 index 0000000..c976ff8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LSnP3M3YFN53gXJHZeAz6AzKPu1HJLblEjyhf-bOqDc8cg6piHyHPk4TJSnKdQXIlNChXgTeO_SQN3Q2w7qgVA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LVQ0tpAgyOXqA-6eiLyHcQCAzMxyU10iUU3d1f_yG7Wi-fuVX9U_WEnrFgcavTEcbHXvRxxaqMCxEG1QaQCDKA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LVQ0tpAgyOXqA-6eiLyHcQCAzMxyU10iUU3d1f_yG7Wi-fuVX9U_WEnrFgcavTEcbHXvRxxaqMCxEG1QaQCDKA== new file mode 100644 index 0000000..74e98b2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LVQ0tpAgyOXqA-6eiLyHcQCAzMxyU10iUU3d1f_yG7Wi-fuVX9U_WEnrFgcavTEcbHXvRxxaqMCxEG1QaQCDKA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LZgL5FlOjV1sF1yX62U-mp7zx5D8Qi6fvfpxaWAmdb4lS6Gxpop5CoYr9lmJruGrUolkfl0BAwG_ynyZwZ8w9Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LZgL5FlOjV1sF1yX62U-mp7zx5D8Qi6fvfpxaWAmdb4lS6Gxpop5CoYr9lmJruGrUolkfl0BAwG_ynyZwZ8w9Q== new file mode 100644 index 0000000..891ef89 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LZgL5FlOjV1sF1yX62U-mp7zx5D8Qi6fvfpxaWAmdb4lS6Gxpop5CoYr9lmJruGrUolkfl0BAwG_ynyZwZ8w9Q== @@ -0,0 +1 @@ +[{"type":1,"name":"9EAF480DC33D81ADFBD4B724C64781"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~L_Lr1WaqpRkXl2WdcnjK-BhafIWV9PIJrg5QSh3RhYnERzHgS36qClu686KbN6Kvm4-7jwFFWxGn0QhdKbC-Vg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~L_Lr1WaqpRkXl2WdcnjK-BhafIWV9PIJrg5QSh3RhYnERzHgS36qClu686KbN6Kvm4-7jwFFWxGn0QhdKbC-Vg== new file mode 100644 index 0000000..2c64eb1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~L_Lr1WaqpRkXl2WdcnjK-BhafIWV9PIJrg5QSh3RhYnERzHgS36qClu686KbN6Kvm4-7jwFFWxGn0QhdKbC-Vg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~La-jE8rk65-r5xk6rzmV4nSR7Q_WAzcad2SDfnF0iY-x5qKPheLLbiwXb_FQajjiyy00989RIU9KgC_vtaK-Aw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~La-jE8rk65-r5xk6rzmV4nSR7Q_WAzcad2SDfnF0iY-x5qKPheLLbiwXb_FQajjiyy00989RIU9KgC_vtaK-Aw== new file mode 100644 index 0000000..2061c31 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~La-jE8rk65-r5xk6rzmV4nSR7Q_WAzcad2SDfnF0iY-x5qKPheLLbiwXb_FQajjiyy00989RIU9KgC_vtaK-Aw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Lmwi_CF6lFxK9TiRh1RF4fUdfybOlb2cCKYu2sps75ROc78ZyTV1lNCip4GA3F3Dp8MpDBDDuQ5O_e1s27CQkA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Lmwi_CF6lFxK9TiRh1RF4fUdfybOlb2cCKYu2sps75ROc78ZyTV1lNCip4GA3F3Dp8MpDBDDuQ5O_e1s27CQkA== new file mode 100644 index 0000000..2382278 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Lmwi_CF6lFxK9TiRh1RF4fUdfybOlb2cCKYu2sps75ROc78ZyTV1lNCip4GA3F3Dp8MpDBDDuQ5O_e1s27CQkA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LuQpNjS6sOQFigP3hv0a91pfDpyoEgzWOnxTPIpJScfvEb4YONYJo1j-qhxZqc2h3UqzsgW--KlTsC-Jih5U-Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LuQpNjS6sOQFigP3hv0a91pfDpyoEgzWOnxTPIpJScfvEb4YONYJo1j-qhxZqc2h3UqzsgW--KlTsC-Jih5U-Q== new file mode 100644 index 0000000..106849f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LuQpNjS6sOQFigP3hv0a91pfDpyoEgzWOnxTPIpJScfvEb4YONYJo1j-qhxZqc2h3UqzsgW--KlTsC-Jih5U-Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LvzSN6Nhj4HKZxNNkqB_tM5i2_VfGKFsumynH4NsuuzWoY7lw4_Cm2jvtnmQixckJ5lFkRUvc8ZcHOu32FOv6g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LvzSN6Nhj4HKZxNNkqB_tM5i2_VfGKFsumynH4NsuuzWoY7lw4_Cm2jvtnmQixckJ5lFkRUvc8ZcHOu32FOv6g== new file mode 100644 index 0000000..fcd7bac Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~LvzSN6Nhj4HKZxNNkqB_tM5i2_VfGKFsumynH4NsuuzWoY7lw4_Cm2jvtnmQixckJ5lFkRUvc8ZcHOu32FOv6g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~M3rkNwllQVOFcSG9ET3FK8EFI4k3K4aFmSNkJnaMeXiLK3oIbMbFBYvyWlQAGSk0g42voOkWWSCLl5eCel5tow== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~M3rkNwllQVOFcSG9ET3FK8EFI4k3K4aFmSNkJnaMeXiLK3oIbMbFBYvyWlQAGSk0g42voOkWWSCLl5eCel5tow== new file mode 100644 index 0000000..45e29f1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~M3rkNwllQVOFcSG9ET3FK8EFI4k3K4aFmSNkJnaMeXiLK3oIbMbFBYvyWlQAGSk0g42voOkWWSCLl5eCel5tow== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~M6N5nmPlUv-8S6TxSvBZeD2xQk6vzwwGtAJWycXuu7MPyYzVjTelR6oGf4EKTfrXsRLTsGm4dt9Q1_g45YJSqA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~M6N5nmPlUv-8S6TxSvBZeD2xQk6vzwwGtAJWycXuu7MPyYzVjTelR6oGf4EKTfrXsRLTsGm4dt9Q1_g45YJSqA== new file mode 100644 index 0000000..bd0e282 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~M6N5nmPlUv-8S6TxSvBZeD2xQk6vzwwGtAJWycXuu7MPyYzVjTelR6oGf4EKTfrXsRLTsGm4dt9Q1_g45YJSqA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~M7xWB265hozzCj-47zHliBTn3DMFHiVTpxEZUdFVrRvYJIG4WqiMmYgfgtefYiJb-4TeXUJu7TA6VnYRfMyEmg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~M7xWB265hozzCj-47zHliBTn3DMFHiVTpxEZUdFVrRvYJIG4WqiMmYgfgtefYiJb-4TeXUJu7TA6VnYRfMyEmg== new file mode 100644 index 0000000..55fe3bb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~M7xWB265hozzCj-47zHliBTn3DMFHiVTpxEZUdFVrRvYJIG4WqiMmYgfgtefYiJb-4TeXUJu7TA6VnYRfMyEmg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MAB3dUL7HF03bO3eNpATR1kEB_0wARFPAPKlSwORNiGAvh7bQibezxfTlGH4dUh1UugCRWhhvl-YpU3I4fo0eg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MAB3dUL7HF03bO3eNpATR1kEB_0wARFPAPKlSwORNiGAvh7bQibezxfTlGH4dUh1UugCRWhhvl-YpU3I4fo0eg== new file mode 100644 index 0000000..3e84838 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MAB3dUL7HF03bO3eNpATR1kEB_0wARFPAPKlSwORNiGAvh7bQibezxfTlGH4dUh1UugCRWhhvl-YpU3I4fo0eg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MCThuh5CiijVxMbvROwDyRg1XeeaWfDDUM_AyFyVPVW6jeVYxPlhgW1USF97eWtTzpz_z4BY-GHNbFlKca-eyg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MCThuh5CiijVxMbvROwDyRg1XeeaWfDDUM_AyFyVPVW6jeVYxPlhgW1USF97eWtTzpz_z4BY-GHNbFlKca-eyg== new file mode 100644 index 0000000..e00ebd9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MCThuh5CiijVxMbvROwDyRg1XeeaWfDDUM_AyFyVPVW6jeVYxPlhgW1USF97eWtTzpz_z4BY-GHNbFlKca-eyg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MENtlG5nXepWid-mrKDfMEf6lKqsC1TczTxxH3nId2WsBDkLHKwHKAZlu12tGr12ErJJycz2tfVtB_XyFVGppQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MENtlG5nXepWid-mrKDfMEf6lKqsC1TczTxxH3nId2WsBDkLHKwHKAZlu12tGr12ErJJycz2tfVtB_XyFVGppQ== new file mode 100644 index 0000000..66740d4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MENtlG5nXepWid-mrKDfMEf6lKqsC1TczTxxH3nId2WsBDkLHKwHKAZlu12tGr12ErJJycz2tfVtB_XyFVGppQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MGauZ2wwmyTIMrlue723sNcPqnirID_wfe50levMe8yQtPZHJ1gkS2ywV49eH9XvA_r5Uf0xKGwuu5tJGoXcMQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MGauZ2wwmyTIMrlue723sNcPqnirID_wfe50levMe8yQtPZHJ1gkS2ywV49eH9XvA_r5Uf0xKGwuu5tJGoXcMQ== new file mode 100644 index 0000000..9ac795d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MGauZ2wwmyTIMrlue723sNcPqnirID_wfe50levMe8yQtPZHJ1gkS2ywV49eH9XvA_r5Uf0xKGwuu5tJGoXcMQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MKmBWQogaSW_vd7dFWUvFKBvAGfYYn3mNVNfbqs5kM49ggW9uMriavo4rz4i8DS8bxCquHJLo_PDK0E2SUiXtQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MKmBWQogaSW_vd7dFWUvFKBvAGfYYn3mNVNfbqs5kM49ggW9uMriavo4rz4i8DS8bxCquHJLo_PDK0E2SUiXtQ== new file mode 100644 index 0000000..89c81fc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MKmBWQogaSW_vd7dFWUvFKBvAGfYYn3mNVNfbqs5kM49ggW9uMriavo4rz4i8DS8bxCquHJLo_PDK0E2SUiXtQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MMyQuGRORLebhG2drWd7qRE75jpg7_L4_fuotzGFMqEarNfYlXcOD_FsWHw4izEPeGvbWfEFkbxYsicUkgjvbw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MMyQuGRORLebhG2drWd7qRE75jpg7_L4_fuotzGFMqEarNfYlXcOD_FsWHw4izEPeGvbWfEFkbxYsicUkgjvbw== new file mode 100644 index 0000000..a8b3fab Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MMyQuGRORLebhG2drWd7qRE75jpg7_L4_fuotzGFMqEarNfYlXcOD_FsWHw4izEPeGvbWfEFkbxYsicUkgjvbw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MNv9LOQdzaCpmu25IpkqsWniHw9XYEAszNE3fEnryKgk6D2Zvbhkjdna5_8GtickKbtVxPJQJ17hQlv62hIWIg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MNv9LOQdzaCpmu25IpkqsWniHw9XYEAszNE3fEnryKgk6D2Zvbhkjdna5_8GtickKbtVxPJQJ17hQlv62hIWIg== new file mode 100644 index 0000000..f6f311a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MNv9LOQdzaCpmu25IpkqsWniHw9XYEAszNE3fEnryKgk6D2Zvbhkjdna5_8GtickKbtVxPJQJ17hQlv62hIWIg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MOUl5CoPvcaYQPIuwHnFdn08TtKRfXrky6IijZJOUpJ6S0chLlx2rEygGEDuN_qRKgnEJqFXOeLZgFbpR3uflA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MOUl5CoPvcaYQPIuwHnFdn08TtKRfXrky6IijZJOUpJ6S0chLlx2rEygGEDuN_qRKgnEJqFXOeLZgFbpR3uflA== new file mode 100644 index 0000000..820a30c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MOUl5CoPvcaYQPIuwHnFdn08TtKRfXrky6IijZJOUpJ6S0chLlx2rEygGEDuN_qRKgnEJqFXOeLZgFbpR3uflA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~McuxnVBQdYjZaNpra7ebn6iAOy3s7pw5elwcqsRxC1Tm-8RlWCISX3iWvU3yqcSFw9QiKRJ2OZHsF3sRH2YPNA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~McuxnVBQdYjZaNpra7ebn6iAOy3s7pw5elwcqsRxC1Tm-8RlWCISX3iWvU3yqcSFw9QiKRJ2OZHsF3sRH2YPNA== new file mode 100644 index 0000000..a896d67 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~McuxnVBQdYjZaNpra7ebn6iAOy3s7pw5elwcqsRxC1Tm-8RlWCISX3iWvU3yqcSFw9QiKRJ2OZHsF3sRH2YPNA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MhIfPtvv24hPHPfqD4r7MbWwGIt-_y3PSgJLNjkoUMmrDMEdYYsTltFgYOVgwIOzob3bLuzV7-x_8bmOMFFtwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MhIfPtvv24hPHPfqD4r7MbWwGIt-_y3PSgJLNjkoUMmrDMEdYYsTltFgYOVgwIOzob3bLuzV7-x_8bmOMFFtwg== new file mode 100644 index 0000000..8eeecd3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MhIfPtvv24hPHPfqD4r7MbWwGIt-_y3PSgJLNjkoUMmrDMEdYYsTltFgYOVgwIOzob3bLuzV7-x_8bmOMFFtwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MiDGO2roJ5GW4HX7tjniKES3FXNHtJyxl-OwG7DQKJNhWin31FaIPqwR1N5HXrpCTsCI58_1C93sn8N3eYNjhw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MiDGO2roJ5GW4HX7tjniKES3FXNHtJyxl-OwG7DQKJNhWin31FaIPqwR1N5HXrpCTsCI58_1C93sn8N3eYNjhw== new file mode 100644 index 0000000..9dbdb31 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MiDGO2roJ5GW4HX7tjniKES3FXNHtJyxl-OwG7DQKJNhWin31FaIPqwR1N5HXrpCTsCI58_1C93sn8N3eYNjhw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MpHOas5c8XfaMmneaMtpQJeOEykISDK5XOIyHI_46X75K58d4v8ExdWMFhROKmC0eZ5U9u0LptEWWJlcrcaYJw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MpHOas5c8XfaMmneaMtpQJeOEykISDK5XOIyHI_46X75K58d4v8ExdWMFhROKmC0eZ5U9u0LptEWWJlcrcaYJw== new file mode 100644 index 0000000..072f3ae Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MpHOas5c8XfaMmneaMtpQJeOEykISDK5XOIyHI_46X75K58d4v8ExdWMFhROKmC0eZ5U9u0LptEWWJlcrcaYJw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MqCb_QqG_JusVTQXY2LUpbylPMOhfd089uLzqrlZLmclBqg520PAAHFHCMJ9jXTGLz1SVQsHhiUuiQ1SFMiZVw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MqCb_QqG_JusVTQXY2LUpbylPMOhfd089uLzqrlZLmclBqg520PAAHFHCMJ9jXTGLz1SVQsHhiUuiQ1SFMiZVw== new file mode 100644 index 0000000..754308b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~MqCb_QqG_JusVTQXY2LUpbylPMOhfd089uLzqrlZLmclBqg520PAAHFHCMJ9jXTGLz1SVQsHhiUuiQ1SFMiZVw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~My_XXSjwShXMsMVWfzBuLr8nuTxx43uW1iPgMQJkzlnuKEeUXu7f1WMSKaoAvbAd1yq-qy_7xjpISw8jdCQwyw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~My_XXSjwShXMsMVWfzBuLr8nuTxx43uW1iPgMQJkzlnuKEeUXu7f1WMSKaoAvbAd1yq-qy_7xjpISw8jdCQwyw== new file mode 100644 index 0000000..17bd944 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~My_XXSjwShXMsMVWfzBuLr8nuTxx43uW1iPgMQJkzlnuKEeUXu7f1WMSKaoAvbAd1yq-qy_7xjpISw8jdCQwyw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Myr2-A16OlNKGrH5WL7rBYnpu9qi_MV0ieuvaLr0PZtfFTNJ17DV2cWACeSgeJhhIIQfChjD_pYPUssUeCz5Ng== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Myr2-A16OlNKGrH5WL7rBYnpu9qi_MV0ieuvaLr0PZtfFTNJ17DV2cWACeSgeJhhIIQfChjD_pYPUssUeCz5Ng== new file mode 100644 index 0000000..b779689 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Myr2-A16OlNKGrH5WL7rBYnpu9qi_MV0ieuvaLr0PZtfFTNJ17DV2cWACeSgeJhhIIQfChjD_pYPUssUeCz5Ng== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N-Vqu55zFJ2JGjnbh8RG3QhTihQrZxu_Rchhn-2C7geZfw9SBzZjVA5IulHlP5D8VB2yFt6gLw_cATDiZjaPcA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N-Vqu55zFJ2JGjnbh8RG3QhTihQrZxu_Rchhn-2C7geZfw9SBzZjVA5IulHlP5D8VB2yFt6gLw_cATDiZjaPcA== new file mode 100644 index 0000000..7bab082 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N-Vqu55zFJ2JGjnbh8RG3QhTihQrZxu_Rchhn-2C7geZfw9SBzZjVA5IulHlP5D8VB2yFt6gLw_cATDiZjaPcA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N0Ny6WaLa2_9UE6124ssXhOdNjklmmwb_blKeSh_58-hjSMY-akD8bUqBl8DwhZ1yyMxCH2ZRJzDPZhd5nfY9g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N0Ny6WaLa2_9UE6124ssXhOdNjklmmwb_blKeSh_58-hjSMY-akD8bUqBl8DwhZ1yyMxCH2ZRJzDPZhd5nfY9g== new file mode 100644 index 0000000..3f0317c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N0Ny6WaLa2_9UE6124ssXhOdNjklmmwb_blKeSh_58-hjSMY-akD8bUqBl8DwhZ1yyMxCH2ZRJzDPZhd5nfY9g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N1wPAPAoW7iyxSYfPGTqwi9McYwiSHadInh2LA4e7ATi7pQi8CmCgn-0vWezRdp4z_1EC41T6YLfTXvlcE-uQA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N1wPAPAoW7iyxSYfPGTqwi9McYwiSHadInh2LA4e7ATi7pQi8CmCgn-0vWezRdp4z_1EC41T6YLfTXvlcE-uQA== new file mode 100644 index 0000000..62b55a3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N1wPAPAoW7iyxSYfPGTqwi9McYwiSHadInh2LA4e7ATi7pQi8CmCgn-0vWezRdp4z_1EC41T6YLfTXvlcE-uQA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N2S-JDmi6NT7wnIVnotJmYuHnB7QP1qVxg6DA6pXix64h0ER380s3hm0s4Ck_bRNuXHRai6GSBNAeVKMUAgZXQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N2S-JDmi6NT7wnIVnotJmYuHnB7QP1qVxg6DA6pXix64h0ER380s3hm0s4Ck_bRNuXHRai6GSBNAeVKMUAgZXQ== new file mode 100644 index 0000000..3296f9f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N2S-JDmi6NT7wnIVnotJmYuHnB7QP1qVxg6DA6pXix64h0ER380s3hm0s4Ck_bRNuXHRai6GSBNAeVKMUAgZXQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N2ULRKokrIDtA5j3ya10eWjX3htMfcAZ8BgMbsgXbw9LI5ESbN7JX7qnxftfQwuKUJzh_vILO-GUuOIfgh5X-w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N2ULRKokrIDtA5j3ya10eWjX3htMfcAZ8BgMbsgXbw9LI5ESbN7JX7qnxftfQwuKUJzh_vILO-GUuOIfgh5X-w== new file mode 100644 index 0000000..85eef4c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N2ULRKokrIDtA5j3ya10eWjX3htMfcAZ8BgMbsgXbw9LI5ESbN7JX7qnxftfQwuKUJzh_vILO-GUuOIfgh5X-w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N3JRIrauHMqwXlE9YCVST2NIpgMDQJvGuvI5VFlv0EADMW4NdojG_C5KNuj6GBGurSwoOkmBdZ6EnFDPw5EKzg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N3JRIrauHMqwXlE9YCVST2NIpgMDQJvGuvI5VFlv0EADMW4NdojG_C5KNuj6GBGurSwoOkmBdZ6EnFDPw5EKzg== new file mode 100644 index 0000000..13dd6ba Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N3JRIrauHMqwXlE9YCVST2NIpgMDQJvGuvI5VFlv0EADMW4NdojG_C5KNuj6GBGurSwoOkmBdZ6EnFDPw5EKzg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N3YA3C9jFfIitiiuRoA7SR7DqipcvtiJO5VB1BBcgaLjeN4fbnARfeXPrzKb8vL3_Aqn9kgJB36mKZoJdv0yoA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N3YA3C9jFfIitiiuRoA7SR7DqipcvtiJO5VB1BBcgaLjeN4fbnARfeXPrzKb8vL3_Aqn9kgJB36mKZoJdv0yoA== new file mode 100644 index 0000000..2760e04 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N3YA3C9jFfIitiiuRoA7SR7DqipcvtiJO5VB1BBcgaLjeN4fbnARfeXPrzKb8vL3_Aqn9kgJB36mKZoJdv0yoA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N8Y9nAs0mCejygoa9K4KBcqHI1NBl2foirCoQXKomSFf0dfX_K348EWR9lbVDacDwtQwU4zdMTRuyudzT9jlPA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N8Y9nAs0mCejygoa9K4KBcqHI1NBl2foirCoQXKomSFf0dfX_K348EWR9lbVDacDwtQwU4zdMTRuyudzT9jlPA== new file mode 100644 index 0000000..9982545 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~N8Y9nAs0mCejygoa9K4KBcqHI1NBl2foirCoQXKomSFf0dfX_K348EWR9lbVDacDwtQwU4zdMTRuyudzT9jlPA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NAHOAdGcnbWL9O1YA8NiNDjcdnKkids1g_tvQXEsyw0TYscl9Asi6f63gHlokrAZU5lNL2-udkznfYlFf5WZTA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NAHOAdGcnbWL9O1YA8NiNDjcdnKkids1g_tvQXEsyw0TYscl9Asi6f63gHlokrAZU5lNL2-udkznfYlFf5WZTA== new file mode 100644 index 0000000..32437c2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NAHOAdGcnbWL9O1YA8NiNDjcdnKkids1g_tvQXEsyw0TYscl9Asi6f63gHlokrAZU5lNL2-udkznfYlFf5WZTA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NDJBRP7ihG716R3q3D1zXxt4_h05GEQ43pB2dhRW6x5OT3CoASIND7pAK5Xt7-jC1SkBz3iudWQCjIKj0h3hAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NDJBRP7ihG716R3q3D1zXxt4_h05GEQ43pB2dhRW6x5OT3CoASIND7pAK5Xt7-jC1SkBz3iudWQCjIKj0h3hAg== new file mode 100644 index 0000000..0c601a1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NDJBRP7ihG716R3q3D1zXxt4_h05GEQ43pB2dhRW6x5OT3CoASIND7pAK5Xt7-jC1SkBz3iudWQCjIKj0h3hAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NFt23nFnxhltwUkSJKjCSVNmOuso9C6Bk-sBjQJ5lj1YJs-FNmFv-fWRaxKn_rW6IZj5tjmr_lb1CwSVcxmYHg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NFt23nFnxhltwUkSJKjCSVNmOuso9C6Bk-sBjQJ5lj1YJs-FNmFv-fWRaxKn_rW6IZj5tjmr_lb1CwSVcxmYHg== new file mode 100644 index 0000000..37d3cbe Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NFt23nFnxhltwUkSJKjCSVNmOuso9C6Bk-sBjQJ5lj1YJs-FNmFv-fWRaxKn_rW6IZj5tjmr_lb1CwSVcxmYHg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NHVVC_GT2frty6n5Asyi-dYB_tmJP3wjBiPLO1up_eS4atQVmd7pSYmqt2t333wW_SdrAtyqqoENiMRKYCszNA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NHVVC_GT2frty6n5Asyi-dYB_tmJP3wjBiPLO1up_eS4atQVmd7pSYmqt2t333wW_SdrAtyqqoENiMRKYCszNA== new file mode 100644 index 0000000..e56ffa4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NHVVC_GT2frty6n5Asyi-dYB_tmJP3wjBiPLO1up_eS4atQVmd7pSYmqt2t333wW_SdrAtyqqoENiMRKYCszNA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NJSza9DWdcXMr6WQ0yBqiDP0JBhc8di_7m_PFaRlo_4XaSSSxrjSMYP4m-NKW86-2FTjV1G6oAR3rZ51qj7jvQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NJSza9DWdcXMr6WQ0yBqiDP0JBhc8di_7m_PFaRlo_4XaSSSxrjSMYP4m-NKW86-2FTjV1G6oAR3rZ51qj7jvQ== new file mode 100644 index 0000000..28c4883 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NJSza9DWdcXMr6WQ0yBqiDP0JBhc8di_7m_PFaRlo_4XaSSSxrjSMYP4m-NKW86-2FTjV1G6oAR3rZ51qj7jvQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NNmDC_SrWdKTq0qsHxnpFUa8OjnBmW5zqzwfv69TSuNyv-DM0ChPxc4nUsr-ssqIX1QFzYmtjBs80dYReH5oBQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NNmDC_SrWdKTq0qsHxnpFUa8OjnBmW5zqzwfv69TSuNyv-DM0ChPxc4nUsr-ssqIX1QFzYmtjBs80dYReH5oBQ== new file mode 100644 index 0000000..f7a1810 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NNmDC_SrWdKTq0qsHxnpFUa8OjnBmW5zqzwfv69TSuNyv-DM0ChPxc4nUsr-ssqIX1QFzYmtjBs80dYReH5oBQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NPP9A-lYRFhh13rSPzqJgNciBN_O33zzD5I_nQ3_MnhzCLCkuhUrKKakeRpo-_NHepGNgdqYhxCmAsO3Dbmszw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NPP9A-lYRFhh13rSPzqJgNciBN_O33zzD5I_nQ3_MnhzCLCkuhUrKKakeRpo-_NHepGNgdqYhxCmAsO3Dbmszw== new file mode 100644 index 0000000..0d14187 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NPP9A-lYRFhh13rSPzqJgNciBN_O33zzD5I_nQ3_MnhzCLCkuhUrKKakeRpo-_NHepGNgdqYhxCmAsO3Dbmszw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NQ9_0Fd2Mgrj1hkzFm2pS2tz7gzVLvTGv3WcYq6q2kWfzRgULBSZsBrwdY158lYY2rQh7C8fvArctgqxuWTAmw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NQ9_0Fd2Mgrj1hkzFm2pS2tz7gzVLvTGv3WcYq6q2kWfzRgULBSZsBrwdY158lYY2rQh7C8fvArctgqxuWTAmw== new file mode 100644 index 0000000..2246f3d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NQ9_0Fd2Mgrj1hkzFm2pS2tz7gzVLvTGv3WcYq6q2kWfzRgULBSZsBrwdY158lYY2rQh7C8fvArctgqxuWTAmw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NQa8IoY9T1Ke_n7KNAMGB7bUxFonWw5QTvscaP-ZC_IZmVDXfUBlZZsZvg3oVAVjgUtZeqIBbGexQpk-mhB1og== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NQa8IoY9T1Ke_n7KNAMGB7bUxFonWw5QTvscaP-ZC_IZmVDXfUBlZZsZvg3oVAVjgUtZeqIBbGexQpk-mhB1og== new file mode 100644 index 0000000..779fb11 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NQa8IoY9T1Ke_n7KNAMGB7bUxFonWw5QTvscaP-ZC_IZmVDXfUBlZZsZvg3oVAVjgUtZeqIBbGexQpk-mhB1og== @@ -0,0 +1 @@ +[{"type":2,"name":"Retired"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NRKFF3PlICQYjh_FEWTqY9_NR9Ajh19HJb_KdqLuHBmatEr7FtGpvE3CAl_YouzP-blp1RpQg1NKs9aN4G7ZBw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NRKFF3PlICQYjh_FEWTqY9_NR9Ajh19HJb_KdqLuHBmatEr7FtGpvE3CAl_YouzP-blp1RpQg1NKs9aN4G7ZBw== new file mode 100644 index 0000000..97f2cf6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NRKFF3PlICQYjh_FEWTqY9_NR9Ajh19HJb_KdqLuHBmatEr7FtGpvE3CAl_YouzP-blp1RpQg1NKs9aN4G7ZBw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NRZrSRIFZW3zB5Wf-AGi6AXnJXRpGTLTL5R38rcu8JKgRrpSpAghupQVbx9-7gCfnsJZi-IP9-F5K_aZgGHWSw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NRZrSRIFZW3zB5Wf-AGi6AXnJXRpGTLTL5R38rcu8JKgRrpSpAghupQVbx9-7gCfnsJZi-IP9-F5K_aZgGHWSw== new file mode 100644 index 0000000..8165555 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NRZrSRIFZW3zB5Wf-AGi6AXnJXRpGTLTL5R38rcu8JKgRrpSpAghupQVbx9-7gCfnsJZi-IP9-F5K_aZgGHWSw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NWRwXjPL5JDO6Ma65OOI8YhmX_6ObWZIwCdiZrfC1RBXj52rEKnYMQvc8UumfLdhJQQJaYe4rOg-suG6h6KfWQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NWRwXjPL5JDO6Ma65OOI8YhmX_6ObWZIwCdiZrfC1RBXj52rEKnYMQvc8UumfLdhJQQJaYe4rOg-suG6h6KfWQ== new file mode 100644 index 0000000..91bf874 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NWRwXjPL5JDO6Ma65OOI8YhmX_6ObWZIwCdiZrfC1RBXj52rEKnYMQvc8UumfLdhJQQJaYe4rOg-suG6h6KfWQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NXHE2pUVU6tAzgjCwCaGzapp544AQ_-6W3hRvGigWBKsCmBy1F3HP0E727Oa2RY0vc7z1gVbxtL-DpuOUN7bhg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NXHE2pUVU6tAzgjCwCaGzapp544AQ_-6W3hRvGigWBKsCmBy1F3HP0E727Oa2RY0vc7z1gVbxtL-DpuOUN7bhg== new file mode 100644 index 0000000..15b1199 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NXHE2pUVU6tAzgjCwCaGzapp544AQ_-6W3hRvGigWBKsCmBy1F3HP0E727Oa2RY0vc7z1gVbxtL-DpuOUN7bhg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Nds5nAZ51mrEStezLt9uEeqONPYuJQ7AudRZCbqjsJVcPe8PjqncGYOk7Hm82RxRCT7do4yi0KIatJmkvmsVrw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Nds5nAZ51mrEStezLt9uEeqONPYuJQ7AudRZCbqjsJVcPe8PjqncGYOk7Hm82RxRCT7do4yi0KIatJmkvmsVrw== new file mode 100644 index 0000000..19b0cc7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Nds5nAZ51mrEStezLt9uEeqONPYuJQ7AudRZCbqjsJVcPe8PjqncGYOk7Hm82RxRCT7do4yi0KIatJmkvmsVrw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NiDEc-FJ2eYTigovDHMHkMFnXeevOaQWuGLb-3Ddg6BliDp12VC21YrUJfL2EQccd70u-ENCjHF54emAdBqfsQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NiDEc-FJ2eYTigovDHMHkMFnXeevOaQWuGLb-3Ddg6BliDp12VC21YrUJfL2EQccd70u-ENCjHF54emAdBqfsQ== new file mode 100644 index 0000000..e51c044 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NiDEc-FJ2eYTigovDHMHkMFnXeevOaQWuGLb-3Ddg6BliDp12VC21YrUJfL2EQccd70u-ENCjHF54emAdBqfsQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Njtf6M7MAeQhj7s3SRG3RTRuT_KPGduaxDaahoyjXs2ATBxo3hh1mTjqB8sTd9y99PYHasFyHYs9aUaKvi4noA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Njtf6M7MAeQhj7s3SRG3RTRuT_KPGduaxDaahoyjXs2ATBxo3hh1mTjqB8sTd9y99PYHasFyHYs9aUaKvi4noA== new file mode 100644 index 0000000..ba808bd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Njtf6M7MAeQhj7s3SRG3RTRuT_KPGduaxDaahoyjXs2ATBxo3hh1mTjqB8sTd9y99PYHasFyHYs9aUaKvi4noA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NrKX81S667ZlXDrl7d8YXLzuaeJFn1Sa2_jhg1fTK_oO75NEwkr6LmdbaiQHJSV4T0LKZOD-RJrIPovgB1TpvA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NrKX81S667ZlXDrl7d8YXLzuaeJFn1Sa2_jhg1fTK_oO75NEwkr6LmdbaiQHJSV4T0LKZOD-RJrIPovgB1TpvA== new file mode 100644 index 0000000..0fb7f3f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NrKX81S667ZlXDrl7d8YXLzuaeJFn1Sa2_jhg1fTK_oO75NEwkr6LmdbaiQHJSV4T0LKZOD-RJrIPovgB1TpvA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NrnFgcxvTV-N4sDPwMsgt1N1eNOZOOu6_cIcFAe0U9ViQfaRqvyr4olU8lHcjAEb_RL5Xe-5yjJNv_f6RYJL0A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NrnFgcxvTV-N4sDPwMsgt1N1eNOZOOu6_cIcFAe0U9ViQfaRqvyr4olU8lHcjAEb_RL5Xe-5yjJNv_f6RYJL0A== new file mode 100644 index 0000000..7f14837 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~NrnFgcxvTV-N4sDPwMsgt1N1eNOZOOu6_cIcFAe0U9ViQfaRqvyr4olU8lHcjAEb_RL5Xe-5yjJNv_f6RYJL0A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Nt7qxms8ZmsNsRjmGBUtm5XMDS5IxLPcKSzUyn0ctC-hnH1FSOZFH369IKyzYh2zhjBJqzgsFUApefATTS9eDw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Nt7qxms8ZmsNsRjmGBUtm5XMDS5IxLPcKSzUyn0ctC-hnH1FSOZFH369IKyzYh2zhjBJqzgsFUApefATTS9eDw== new file mode 100644 index 0000000..39e246e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Nt7qxms8ZmsNsRjmGBUtm5XMDS5IxLPcKSzUyn0ctC-hnH1FSOZFH369IKyzYh2zhjBJqzgsFUApefATTS9eDw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Nz2GAYr9P7ZhLPjpzL5b0SRZ6Judh8nasxLbZgrf_9ULC2vOWbCDek93ejRiThjk0iGB647JRSddeAQkXdm0_g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Nz2GAYr9P7ZhLPjpzL5b0SRZ6Judh8nasxLbZgrf_9ULC2vOWbCDek93ejRiThjk0iGB647JRSddeAQkXdm0_g== new file mode 100644 index 0000000..34283e3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Nz2GAYr9P7ZhLPjpzL5b0SRZ6Judh8nasxLbZgrf_9ULC2vOWbCDek93ejRiThjk0iGB647JRSddeAQkXdm0_g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Nzh_F4Dpwu-PIqkX2_1g5Vi1kq8coTPB4QTYg7olw1bt1aUBpUyH5r0CZIN21oRxfRX4Xjou6AsQSYMoRX5Lew== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Nzh_F4Dpwu-PIqkX2_1g5Vi1kq8coTPB4QTYg7olw1bt1aUBpUyH5r0CZIN21oRxfRX4Xjou6AsQSYMoRX5Lew== new file mode 100644 index 0000000..79a900a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Nzh_F4Dpwu-PIqkX2_1g5Vi1kq8coTPB4QTYg7olw1bt1aUBpUyH5r0CZIN21oRxfRX4Xjou6AsQSYMoRX5Lew== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~O4ZSeO1EliIIwFtaCwj8gKxuAWlLjfx5XJXHy8S-XKXZcMJchRX7Pth9XLDH92Pbn9LCEWaCRrVeRTb_bNzHTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~O4ZSeO1EliIIwFtaCwj8gKxuAWlLjfx5XJXHy8S-XKXZcMJchRX7Pth9XLDH92Pbn9LCEWaCRrVeRTb_bNzHTw== new file mode 100644 index 0000000..e98e5d1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~O4ZSeO1EliIIwFtaCwj8gKxuAWlLjfx5XJXHy8S-XKXZcMJchRX7Pth9XLDH92Pbn9LCEWaCRrVeRTb_bNzHTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OBmFZ7jW7P4cUneAFutVePU30qBhaCm-ja8lWXyBXA-meZzIIawTpS22QeCwTy1ZapDJm3kby_dYppFEteOiVg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OBmFZ7jW7P4cUneAFutVePU30qBhaCm-ja8lWXyBXA-meZzIIawTpS22QeCwTy1ZapDJm3kby_dYppFEteOiVg== new file mode 100644 index 0000000..1645694 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OBmFZ7jW7P4cUneAFutVePU30qBhaCm-ja8lWXyBXA-meZzIIawTpS22QeCwTy1ZapDJm3kby_dYppFEteOiVg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ONHW7O2pzgrG3CryDkA9_vmMJdFT8gfp61EoxsDW4nXCITFNt_CsBrXWP_qx0Fj3N5QJ1gGF1v3jD_JbaTbeew== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ONHW7O2pzgrG3CryDkA9_vmMJdFT8gfp61EoxsDW4nXCITFNt_CsBrXWP_qx0Fj3N5QJ1gGF1v3jD_JbaTbeew== new file mode 100644 index 0000000..1354ffa Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ONHW7O2pzgrG3CryDkA9_vmMJdFT8gfp61EoxsDW4nXCITFNt_CsBrXWP_qx0Fj3N5QJ1gGF1v3jD_JbaTbeew== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OOtgWmRWEGZunITunqypE3U7H7Cbud_2-F8GtgGF8W0DoQD-bU6yt1OsMie7-KD_OVSmV40nYRgj0Xw7MIm5aQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OOtgWmRWEGZunITunqypE3U7H7Cbud_2-F8GtgGF8W0DoQD-bU6yt1OsMie7-KD_OVSmV40nYRgj0Xw7MIm5aQ== new file mode 100644 index 0000000..8564382 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OOtgWmRWEGZunITunqypE3U7H7Cbud_2-F8GtgGF8W0DoQD-bU6yt1OsMie7-KD_OVSmV40nYRgj0Xw7MIm5aQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OXUoFphq2yaP270aZptuNGxi2PshxPRD8gBY4l8uYEOzrvDQHAJNJNr4qdDO0D3mCm-duHnUVBM4TbOuPxs1gA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OXUoFphq2yaP270aZptuNGxi2PshxPRD8gBY4l8uYEOzrvDQHAJNJNr4qdDO0D3mCm-duHnUVBM4TbOuPxs1gA== new file mode 100644 index 0000000..4d9b050 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OXUoFphq2yaP270aZptuNGxi2PshxPRD8gBY4l8uYEOzrvDQHAJNJNr4qdDO0D3mCm-duHnUVBM4TbOuPxs1gA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OZCuKigUW-vsz_2_PR2k8xU7UpV5Jdgt4ru2jeRtqcRJcz9obOj28Dhi1F0Lk-QEq2zKqwGRathuBF1lTvU27A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OZCuKigUW-vsz_2_PR2k8xU7UpV5Jdgt4ru2jeRtqcRJcz9obOj28Dhi1F0Lk-QEq2zKqwGRathuBF1lTvU27A== new file mode 100644 index 0000000..684bcd7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OZCuKigUW-vsz_2_PR2k8xU7UpV5Jdgt4ru2jeRtqcRJcz9obOj28Dhi1F0Lk-QEq2zKqwGRathuBF1lTvU27A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~O__Tj2nBiNopq2EYMl_FjDlFnrCPufQRpSjiSbfXsRjXz3VMXIVKz3Ai4z-Xv9PEKUIP9wMwLRcc0JBsgBJ2aQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~O__Tj2nBiNopq2EYMl_FjDlFnrCPufQRpSjiSbfXsRjXz3VMXIVKz3Ai4z-Xv9PEKUIP9wMwLRcc0JBsgBJ2aQ== new file mode 100644 index 0000000..b0945ef Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~O__Tj2nBiNopq2EYMl_FjDlFnrCPufQRpSjiSbfXsRjXz3VMXIVKz3Ai4z-Xv9PEKUIP9wMwLRcc0JBsgBJ2aQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Oal1PPBEPU6GvVhwcyA-9HE5kvKryJ2sSqCWjaSiFsKkx-CkvOEL20SKmGNC_bi1ArsJpA7UpIgP-xqYw3fpSA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Oal1PPBEPU6GvVhwcyA-9HE5kvKryJ2sSqCWjaSiFsKkx-CkvOEL20SKmGNC_bi1ArsJpA7UpIgP-xqYw3fpSA== new file mode 100644 index 0000000..d45f61f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Oal1PPBEPU6GvVhwcyA-9HE5kvKryJ2sSqCWjaSiFsKkx-CkvOEL20SKmGNC_bi1ArsJpA7UpIgP-xqYw3fpSA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ob6Ga6OgG9EUXlmQGRSxkiKiX-m_Wp19ArlyZQyy-6RvjsoTujzhBntzqjMf8Wp_1GkEtmL0RCb5Car-CtS49A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ob6Ga6OgG9EUXlmQGRSxkiKiX-m_Wp19ArlyZQyy-6RvjsoTujzhBntzqjMf8Wp_1GkEtmL0RCb5Car-CtS49A== new file mode 100644 index 0000000..b958f80 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ob6Ga6OgG9EUXlmQGRSxkiKiX-m_Wp19ArlyZQyy-6RvjsoTujzhBntzqjMf8Wp_1GkEtmL0RCb5Car-CtS49A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Oc-bjJr2m8EbNxqEvDeMRz5I90bMYrIpHdDT0ayEkCFVF1wfIi6leXBxw0_nQxnYIbSXStkSclv6_vkgrRuOBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Oc-bjJr2m8EbNxqEvDeMRz5I90bMYrIpHdDT0ayEkCFVF1wfIi6leXBxw0_nQxnYIbSXStkSclv6_vkgrRuOBA== new file mode 100644 index 0000000..5a4bec6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Oc-bjJr2m8EbNxqEvDeMRz5I90bMYrIpHdDT0ayEkCFVF1wfIi6leXBxw0_nQxnYIbSXStkSclv6_vkgrRuOBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Odyry7yDeMozC47DOqF3XLDEWAVJt-8lCIvn9ItZt6uzHEtwiylb2OHcYBjoxcZoyYf10rLpJmGt7zeTt7dYaw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Odyry7yDeMozC47DOqF3XLDEWAVJt-8lCIvn9ItZt6uzHEtwiylb2OHcYBjoxcZoyYf10rLpJmGt7zeTt7dYaw== new file mode 100644 index 0000000..3f3f599 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Odyry7yDeMozC47DOqF3XLDEWAVJt-8lCIvn9ItZt6uzHEtwiylb2OHcYBjoxcZoyYf10rLpJmGt7zeTt7dYaw== @@ -0,0 +1 @@ +[{"type":1,"name":"0000000000000006.tracev3"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OfdhrGt_OPuoQRlelZkii2opfDOZRRF_nYEIm-x7qA7D2YmDOlfsTEKMkcf3QmHiatxMWAWrn8b8vVEY-lNcxQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OfdhrGt_OPuoQRlelZkii2opfDOZRRF_nYEIm-x7qA7D2YmDOlfsTEKMkcf3QmHiatxMWAWrn8b8vVEY-lNcxQ== new file mode 100644 index 0000000..ac4e8fc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OfdhrGt_OPuoQRlelZkii2opfDOZRRF_nYEIm-x7qA7D2YmDOlfsTEKMkcf3QmHiatxMWAWrn8b8vVEY-lNcxQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Oh5lznvGzAp9tjvTIwTsE-x9XMsxs2MyI5Wu1Fekm6qhzhiPMB5nooZYKpjwmQdMN9yObYzLHBgKDZZBvMKgtg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Oh5lznvGzAp9tjvTIwTsE-x9XMsxs2MyI5Wu1Fekm6qhzhiPMB5nooZYKpjwmQdMN9yObYzLHBgKDZZBvMKgtg== new file mode 100644 index 0000000..429c5a8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Oh5lznvGzAp9tjvTIwTsE-x9XMsxs2MyI5Wu1Fekm6qhzhiPMB5nooZYKpjwmQdMN9yObYzLHBgKDZZBvMKgtg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Om6YqNOEADoSazdHFjGJcMtcKB8rw_3mtASHqD7CwyUrY7uPw6-5lHVFZJuF73HF7jNRXXlmLJ_8BHjgkX-kMA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Om6YqNOEADoSazdHFjGJcMtcKB8rw_3mtASHqD7CwyUrY7uPw6-5lHVFZJuF73HF7jNRXXlmLJ_8BHjgkX-kMA== new file mode 100644 index 0000000..1edd5f6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Om6YqNOEADoSazdHFjGJcMtcKB8rw_3mtASHqD7CwyUrY7uPw6-5lHVFZJuF73HF7jNRXXlmLJ_8BHjgkX-kMA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OqXMNLKqP79j-WFFCnVGnlM8QuC6fkSF-c82ofJ_TgZmU6u0CrTxgwu1rvnHllXYI_ekMcez2bfGXhpCkfxFDA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OqXMNLKqP79j-WFFCnVGnlM8QuC6fkSF-c82ofJ_TgZmU6u0CrTxgwu1rvnHllXYI_ekMcez2bfGXhpCkfxFDA== new file mode 100644 index 0000000..c85c667 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OqXMNLKqP79j-WFFCnVGnlM8QuC6fkSF-c82ofJ_TgZmU6u0CrTxgwu1rvnHllXYI_ekMcez2bfGXhpCkfxFDA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OqpGs-nY0jgkVWqEi1vXUO3gllUinjrjdKFhtq-pP5vkBTj2sH4Hou3rq5xAKW3yO_1KiJO_TPnNsGanOxd-vQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OqpGs-nY0jgkVWqEi1vXUO3gllUinjrjdKFhtq-pP5vkBTj2sH4Hou3rq5xAKW3yO_1KiJO_TPnNsGanOxd-vQ== new file mode 100644 index 0000000..70028b1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OqpGs-nY0jgkVWqEi1vXUO3gllUinjrjdKFhtq-pP5vkBTj2sH4Hou3rq5xAKW3yO_1KiJO_TPnNsGanOxd-vQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ot6p2xtc1Ap2EnYToQa7sKyoSRa9a-5oydG7BrendMIH0CAPFj5BNiDll81RTTOP5tNfqwQkB4lg0g5vCMX2eA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ot6p2xtc1Ap2EnYToQa7sKyoSRa9a-5oydG7BrendMIH0CAPFj5BNiDll81RTTOP5tNfqwQkB4lg0g5vCMX2eA== new file mode 100644 index 0000000..9754d4b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ot6p2xtc1Ap2EnYToQa7sKyoSRa9a-5oydG7BrendMIH0CAPFj5BNiDll81RTTOP5tNfqwQkB4lg0g5vCMX2eA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OvY4-6dPiCKo-Sc1q4UXHunJN7v0ayvV07IuIcTirI_psvsW1-jVg47CvLqjWUu9YTi9xf5sYFTL0Pz9ps4fQg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OvY4-6dPiCKo-Sc1q4UXHunJN7v0ayvV07IuIcTirI_psvsW1-jVg47CvLqjWUu9YTi9xf5sYFTL0Pz9ps4fQg== new file mode 100644 index 0000000..1c8c426 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OvY4-6dPiCKo-Sc1q4UXHunJN7v0ayvV07IuIcTirI_psvsW1-jVg47CvLqjWUu9YTi9xf5sYFTL0Pz9ps4fQg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OyWSo98wUCIw0y08aFxAf2N570wy4vKZnnwIc2TM7XrwCF6Gv3vloQL7YQ3R21QgIdQt2TGm9CmlgJGPkPMAxg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OyWSo98wUCIw0y08aFxAf2N570wy4vKZnnwIc2TM7XrwCF6Gv3vloQL7YQ3R21QgIdQt2TGm9CmlgJGPkPMAxg== new file mode 100644 index 0000000..d4e6d10 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~OyWSo98wUCIw0y08aFxAf2N570wy4vKZnnwIc2TM7XrwCF6Gv3vloQL7YQ3R21QgIdQt2TGm9CmlgJGPkPMAxg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~P0PFnv42zGnFaFceA8kz0cJaVZbrdDGUZzt4Z7lhgyog1E8ggQc9KevaChF3qY1faALw0b-5BqjEAhlnI-_I2Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~P0PFnv42zGnFaFceA8kz0cJaVZbrdDGUZzt4Z7lhgyog1E8ggQc9KevaChF3qY1faALw0b-5BqjEAhlnI-_I2Q== new file mode 100644 index 0000000..07caf09 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~P0PFnv42zGnFaFceA8kz0cJaVZbrdDGUZzt4Z7lhgyog1E8ggQc9KevaChF3qY1faALw0b-5BqjEAhlnI-_I2Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~P2fkmUqSEu_nbh2vfvbRw3chpoI_SKuGlOfPc_SG_zFOF2aAnR09OTez2zP_P5z1W5gUxZcdgM9H7vMrhsKsVQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~P2fkmUqSEu_nbh2vfvbRw3chpoI_SKuGlOfPc_SG_zFOF2aAnR09OTez2zP_P5z1W5gUxZcdgM9H7vMrhsKsVQ== new file mode 100644 index 0000000..f8325c4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~P2fkmUqSEu_nbh2vfvbRw3chpoI_SKuGlOfPc_SG_zFOF2aAnR09OTez2zP_P5z1W5gUxZcdgM9H7vMrhsKsVQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~P6I-OQ5_iSnF56qvodrXp0pLwXIeS3i3miBmSKgG6JQbeHDKqpnakwa9-idZEoWVH59yISdT51xrD1mVExaLcQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~P6I-OQ5_iSnF56qvodrXp0pLwXIeS3i3miBmSKgG6JQbeHDKqpnakwa9-idZEoWVH59yISdT51xrD1mVExaLcQ== new file mode 100644 index 0000000..d5f2658 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~P6I-OQ5_iSnF56qvodrXp0pLwXIeS3i3miBmSKgG6JQbeHDKqpnakwa9-idZEoWVH59yISdT51xrD1mVExaLcQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PQQEx1IWwk88QFJwya_AyUukyb7QiF7tUMTikxAZlM67_eni9dbhWH0ZVKWsX6nGQB_XpyNLVyyatpt2X8oF-A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PQQEx1IWwk88QFJwya_AyUukyb7QiF7tUMTikxAZlM67_eni9dbhWH0ZVKWsX6nGQB_XpyNLVyyatpt2X8oF-A== new file mode 100644 index 0000000..3826e19 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PQQEx1IWwk88QFJwya_AyUukyb7QiF7tUMTikxAZlM67_eni9dbhWH0ZVKWsX6nGQB_XpyNLVyyatpt2X8oF-A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PRpIWC03o_rm62xRdWEIPjRjvFUUNP54f41u0Qa2vyE490Hv-hQMNZwKb0xkm3lxldeJkXLCXQ-zKiCjiRK3dg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PRpIWC03o_rm62xRdWEIPjRjvFUUNP54f41u0Qa2vyE490Hv-hQMNZwKb0xkm3lxldeJkXLCXQ-zKiCjiRK3dg== new file mode 100644 index 0000000..36c8e1e --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PRpIWC03o_rm62xRdWEIPjRjvFUUNP54f41u0Qa2vyE490Hv-hQMNZwKb0xkm3lxldeJkXLCXQ-zKiCjiRK3dg== @@ -0,0 +1 @@ +[{"type":1,"name":"41885F16993CFDB0790CD509772327"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PSsCnNgybsEU_1OoX4YKinBuTd2bNxfOCd3UmbcmJTYz3wSLYioRh3aDQy0BvgMl8pP2rpLi-fJtkecgRgQnrg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PSsCnNgybsEU_1OoX4YKinBuTd2bNxfOCd3UmbcmJTYz3wSLYioRh3aDQy0BvgMl8pP2rpLi-fJtkecgRgQnrg== new file mode 100644 index 0000000..b6db568 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PSsCnNgybsEU_1OoX4YKinBuTd2bNxfOCd3UmbcmJTYz3wSLYioRh3aDQy0BvgMl8pP2rpLi-fJtkecgRgQnrg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PTJT8YYlF5Ypgz_fzG_K3L1CAX8saor8x3GfLW0qKUzf8-B0WHaOsK1Tt80BEd4NyBUKpESC4WVMjcYImGNTNQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PTJT8YYlF5Ypgz_fzG_K3L1CAX8saor8x3GfLW0qKUzf8-B0WHaOsK1Tt80BEd4NyBUKpESC4WVMjcYImGNTNQ== new file mode 100644 index 0000000..87494bf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PTJT8YYlF5Ypgz_fzG_K3L1CAX8saor8x3GfLW0qKUzf8-B0WHaOsK1Tt80BEd4NyBUKpESC4WVMjcYImGNTNQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PUO2adVLe--2auZxMOCSIEUvXiXSP58SdZFlrIKd3wyhX025FF__WGNn2xu5VH5RRlHYDeAJfUc78J-6kZgj_Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PUO2adVLe--2auZxMOCSIEUvXiXSP58SdZFlrIKd3wyhX025FF__WGNn2xu5VH5RRlHYDeAJfUc78J-6kZgj_Q== new file mode 100644 index 0000000..aed1e24 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PUO2adVLe--2auZxMOCSIEUvXiXSP58SdZFlrIKd3wyhX025FF__WGNn2xu5VH5RRlHYDeAJfUc78J-6kZgj_Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PbTFfpnO_EH-UAYCOFlFr4A3B8kRxDxtGzDDJo6r0TXB5gCw_VFHljg8SQQguyQXqFOPQuGm85m-fYeaaX4exw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PbTFfpnO_EH-UAYCOFlFr4A3B8kRxDxtGzDDJo6r0TXB5gCw_VFHljg8SQQguyQXqFOPQuGm85m-fYeaaX4exw== new file mode 100644 index 0000000..21cc3e5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PbTFfpnO_EH-UAYCOFlFr4A3B8kRxDxtGzDDJo6r0TXB5gCw_VFHljg8SQQguyQXqFOPQuGm85m-fYeaaX4exw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PgkHoKrFzaDCa3BxoGjE59HuBDZmex9tTJopgkIKPxrkpV6nwqfQ3s1aLlbG-rv81TeR3-X2USF-rl30S_ea9Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PgkHoKrFzaDCa3BxoGjE59HuBDZmex9tTJopgkIKPxrkpV6nwqfQ3s1aLlbG-rv81TeR3-X2USF-rl30S_ea9Q== new file mode 100644 index 0000000..25c0b35 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PgkHoKrFzaDCa3BxoGjE59HuBDZmex9tTJopgkIKPxrkpV6nwqfQ3s1aLlbG-rv81TeR3-X2USF-rl30S_ea9Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Phibjb7RIU5UplrdBIPnj4e-FdpKTfveBySXQrdrKwFCsScoXXhU5L7N_MtBDfGFqwNNIxXKvajFfmJAI-34Ag== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Phibjb7RIU5UplrdBIPnj4e-FdpKTfveBySXQrdrKwFCsScoXXhU5L7N_MtBDfGFqwNNIxXKvajFfmJAI-34Ag== new file mode 100644 index 0000000..17020a2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Phibjb7RIU5UplrdBIPnj4e-FdpKTfveBySXQrdrKwFCsScoXXhU5L7N_MtBDfGFqwNNIxXKvajFfmJAI-34Ag== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Pobq4OOLNogdBP0XB7VRqyEL6yhahHQHtlz2lDHX7Fg08uLKDh8jwjjsPChNzuhfqlD6JY17VNLgGiOEgDT1lA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Pobq4OOLNogdBP0XB7VRqyEL6yhahHQHtlz2lDHX7Fg08uLKDh8jwjjsPChNzuhfqlD6JY17VNLgGiOEgDT1lA== new file mode 100644 index 0000000..05ff6bf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Pobq4OOLNogdBP0XB7VRqyEL6yhahHQHtlz2lDHX7Fg08uLKDh8jwjjsPChNzuhfqlD6JY17VNLgGiOEgDT1lA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Pojf3024a4aes3q1OJm7cwuSK3XQvhkpT8I6puTbQ9vinl0wpMwClyXJWsPg-U3_edrroa0HD3l1sZPPAjr4XA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Pojf3024a4aes3q1OJm7cwuSK3XQvhkpT8I6puTbQ9vinl0wpMwClyXJWsPg-U3_edrroa0HD3l1sZPPAjr4XA== new file mode 100644 index 0000000..521c23a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Pojf3024a4aes3q1OJm7cwuSK3XQvhkpT8I6puTbQ9vinl0wpMwClyXJWsPg-U3_edrroa0HD3l1sZPPAjr4XA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ptuu5DWwnTLU15-iZjnyofTsz7f2BBjAx-QxmJSMrFvcyp1cb5auDWyi86eN2bM8yPq88j4YxTQas4VqULbZwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ptuu5DWwnTLU15-iZjnyofTsz7f2BBjAx-QxmJSMrFvcyp1cb5auDWyi86eN2bM8yPq88j4YxTQas4VqULbZwg== new file mode 100644 index 0000000..0b91d9d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ptuu5DWwnTLU15-iZjnyofTsz7f2BBjAx-QxmJSMrFvcyp1cb5auDWyi86eN2bM8yPq88j4YxTQas4VqULbZwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PuHA8ebXL-qxmzmKa4SGBm0XX9cZK9nKBRqteA9hdEZ3LKJNWjDtV7QzZfxcD1nEWsjFFTdLFs95HlumNO4mDg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PuHA8ebXL-qxmzmKa4SGBm0XX9cZK9nKBRqteA9hdEZ3LKJNWjDtV7QzZfxcD1nEWsjFFTdLFs95HlumNO4mDg== new file mode 100644 index 0000000..5cf3b8a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~PuHA8ebXL-qxmzmKa4SGBm0XX9cZK9nKBRqteA9hdEZ3LKJNWjDtV7QzZfxcD1nEWsjFFTdLFs95HlumNO4mDg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q3mXUS1dF6uUGyIDIDmMo09lMMqfmOg3rP5GDm_lSwtpF5z3jfeMEzhM4_2gz1UTCGruARczqIWnANVcmMsgnw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q3mXUS1dF6uUGyIDIDmMo09lMMqfmOg3rP5GDm_lSwtpF5z3jfeMEzhM4_2gz1UTCGruARczqIWnANVcmMsgnw== new file mode 100644 index 0000000..b303eb7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q3mXUS1dF6uUGyIDIDmMo09lMMqfmOg3rP5GDm_lSwtpF5z3jfeMEzhM4_2gz1UTCGruARczqIWnANVcmMsgnw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q3xT0bQn-qOB3ts879uh-oUOU-eOuZoEfTzAZB9Sz0ERDOme-RGO8O9T1-cFEBoG9j96K44Hxmi6BmXPdiho4A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q3xT0bQn-qOB3ts879uh-oUOU-eOuZoEfTzAZB9Sz0ERDOme-RGO8O9T1-cFEBoG9j96K44Hxmi6BmXPdiho4A== new file mode 100644 index 0000000..19e3068 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q3xT0bQn-qOB3ts879uh-oUOU-eOuZoEfTzAZB9Sz0ERDOme-RGO8O9T1-cFEBoG9j96K44Hxmi6BmXPdiho4A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q64ObzGt9ZBHUfASylQ4p57z9wI9QGYkfZX-fP6lTlDZixg7HrXI6mq283YULHxdGyd9Q5VExT0WZqRpQ4E4gA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q64ObzGt9ZBHUfASylQ4p57z9wI9QGYkfZX-fP6lTlDZixg7HrXI6mq283YULHxdGyd9Q5VExT0WZqRpQ4E4gA== new file mode 100644 index 0000000..441fbcc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q64ObzGt9ZBHUfASylQ4p57z9wI9QGYkfZX-fP6lTlDZixg7HrXI6mq283YULHxdGyd9Q5VExT0WZqRpQ4E4gA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q7ZFPsgpOa49C_Ywu9-S5WbHN1I-RQHmz3JRdEqSpn3U0hrkJSvP30QuAnodpTiF6M9pLpgAqDmzzxpytjAriQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q7ZFPsgpOa49C_Ywu9-S5WbHN1I-RQHmz3JRdEqSpn3U0hrkJSvP30QuAnodpTiF6M9pLpgAqDmzzxpytjAriQ== new file mode 100644 index 0000000..6371b4d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q7ZFPsgpOa49C_Ywu9-S5WbHN1I-RQHmz3JRdEqSpn3U0hrkJSvP30QuAnodpTiF6M9pLpgAqDmzzxpytjAriQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q9-yq1uhDUTkOk1H9nV1zE-dCEHLvNyFp5b61wz_swB_lA_brGPDIuhTWEAxoK8DUUaALQKTmkQkjIAi_Xy5Ug== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q9-yq1uhDUTkOk1H9nV1zE-dCEHLvNyFp5b61wz_swB_lA_brGPDIuhTWEAxoK8DUUaALQKTmkQkjIAi_Xy5Ug== new file mode 100644 index 0000000..73426eb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Q9-yq1uhDUTkOk1H9nV1zE-dCEHLvNyFp5b61wz_swB_lA_brGPDIuhTWEAxoK8DUUaALQKTmkQkjIAi_Xy5Ug== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QFuKxrFikBRlYxxcllhTVgUQ5rTOFuqtv-LDHSQJ7BACMiVicCwtmN-nax-Hb-ezHmEAz7_dkrh7FoX6WqbX2g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QFuKxrFikBRlYxxcllhTVgUQ5rTOFuqtv-LDHSQJ7BACMiVicCwtmN-nax-Hb-ezHmEAz7_dkrh7FoX6WqbX2g== new file mode 100644 index 0000000..4d25e7a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QFuKxrFikBRlYxxcllhTVgUQ5rTOFuqtv-LDHSQJ7BACMiVicCwtmN-nax-Hb-ezHmEAz7_dkrh7FoX6WqbX2g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QG10ggfN5aDf3xzu5Xjrr_CG5X2d71Hq9M4AI_UNQNPTMXTxcL7s2WOcdeP_vtZDfEsw2KP3CaMQtQJ0kttjDQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QG10ggfN5aDf3xzu5Xjrr_CG5X2d71Hq9M4AI_UNQNPTMXTxcL7s2WOcdeP_vtZDfEsw2KP3CaMQtQJ0kttjDQ== new file mode 100644 index 0000000..9edff27 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QG10ggfN5aDf3xzu5Xjrr_CG5X2d71Hq9M4AI_UNQNPTMXTxcL7s2WOcdeP_vtZDfEsw2KP3CaMQtQJ0kttjDQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QIj-dkz2H9Wk9Rr3JKYaOUx06IXCES6PphnMl3qOajOn5et6PVCsxV2n_h1pFuq7jf5QD6yj8w09JVGYxlqGWw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QIj-dkz2H9Wk9Rr3JKYaOUx06IXCES6PphnMl3qOajOn5et6PVCsxV2n_h1pFuq7jf5QD6yj8w09JVGYxlqGWw== new file mode 100644 index 0000000..343f6bf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QIj-dkz2H9Wk9Rr3JKYaOUx06IXCES6PphnMl3qOajOn5et6PVCsxV2n_h1pFuq7jf5QD6yj8w09JVGYxlqGWw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QKFYDiGdrByUJ3scYRAWVCCQhWbDg4LNVkk1oPmXVKy6_3wpPdo0O8QyjkosYpFRAGnDbQcb_B86lpVmZeJWQA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QKFYDiGdrByUJ3scYRAWVCCQhWbDg4LNVkk1oPmXVKy6_3wpPdo0O8QyjkosYpFRAGnDbQcb_B86lpVmZeJWQA== new file mode 100644 index 0000000..9c6ac05 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QKFYDiGdrByUJ3scYRAWVCCQhWbDg4LNVkk1oPmXVKy6_3wpPdo0O8QyjkosYpFRAGnDbQcb_B86lpVmZeJWQA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QQoGcSCG6ZlVfF2LBiG--VKUtBanfAS_0fryGVjj0DEXXgSB7R28A8wOnn1o0BWDRjPX9lij70Ak7e20LzxmuQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QQoGcSCG6ZlVfF2LBiG--VKUtBanfAS_0fryGVjj0DEXXgSB7R28A8wOnn1o0BWDRjPX9lij70Ak7e20LzxmuQ== new file mode 100644 index 0000000..ade55aa Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QQoGcSCG6ZlVfF2LBiG--VKUtBanfAS_0fryGVjj0DEXXgSB7R28A8wOnn1o0BWDRjPX9lij70Ak7e20LzxmuQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QXeM0aO4WUb8QIksx9UvXdQ06QOlNd6hGMGR8O8WlA-CoLzVX11Kt1YgKJhFicSWtf8z64BBp0-ON5ytwr1dhg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QXeM0aO4WUb8QIksx9UvXdQ06QOlNd6hGMGR8O8WlA-CoLzVX11Kt1YgKJhFicSWtf8z64BBp0-ON5ytwr1dhg== new file mode 100644 index 0000000..1cd54cd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QXeM0aO4WUb8QIksx9UvXdQ06QOlNd6hGMGR8O8WlA-CoLzVX11Kt1YgKJhFicSWtf8z64BBp0-ON5ytwr1dhg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Qhl2nK0_gQdRSQI7aAnTjtBr2AfZxxfqrYhWDrp4xwM7xsHu-Re6DP0Ky15REiZ0cBJ6lHqNFVxCEVFyycEmAA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Qhl2nK0_gQdRSQI7aAnTjtBr2AfZxxfqrYhWDrp4xwM7xsHu-Re6DP0Ky15REiZ0cBJ6lHqNFVxCEVFyycEmAA== new file mode 100644 index 0000000..b275e55 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Qhl2nK0_gQdRSQI7aAnTjtBr2AfZxxfqrYhWDrp4xwM7xsHu-Re6DP0Ky15REiZ0cBJ6lHqNFVxCEVFyycEmAA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Qj2vGGccDsfzVWmZ4n43TEbbzLWtVzNZPJjsJXsPPBQeZ0kpH7OCVBwZbgFPBaMh9RRdJ4szf3NZZMDT7Yq18w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Qj2vGGccDsfzVWmZ4n43TEbbzLWtVzNZPJjsJXsPPBQeZ0kpH7OCVBwZbgFPBaMh9RRdJ4szf3NZZMDT7Yq18w== new file mode 100644 index 0000000..fbb26c1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Qj2vGGccDsfzVWmZ4n43TEbbzLWtVzNZPJjsJXsPPBQeZ0kpH7OCVBwZbgFPBaMh9RRdJ4szf3NZZMDT7Yq18w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QmA9vqSOHfbLZzaC9dOdUf1ZTZLzSNx80Zo3emdkJiF1fSiDz6_3Q6oo8yZFXVAjDtAsDWOVNfy1A4NyHe0bMw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QmA9vqSOHfbLZzaC9dOdUf1ZTZLzSNx80Zo3emdkJiF1fSiDz6_3Q6oo8yZFXVAjDtAsDWOVNfy1A4NyHe0bMw== new file mode 100644 index 0000000..48a6f4f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QmA9vqSOHfbLZzaC9dOdUf1ZTZLzSNx80Zo3emdkJiF1fSiDz6_3Q6oo8yZFXVAjDtAsDWOVNfy1A4NyHe0bMw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QshQpbh4RKkdMAMf2oGzby5gDTEx16LpVaMuQ0rcLJAeHP3e3SOVcaYnezvXqoY_aoxP_j1IDyupwhBHFrcnlg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QshQpbh4RKkdMAMf2oGzby5gDTEx16LpVaMuQ0rcLJAeHP3e3SOVcaYnezvXqoY_aoxP_j1IDyupwhBHFrcnlg== new file mode 100644 index 0000000..52ec060 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QshQpbh4RKkdMAMf2oGzby5gDTEx16LpVaMuQ0rcLJAeHP3e3SOVcaYnezvXqoY_aoxP_j1IDyupwhBHFrcnlg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QtWgAom5co2rAIguEBASvpZRGMD6fvcDk96_bLFdOy44rwYPS1T5gLOZNcT-Z49xRIn_JIPMQtkNK2u-tHYfSA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QtWgAom5co2rAIguEBASvpZRGMD6fvcDk96_bLFdOy44rwYPS1T5gLOZNcT-Z49xRIn_JIPMQtkNK2u-tHYfSA== new file mode 100644 index 0000000..0c3e876 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QtWgAom5co2rAIguEBASvpZRGMD6fvcDk96_bLFdOy44rwYPS1T5gLOZNcT-Z49xRIn_JIPMQtkNK2u-tHYfSA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QuhwS7Y056o6GAaFfASqFR_NKJqk8-BTSZ4Y9KHyM7g2XPFYLbTjv59XdC7_xPDw_XcEDokrJiaGDZ_E7kwMgg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QuhwS7Y056o6GAaFfASqFR_NKJqk8-BTSZ4Y9KHyM7g2XPFYLbTjv59XdC7_xPDw_XcEDokrJiaGDZ_E7kwMgg== new file mode 100644 index 0000000..69350b8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~QuhwS7Y056o6GAaFfASqFR_NKJqk8-BTSZ4Y9KHyM7g2XPFYLbTjv59XdC7_xPDw_XcEDokrJiaGDZ_E7kwMgg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~R-L8ABD7f30yc_l5Sl3tG8DAOt-uzVxgvE8phC69opH1tm0m_kQg4nfFccJTM4AVF7gsbptIAcI6r8FuIiL7VQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~R-L8ABD7f30yc_l5Sl3tG8DAOt-uzVxgvE8phC69opH1tm0m_kQg4nfFccJTM4AVF7gsbptIAcI6r8FuIiL7VQ== new file mode 100644 index 0000000..a4296b6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~R-L8ABD7f30yc_l5Sl3tG8DAOt-uzVxgvE8phC69opH1tm0m_kQg4nfFccJTM4AVF7gsbptIAcI6r8FuIiL7VQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~R69iGeIbbFWNMG84lsv0YECJbk82F5zNRm1lXv_NUlu5e_r5PJb2ga7yjduDpP0MrzLWCxRQ4giSEmJ4KCjusA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~R69iGeIbbFWNMG84lsv0YECJbk82F5zNRm1lXv_NUlu5e_r5PJb2ga7yjduDpP0MrzLWCxRQ4giSEmJ4KCjusA== new file mode 100644 index 0000000..8e27b7c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~R69iGeIbbFWNMG84lsv0YECJbk82F5zNRm1lXv_NUlu5e_r5PJb2ga7yjduDpP0MrzLWCxRQ4giSEmJ4KCjusA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~R8t0gfI-cQ1RG-dhBjnd33eULKZipeDNBJbWkmETMCC645i2mpIHKqTA4-H9zdug0kHBNAtjG-E1uD7ZoPYMrQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~R8t0gfI-cQ1RG-dhBjnd33eULKZipeDNBJbWkmETMCC645i2mpIHKqTA4-H9zdug0kHBNAtjG-E1uD7ZoPYMrQ== new file mode 100644 index 0000000..b1939c8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~R8t0gfI-cQ1RG-dhBjnd33eULKZipeDNBJbWkmETMCC645i2mpIHKqTA4-H9zdug0kHBNAtjG-E1uD7ZoPYMrQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RAOYSFqiiJkBXLo_3n6OvIV78pv9jmRWJE_ajZi5gkwoq5ijab7JqP9tRH2LIrEBaIsMYws1VUk6K2Vl6PBCeQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RAOYSFqiiJkBXLo_3n6OvIV78pv9jmRWJE_ajZi5gkwoq5ijab7JqP9tRH2LIrEBaIsMYws1VUk6K2Vl6PBCeQ== new file mode 100644 index 0000000..75d97f4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RAOYSFqiiJkBXLo_3n6OvIV78pv9jmRWJE_ajZi5gkwoq5ijab7JqP9tRH2LIrEBaIsMYws1VUk6K2Vl6PBCeQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RAll9xg3px5oxgVxqpAkM1K_XxGvw_NsLMJk0tAtA9EkROWL09_9d1DWskvQux2NsCN82Gjx9520d9BKLBs4PQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RAll9xg3px5oxgVxqpAkM1K_XxGvw_NsLMJk0tAtA9EkROWL09_9d1DWskvQux2NsCN82Gjx9520d9BKLBs4PQ== new file mode 100644 index 0000000..ce5ec1c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RAll9xg3px5oxgVxqpAkM1K_XxGvw_NsLMJk0tAtA9EkROWL09_9d1DWskvQux2NsCN82Gjx9520d9BKLBs4PQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RCChzTmerijOv-U8XjNd1cel2LTlNZ5ghNmnJXfTxr2UItkgO8O5bk6H9ULTyIBj3w3E-crO1-NMW6AQnKRlwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RCChzTmerijOv-U8XjNd1cel2LTlNZ5ghNmnJXfTxr2UItkgO8O5bk6H9ULTyIBj3w3E-crO1-NMW6AQnKRlwg== new file mode 100644 index 0000000..efc74e6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RCChzTmerijOv-U8XjNd1cel2LTlNZ5ghNmnJXfTxr2UItkgO8O5bk6H9ULTyIBj3w3E-crO1-NMW6AQnKRlwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RIbXjx-hK5YhguABL3i01IeuSoDniWHhgEm3-cwzVygzNxC-mK47drSYvCkrFGVQ3wm2bB3ZNpUpjxkFnkzLew== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RIbXjx-hK5YhguABL3i01IeuSoDniWHhgEm3-cwzVygzNxC-mK47drSYvCkrFGVQ3wm2bB3ZNpUpjxkFnkzLew== new file mode 100644 index 0000000..04aac00 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RIbXjx-hK5YhguABL3i01IeuSoDniWHhgEm3-cwzVygzNxC-mK47drSYvCkrFGVQ3wm2bB3ZNpUpjxkFnkzLew== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RKP239EGUHX_dyJUOpzyx3c6Dw7BrUSIgDuFLLsFB2ywJUd8khPWagWlFo01oK5zaNjKSppPbXw5zjgs9BfR2Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RKP239EGUHX_dyJUOpzyx3c6Dw7BrUSIgDuFLLsFB2ywJUd8khPWagWlFo01oK5zaNjKSppPbXw5zjgs9BfR2Q== new file mode 100644 index 0000000..60b137e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RKP239EGUHX_dyJUOpzyx3c6Dw7BrUSIgDuFLLsFB2ywJUd8khPWagWlFo01oK5zaNjKSppPbXw5zjgs9BfR2Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RSDFoJ4inUazN2ghZmzfLcetyjKqU_8_mJQ1HW6aX6SIQQSmYJC2sS4a5pkvr63npuug4tMFSbGWkoE_oHF65A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RSDFoJ4inUazN2ghZmzfLcetyjKqU_8_mJQ1HW6aX6SIQQSmYJC2sS4a5pkvr63npuug4tMFSbGWkoE_oHF65A== new file mode 100644 index 0000000..defe817 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RSDFoJ4inUazN2ghZmzfLcetyjKqU_8_mJQ1HW6aX6SIQQSmYJC2sS4a5pkvr63npuug4tMFSbGWkoE_oHF65A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RUlBsNL9VfMu3WvNNlxTZMalx-EY0ZyViWZLappE2LwLAcZ7Fu4PFzbU4Toez8_S6i7JMdQdprIwQRP639-s9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RUlBsNL9VfMu3WvNNlxTZMalx-EY0ZyViWZLappE2LwLAcZ7Fu4PFzbU4Toez8_S6i7JMdQdprIwQRP639-s9A== new file mode 100644 index 0000000..59ea3d6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RUlBsNL9VfMu3WvNNlxTZMalx-EY0ZyViWZLappE2LwLAcZ7Fu4PFzbU4Toez8_S6i7JMdQdprIwQRP639-s9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RWha7Nninu4Xt6eKdkIVwB6paj_8GrZKMk0c3HcYfC_B4Gl23tZCShWUJFDyFODbUVs01Uv82U67AgvNSLAKJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RWha7Nninu4Xt6eKdkIVwB6paj_8GrZKMk0c3HcYfC_B4Gl23tZCShWUJFDyFODbUVs01Uv82U67AgvNSLAKJg== new file mode 100644 index 0000000..e5c3c37 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RWha7Nninu4Xt6eKdkIVwB6paj_8GrZKMk0c3HcYfC_B4Gl23tZCShWUJFDyFODbUVs01Uv82U67AgvNSLAKJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RaMv0FyJxgkVNDBJVPIHLFDjCGnAmOpnAJRrYjPmXKtyHOzR9xFGrWvyP8gt5sFLgPevO4OBX5HtxpkZLRsidA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RaMv0FyJxgkVNDBJVPIHLFDjCGnAmOpnAJRrYjPmXKtyHOzR9xFGrWvyP8gt5sFLgPevO4OBX5HtxpkZLRsidA== new file mode 100644 index 0000000..4e7de07 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RaMv0FyJxgkVNDBJVPIHLFDjCGnAmOpnAJRrYjPmXKtyHOzR9xFGrWvyP8gt5sFLgPevO4OBX5HtxpkZLRsidA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ReNtLpkLf6YWaN-Tvo-3q5zUuMEllak6dBKoIXcFDPBhtNhVv7j7WVa1PN-Bn6-ET8QzxPT8LbaIIBhvPbbtLw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ReNtLpkLf6YWaN-Tvo-3q5zUuMEllak6dBKoIXcFDPBhtNhVv7j7WVa1PN-Bn6-ET8QzxPT8LbaIIBhvPbbtLw== new file mode 100644 index 0000000..38703d1 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ReNtLpkLf6YWaN-Tvo-3q5zUuMEllak6dBKoIXcFDPBhtNhVv7j7WVa1PN-Bn6-ET8QzxPT8LbaIIBhvPbbtLw== @@ -0,0 +1 @@ +[{"type":1,"name":"47EE11CC123BADAD99A15F1AC02552"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Rf2C9yj1ppH39Zf-ma3o_oAx-h4u9q_WsrVJBFQNga8-YOLVDjw-tipo4wMyoDcayK5AT9fAt1uq_VinSHwDng== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Rf2C9yj1ppH39Zf-ma3o_oAx-h4u9q_WsrVJBFQNga8-YOLVDjw-tipo4wMyoDcayK5AT9fAt1uq_VinSHwDng== new file mode 100644 index 0000000..fdebf95 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Rf2C9yj1ppH39Zf-ma3o_oAx-h4u9q_WsrVJBFQNga8-YOLVDjw-tipo4wMyoDcayK5AT9fAt1uq_VinSHwDng== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Riau3sjbXMj5pqNdvDHO7p3njy6YgbcCk3Vog0wXxUCXcu1BtIsQMNRSft7jJTFrEL5OYOGL-FZGuFjgpiUnkA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Riau3sjbXMj5pqNdvDHO7p3njy6YgbcCk3Vog0wXxUCXcu1BtIsQMNRSft7jJTFrEL5OYOGL-FZGuFjgpiUnkA== new file mode 100644 index 0000000..eb32686 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Riau3sjbXMj5pqNdvDHO7p3njy6YgbcCk3Vog0wXxUCXcu1BtIsQMNRSft7jJTFrEL5OYOGL-FZGuFjgpiUnkA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RrF-1wqlDhtVbgozLnlMagwj2As8nBSuEczHV5snvI1b_QIpYAZio1qa07eCI4PGhDxr2jVuxM3rcR8jC6IGng== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RrF-1wqlDhtVbgozLnlMagwj2As8nBSuEczHV5snvI1b_QIpYAZio1qa07eCI4PGhDxr2jVuxM3rcR8jC6IGng== new file mode 100644 index 0000000..9c84c69 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RrF-1wqlDhtVbgozLnlMagwj2As8nBSuEczHV5snvI1b_QIpYAZio1qa07eCI4PGhDxr2jVuxM3rcR8jC6IGng== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RuvitdZ7ey-XwFb0eMdInSWORvuXBs79aLorbsCpXnAcle8bQ2mctAJwPdAyOLESHzddvGwIYnqS6rKYuwvg9Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RuvitdZ7ey-XwFb0eMdInSWORvuXBs79aLorbsCpXnAcle8bQ2mctAJwPdAyOLESHzddvGwIYnqS6rKYuwvg9Q== new file mode 100644 index 0000000..ae165a6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RuvitdZ7ey-XwFb0eMdInSWORvuXBs79aLorbsCpXnAcle8bQ2mctAJwPdAyOLESHzddvGwIYnqS6rKYuwvg9Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RxKup6tW4DGOB_nSKiCuxoYtm6GQyMsZfMBfkMtsreOmCyxD2SiN2Rxfww5QfgDUB7muzso0d6i2noxnJkKiYw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RxKup6tW4DGOB_nSKiCuxoYtm6GQyMsZfMBfkMtsreOmCyxD2SiN2Rxfww5QfgDUB7muzso0d6i2noxnJkKiYw== new file mode 100644 index 0000000..d3393ac Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~RxKup6tW4DGOB_nSKiCuxoYtm6GQyMsZfMBfkMtsreOmCyxD2SiN2Rxfww5QfgDUB7muzso0d6i2noxnJkKiYw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~S-RVGHiglNhHrFkJ_RzpXTJRfyiJ2_Jn5WLAK3jN3u8RB9u4sb_xmbtNcy9uReMHqOYar_ntJJiv7NHWs8Yo9w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~S-RVGHiglNhHrFkJ_RzpXTJRfyiJ2_Jn5WLAK3jN3u8RB9u4sb_xmbtNcy9uReMHqOYar_ntJJiv7NHWs8Yo9w== new file mode 100644 index 0000000..f9c18aa Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~S-RVGHiglNhHrFkJ_RzpXTJRfyiJ2_Jn5WLAK3jN3u8RB9u4sb_xmbtNcy9uReMHqOYar_ntJJiv7NHWs8Yo9w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SF11nIjFQdssQFEwGw6ze_KdmoBEALp1t8JaxJr7X1U92cFTGxS2NegRNfO2mx58fSpd8zUWIddAfnHeqF5pSg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SF11nIjFQdssQFEwGw6ze_KdmoBEALp1t8JaxJr7X1U92cFTGxS2NegRNfO2mx58fSpd8zUWIddAfnHeqF5pSg== new file mode 100644 index 0000000..f220882 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SF11nIjFQdssQFEwGw6ze_KdmoBEALp1t8JaxJr7X1U92cFTGxS2NegRNfO2mx58fSpd8zUWIddAfnHeqF5pSg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SGHarkNXvJfXulmziGq1oPYNqIfpSS4_4iQy_tVzpGbVJCu3YSoJJ3qVmDAdTMO0iUVlzZg1n9jbz94vRVL3tA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SGHarkNXvJfXulmziGq1oPYNqIfpSS4_4iQy_tVzpGbVJCu3YSoJJ3qVmDAdTMO0iUVlzZg1n9jbz94vRVL3tA== new file mode 100644 index 0000000..1d20771 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SGHarkNXvJfXulmziGq1oPYNqIfpSS4_4iQy_tVzpGbVJCu3YSoJJ3qVmDAdTMO0iUVlzZg1n9jbz94vRVL3tA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SQYMCe9TAts-y6V7yTPm2AAuXUF8EXmfYvBXngxL3JE-ooK6p8a4wf6O1wLdAKIndbxIfxd0C24PQo30GFUypA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SQYMCe9TAts-y6V7yTPm2AAuXUF8EXmfYvBXngxL3JE-ooK6p8a4wf6O1wLdAKIndbxIfxd0C24PQo30GFUypA== new file mode 100644 index 0000000..a6b5b92 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SQYMCe9TAts-y6V7yTPm2AAuXUF8EXmfYvBXngxL3JE-ooK6p8a4wf6O1wLdAKIndbxIfxd0C24PQo30GFUypA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SStg6yTYHoWpecG1IWfUMmvSysUGOCmFcDn9CMpxtYEwIMGWcBX3eVv1qVr_ODLG2bVJnffiQGF5cRhDHsVl1w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SStg6yTYHoWpecG1IWfUMmvSysUGOCmFcDn9CMpxtYEwIMGWcBX3eVv1qVr_ODLG2bVJnffiQGF5cRhDHsVl1w== new file mode 100644 index 0000000..415b86a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SStg6yTYHoWpecG1IWfUMmvSysUGOCmFcDn9CMpxtYEwIMGWcBX3eVv1qVr_ODLG2bVJnffiQGF5cRhDHsVl1w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SUalcW7GB5DIx9Bs-X8K40BOomzrJZ7k9krDQ2AAIjHEGzWxEkbEPHKioP29rKl22EN-6O8qhaA478ZWg_iV4Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SUalcW7GB5DIx9Bs-X8K40BOomzrJZ7k9krDQ2AAIjHEGzWxEkbEPHKioP29rKl22EN-6O8qhaA478ZWg_iV4Q== new file mode 100644 index 0000000..f983ca7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SUalcW7GB5DIx9Bs-X8K40BOomzrJZ7k9krDQ2AAIjHEGzWxEkbEPHKioP29rKl22EN-6O8qhaA478ZWg_iV4Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SX-BFVu1rNuk__hn1O_EzHrIJ3EUZGCptKvBroeHVkxhX1TAYyLFSOEMDNP9abDz4Q-3nnEJcPtsxpdKfN7S9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SX-BFVu1rNuk__hn1O_EzHrIJ3EUZGCptKvBroeHVkxhX1TAYyLFSOEMDNP9abDz4Q-3nnEJcPtsxpdKfN7S9A== new file mode 100644 index 0000000..26031a2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SX-BFVu1rNuk__hn1O_EzHrIJ3EUZGCptKvBroeHVkxhX1TAYyLFSOEMDNP9abDz4Q-3nnEJcPtsxpdKfN7S9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SnPkf9zbehm30lGUcDO-VCmy3IqB8NYS_zwKOpQS0NJ9uVIwR2yQtcleIKg7tdK43tKSoPW2ESqyPDcyQm-ejQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SnPkf9zbehm30lGUcDO-VCmy3IqB8NYS_zwKOpQS0NJ9uVIwR2yQtcleIKg7tdK43tKSoPW2ESqyPDcyQm-ejQ== new file mode 100644 index 0000000..f3e696c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SnPkf9zbehm30lGUcDO-VCmy3IqB8NYS_zwKOpQS0NJ9uVIwR2yQtcleIKg7tdK43tKSoPW2ESqyPDcyQm-ejQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SpZ5lk9IZiW8HnHIzViJLcK1_jEhV3O4LybOZjGNAYsec2BoicArZXqY0PlJBros8OHKNMykbQf22zpTy3tZPw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SpZ5lk9IZiW8HnHIzViJLcK1_jEhV3O4LybOZjGNAYsec2BoicArZXqY0PlJBros8OHKNMykbQf22zpTy3tZPw== new file mode 100644 index 0000000..231f0a9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SpZ5lk9IZiW8HnHIzViJLcK1_jEhV3O4LybOZjGNAYsec2BoicArZXqY0PlJBros8OHKNMykbQf22zpTy3tZPw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SyoWZgyf-oysddprWWe2glX0PYmhwS7AxtQm8iXtCgem56qHP94gq0TKDXIjvSvyfAOpwR8WQnI1M5rYsLmcWA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SyoWZgyf-oysddprWWe2glX0PYmhwS7AxtQm8iXtCgem56qHP94gq0TKDXIjvSvyfAOpwR8WQnI1M5rYsLmcWA== new file mode 100644 index 0000000..f572bfd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~SyoWZgyf-oysddprWWe2glX0PYmhwS7AxtQm8iXtCgem56qHP94gq0TKDXIjvSvyfAOpwR8WQnI1M5rYsLmcWA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~T2Vo21sFcfQrygOt_9JeD_2_muI8pJom8q6lT0DUoV_MyNZkNRo3UtXhQC--wzMztVA4iK01wu7ZvGWBbPkSTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~T2Vo21sFcfQrygOt_9JeD_2_muI8pJom8q6lT0DUoV_MyNZkNRo3UtXhQC--wzMztVA4iK01wu7ZvGWBbPkSTw== new file mode 100644 index 0000000..45af342 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~T2Vo21sFcfQrygOt_9JeD_2_muI8pJom8q6lT0DUoV_MyNZkNRo3UtXhQC--wzMztVA4iK01wu7ZvGWBbPkSTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~T8v99TJB__iJy7rg1uo1hpRCArwW_Hy40OKlP-yQBKc7KLES1e6mqsaLM_lxKtH4Rx7zPUPn905HtM7IGwzb8w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~T8v99TJB__iJy7rg1uo1hpRCArwW_Hy40OKlP-yQBKc7KLES1e6mqsaLM_lxKtH4Rx7zPUPn905HtM7IGwzb8w== new file mode 100644 index 0000000..eb2108f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~T8v99TJB__iJy7rg1uo1hpRCArwW_Hy40OKlP-yQBKc7KLES1e6mqsaLM_lxKtH4Rx7zPUPn905HtM7IGwzb8w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~T9kGFk11vbMrvd6TDIEDqRs-10jPxadnqbXb6DbtEXFs_FeYSYgWN6sQJWUKWQR4Wb4T61cTk76TW1ewYX9Agw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~T9kGFk11vbMrvd6TDIEDqRs-10jPxadnqbXb6DbtEXFs_FeYSYgWN6sQJWUKWQR4Wb4T61cTk76TW1ewYX9Agw== new file mode 100644 index 0000000..365ce6f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~T9kGFk11vbMrvd6TDIEDqRs-10jPxadnqbXb6DbtEXFs_FeYSYgWN6sQJWUKWQR4Wb4T61cTk76TW1ewYX9Agw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TAsJafQd44k0fl3Gh8dbN5cDTUAcumb44IrtQ_-CxTtyAmw76him-cPHnrlTB3Lfq1SWfDDBOze_mFfCHvZoHg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TAsJafQd44k0fl3Gh8dbN5cDTUAcumb44IrtQ_-CxTtyAmw76him-cPHnrlTB3Lfq1SWfDDBOze_mFfCHvZoHg== new file mode 100644 index 0000000..fa159ba Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TAsJafQd44k0fl3Gh8dbN5cDTUAcumb44IrtQ_-CxTtyAmw76him-cPHnrlTB3Lfq1SWfDDBOze_mFfCHvZoHg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TKgEScrALEGlN6oSS6CdpfOmQo8CnBDqeeSfWevbmhm-w05pbsPVUSUKYXZnt1UaLLF6ybSR16oUEwbFp5heEA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TKgEScrALEGlN6oSS6CdpfOmQo8CnBDqeeSfWevbmhm-w05pbsPVUSUKYXZnt1UaLLF6ybSR16oUEwbFp5heEA== new file mode 100644 index 0000000..b4aa1f3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TKgEScrALEGlN6oSS6CdpfOmQo8CnBDqeeSfWevbmhm-w05pbsPVUSUKYXZnt1UaLLF6ybSR16oUEwbFp5heEA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TO1WPDKwRxLH0JjxpdwAtaSjNHEQaPSKyYFbUCaEsEybgcTNcr1cXHeTOY3bDaRqmy-90JimqzC0Rn4eAT4FCA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TO1WPDKwRxLH0JjxpdwAtaSjNHEQaPSKyYFbUCaEsEybgcTNcr1cXHeTOY3bDaRqmy-90JimqzC0Rn4eAT4FCA== new file mode 100644 index 0000000..29202b0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TO1WPDKwRxLH0JjxpdwAtaSjNHEQaPSKyYFbUCaEsEybgcTNcr1cXHeTOY3bDaRqmy-90JimqzC0Rn4eAT4FCA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TP7Jrt4aLYvc3RSrId9uiS2nzzkLYWQPnFeWF_grlF6LrKmyVbV_MFA2MJ0tbSnib3GZi6ql4U-NZxlc7aHN8g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TP7Jrt4aLYvc3RSrId9uiS2nzzkLYWQPnFeWF_grlF6LrKmyVbV_MFA2MJ0tbSnib3GZi6ql4U-NZxlc7aHN8g== new file mode 100644 index 0000000..42d888b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TP7Jrt4aLYvc3RSrId9uiS2nzzkLYWQPnFeWF_grlF6LrKmyVbV_MFA2MJ0tbSnib3GZi6ql4U-NZxlc7aHN8g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TPUPEHqExrRf-k7nI8VAkc5Xh__SFDyPuQ6U_xuD3CJ1Lq21ZFCKX6r1aQWKrthIzzGUsMUnH5X4_klJ2b30nQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TPUPEHqExrRf-k7nI8VAkc5Xh__SFDyPuQ6U_xuD3CJ1Lq21ZFCKX6r1aQWKrthIzzGUsMUnH5X4_klJ2b30nQ== new file mode 100644 index 0000000..a6ed731 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TPUPEHqExrRf-k7nI8VAkc5Xh__SFDyPuQ6U_xuD3CJ1Lq21ZFCKX6r1aQWKrthIzzGUsMUnH5X4_klJ2b30nQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TYHgWqOk6tBZcvNLSN64hweDKljtLIBRMX6rGoNpKTQ8KSw4Gv79UibJMCP5U3DN6ndjZh6AjEM7h9p-04Dujg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TYHgWqOk6tBZcvNLSN64hweDKljtLIBRMX6rGoNpKTQ8KSw4Gv79UibJMCP5U3DN6ndjZh6AjEM7h9p-04Dujg== new file mode 100644 index 0000000..3bdd1bb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TYHgWqOk6tBZcvNLSN64hweDKljtLIBRMX6rGoNpKTQ8KSw4Gv79UibJMCP5U3DN6ndjZh6AjEM7h9p-04Dujg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TdCvWcQYagitGe55Hkw5kz4uhbi633JQOZrub4W1A9uqX2Yun8SGmCWY1cHn2i-ynw8SLKTaTnAf2-KYsnTAmQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TdCvWcQYagitGe55Hkw5kz4uhbi633JQOZrub4W1A9uqX2Yun8SGmCWY1cHn2i-ynw8SLKTaTnAf2-KYsnTAmQ== new file mode 100644 index 0000000..709db52 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TdCvWcQYagitGe55Hkw5kz4uhbi633JQOZrub4W1A9uqX2Yun8SGmCWY1cHn2i-ynw8SLKTaTnAf2-KYsnTAmQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ted0Q6AlBJb8NyHnMnZlrE1qB6yv6BoEgPE94wtcHbn_m08SAv2OpRN3HUsz8Tsej4QesnWl2WRLvoj-CcslJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ted0Q6AlBJb8NyHnMnZlrE1qB6yv6BoEgPE94wtcHbn_m08SAv2OpRN3HUsz8Tsej4QesnWl2WRLvoj-CcslJg== new file mode 100644 index 0000000..49ca622 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ted0Q6AlBJb8NyHnMnZlrE1qB6yv6BoEgPE94wtcHbn_m08SAv2OpRN3HUsz8Tsej4QesnWl2WRLvoj-CcslJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ThQz8ovlR6MDDUTRHX8C_U1rQDardT9-e9puHO3AtOdEkAJXLdVXO0qXA-XqpHv5PRXhMCcjKelMUe0xpFPSNg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ThQz8ovlR6MDDUTRHX8C_U1rQDardT9-e9puHO3AtOdEkAJXLdVXO0qXA-XqpHv5PRXhMCcjKelMUe0xpFPSNg== new file mode 100644 index 0000000..810ddcb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ThQz8ovlR6MDDUTRHX8C_U1rQDardT9-e9puHO3AtOdEkAJXLdVXO0qXA-XqpHv5PRXhMCcjKelMUe0xpFPSNg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Tjy-38EISDEZVgprMCpwzpyxqkHMX33Zvgc0Cgyg486EBffM0Bi9P-LBs7NDx-XIFwqHFmGOEwPMlnOQbMcDCg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Tjy-38EISDEZVgprMCpwzpyxqkHMX33Zvgc0Cgyg486EBffM0Bi9P-LBs7NDx-XIFwqHFmGOEwPMlnOQbMcDCg== new file mode 100644 index 0000000..3537970 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Tjy-38EISDEZVgprMCpwzpyxqkHMX33Zvgc0Cgyg486EBffM0Bi9P-LBs7NDx-XIFwqHFmGOEwPMlnOQbMcDCg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TlaSQAb-WI-ckvWp-m_q1keMl9JssshrSYq4kjyZJ2N0T0VPBrrTQamVCI_Se_q1Gk7OAkdbdXaEmOZ85jissg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TlaSQAb-WI-ckvWp-m_q1keMl9JssshrSYq4kjyZJ2N0T0VPBrrTQamVCI_Se_q1Gk7OAkdbdXaEmOZ85jissg== new file mode 100644 index 0000000..9cf2b78 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TlaSQAb-WI-ckvWp-m_q1keMl9JssshrSYq4kjyZJ2N0T0VPBrrTQamVCI_Se_q1Gk7OAkdbdXaEmOZ85jissg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TnkR69jd0kexpYR9AwdshVUaXPXaR6O0P_u4s_Cno6wuD109AJHRCGmngCcMTc1wZHBq8AGl80Zard4-yTkOhw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TnkR69jd0kexpYR9AwdshVUaXPXaR6O0P_u4s_Cno6wuD109AJHRCGmngCcMTc1wZHBq8AGl80Zard4-yTkOhw== new file mode 100644 index 0000000..c1d21d5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TnkR69jd0kexpYR9AwdshVUaXPXaR6O0P_u4s_Cno6wuD109AJHRCGmngCcMTc1wZHBq8AGl80Zard4-yTkOhw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ts6qU5ejDdWqjTt3vKnT0e5QSaS7RCRW2DoUCxgH6V4QT1alvDWmYT2FWoJ1JA6M_Av2mUJ3yj7_VYseXzWyuQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ts6qU5ejDdWqjTt3vKnT0e5QSaS7RCRW2DoUCxgH6V4QT1alvDWmYT2FWoJ1JA6M_Av2mUJ3yj7_VYseXzWyuQ== new file mode 100644 index 0000000..2b136b4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ts6qU5ejDdWqjTt3vKnT0e5QSaS7RCRW2DoUCxgH6V4QT1alvDWmYT2FWoJ1JA6M_Av2mUJ3yj7_VYseXzWyuQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TydhGwWgGA-QrM65-iLTTi4dGIhD9lb4ZVvOIs3UFy8N1QfDsnQmkEjelpq7op3s5cmkmdYys3hZStx2Nl1Ruw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TydhGwWgGA-QrM65-iLTTi4dGIhD9lb4ZVvOIs3UFy8N1QfDsnQmkEjelpq7op3s5cmkmdYys3hZStx2Nl1Ruw== new file mode 100644 index 0000000..443aac2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~TydhGwWgGA-QrM65-iLTTi4dGIhD9lb4ZVvOIs3UFy8N1QfDsnQmkEjelpq7op3s5cmkmdYys3hZStx2Nl1Ruw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~U4AqNrEl0jc5D4zGi50v9gl5YLMFRB8I5h97XAV2iv5JGLTBK-HnoH2jqqnQb16npeK6bOI7WJ_mRdrvqHLJLQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~U4AqNrEl0jc5D4zGi50v9gl5YLMFRB8I5h97XAV2iv5JGLTBK-HnoH2jqqnQb16npeK6bOI7WJ_mRdrvqHLJLQ== new file mode 100644 index 0000000..b117d48 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~U4AqNrEl0jc5D4zGi50v9gl5YLMFRB8I5h97XAV2iv5JGLTBK-HnoH2jqqnQb16npeK6bOI7WJ_mRdrvqHLJLQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~U9q1FpnPDW8ar2RNQhfW7f-6wcMyOXpOA8-DPo0uYKUcJ-TVLJ4v-2tHYLb-5M0BrHhEQjXk0wMhBUCrxqJZ_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~U9q1FpnPDW8ar2RNQhfW7f-6wcMyOXpOA8-DPo0uYKUcJ-TVLJ4v-2tHYLb-5M0BrHhEQjXk0wMhBUCrxqJZ_w== new file mode 100644 index 0000000..4ce9162 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~U9q1FpnPDW8ar2RNQhfW7f-6wcMyOXpOA8-DPo0uYKUcJ-TVLJ4v-2tHYLb-5M0BrHhEQjXk0wMhBUCrxqJZ_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UGLJ7Ue1iQFDiOdYJOGpBXC3o_QwbUy1e5VXMNMzCBeL4jJs8RSTHyMAIfoZLxu1L8oiwQysEzxc5PLc0VvJkg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UGLJ7Ue1iQFDiOdYJOGpBXC3o_QwbUy1e5VXMNMzCBeL4jJs8RSTHyMAIfoZLxu1L8oiwQysEzxc5PLc0VvJkg== new file mode 100644 index 0000000..953b0f8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UGLJ7Ue1iQFDiOdYJOGpBXC3o_QwbUy1e5VXMNMzCBeL4jJs8RSTHyMAIfoZLxu1L8oiwQysEzxc5PLc0VvJkg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UPyYsd5Xz61tFgkg9TYbIqz6OrZm68xQsg2Cn0q3RNpyo6RMetUH5hoJCRN6bB1MusGhTgI0TFYKeR0oObmXxw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UPyYsd5Xz61tFgkg9TYbIqz6OrZm68xQsg2Cn0q3RNpyo6RMetUH5hoJCRN6bB1MusGhTgI0TFYKeR0oObmXxw== new file mode 100644 index 0000000..e5d3d5f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UPyYsd5Xz61tFgkg9TYbIqz6OrZm68xQsg2Cn0q3RNpyo6RMetUH5hoJCRN6bB1MusGhTgI0TFYKeR0oObmXxw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UR_E6q04vP5a8sc--nfzJgJ6qXhORY2ugPyQvaWVMopKexcxkOyORuCl-e_8ItVpsEU375-Z_a1Gyla6L1gy6Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UR_E6q04vP5a8sc--nfzJgJ6qXhORY2ugPyQvaWVMopKexcxkOyORuCl-e_8ItVpsEU375-Z_a1Gyla6L1gy6Q== new file mode 100644 index 0000000..bcbf9fe Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UR_E6q04vP5a8sc--nfzJgJ6qXhORY2ugPyQvaWVMopKexcxkOyORuCl-e_8ItVpsEU375-Z_a1Gyla6L1gy6Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UR_cVo5ZYDxNU94BPi1kM-QWTZ79aWy0AEyzTlRv3YTCiiWk_LqU5cQ7kifYs2S6LMsD8QtyZVVN_RzMCKvCxg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UR_cVo5ZYDxNU94BPi1kM-QWTZ79aWy0AEyzTlRv3YTCiiWk_LqU5cQ7kifYs2S6LMsD8QtyZVVN_RzMCKvCxg== new file mode 100644 index 0000000..8593ede Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UR_cVo5ZYDxNU94BPi1kM-QWTZ79aWy0AEyzTlRv3YTCiiWk_LqU5cQ7kifYs2S6LMsD8QtyZVVN_RzMCKvCxg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UoNIl632dHsRY0YxxNMAOzkKUHpGklojVj752R9FUm_i7KEaEWDODB8JAwjtIacL9c7CZc3jLD6lf3wdM1CVKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UoNIl632dHsRY0YxxNMAOzkKUHpGklojVj752R9FUm_i7KEaEWDODB8JAwjtIacL9c7CZc3jLD6lf3wdM1CVKw== new file mode 100644 index 0000000..6097d0d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UoNIl632dHsRY0YxxNMAOzkKUHpGklojVj752R9FUm_i7KEaEWDODB8JAwjtIacL9c7CZc3jLD6lf3wdM1CVKw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UsyvqYSgQTiEVeN8QWtaPlbeg-oDSSDM0e5eTmMODfRzgM9J2gkotNXIrUqgQVO0nDmPAsPNt3ru-OJywL1igA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UsyvqYSgQTiEVeN8QWtaPlbeg-oDSSDM0e5eTmMODfRzgM9J2gkotNXIrUqgQVO0nDmPAsPNt3ru-OJywL1igA== new file mode 100644 index 0000000..87c5945 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~UsyvqYSgQTiEVeN8QWtaPlbeg-oDSSDM0e5eTmMODfRzgM9J2gkotNXIrUqgQVO0nDmPAsPNt3ru-OJywL1igA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~V7pUfqBijAKR_9_SgHA6fKDiTl6Y1ymxPTlhODlXBa9lUn6RA3amYFae5VqD5JWRhqK0wHgqzUbT5rynUFA_HQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~V7pUfqBijAKR_9_SgHA6fKDiTl6Y1ymxPTlhODlXBa9lUn6RA3amYFae5VqD5JWRhqK0wHgqzUbT5rynUFA_HQ== new file mode 100644 index 0000000..d1ae901 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~V7pUfqBijAKR_9_SgHA6fKDiTl6Y1ymxPTlhODlXBa9lUn6RA3amYFae5VqD5JWRhqK0wHgqzUbT5rynUFA_HQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~V8kDt9E9Us9D2Ws1X1VsSKH2vhLWaMWMjF02mb4YnjjMBbHFugPxKOfvRqz559ANtdHtEVRwUgzAegREcdW7xg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~V8kDt9E9Us9D2Ws1X1VsSKH2vhLWaMWMjF02mb4YnjjMBbHFugPxKOfvRqz559ANtdHtEVRwUgzAegREcdW7xg== new file mode 100644 index 0000000..8905614 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~V8kDt9E9Us9D2Ws1X1VsSKH2vhLWaMWMjF02mb4YnjjMBbHFugPxKOfvRqz559ANtdHtEVRwUgzAegREcdW7xg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VBbBYE1U4qavd_YoRvJEoOBhpsifmMjckaVoCxTRgV4GY1h-fH_lFMaJf5PYU9Aa6R1tW1GrshSoStaLCZSvZw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VBbBYE1U4qavd_YoRvJEoOBhpsifmMjckaVoCxTRgV4GY1h-fH_lFMaJf5PYU9Aa6R1tW1GrshSoStaLCZSvZw== new file mode 100644 index 0000000..b292ad7 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VBbBYE1U4qavd_YoRvJEoOBhpsifmMjckaVoCxTRgV4GY1h-fH_lFMaJf5PYU9Aa6R1tW1GrshSoStaLCZSvZw== @@ -0,0 +1 @@ +[{"type":1,"name":"3A95F342D03DDBBC3FCB2D27D743FA"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VDQqYv7mQaJ4dj20_UwxNajJOpR6UVKhOOKRCHuexxkLon0l210b_-Z89dIEQ6y3PTqY47Zl3XGQauYIonhDdg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VDQqYv7mQaJ4dj20_UwxNajJOpR6UVKhOOKRCHuexxkLon0l210b_-Z89dIEQ6y3PTqY47Zl3XGQauYIonhDdg== new file mode 100644 index 0000000..65532c6 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VDQqYv7mQaJ4dj20_UwxNajJOpR6UVKhOOKRCHuexxkLon0l210b_-Z89dIEQ6y3PTqY47Zl3XGQauYIonhDdg== @@ -0,0 +1 @@ +[{"type":1,"name":"7E9222E306393090885D6D26F435CA"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VEe6hfq2hSPhBaOVPQFjNSBf2u2rRwazGqPuUmhQOqMKYxSyK51ndJqPr4222CNuk-CxMiYLB_dfhtL79Wfr1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VEe6hfq2hSPhBaOVPQFjNSBf2u2rRwazGqPuUmhQOqMKYxSyK51ndJqPr4222CNuk-CxMiYLB_dfhtL79Wfr1g== new file mode 100644 index 0000000..a6111dc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VEe6hfq2hSPhBaOVPQFjNSBf2u2rRwazGqPuUmhQOqMKYxSyK51ndJqPr4222CNuk-CxMiYLB_dfhtL79Wfr1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VFhxl6AoUxjaC-2jdF7S-2smeDCh8m-1eEf0EZBxdbY_KVBc7e4IqWlVHbATpOhOMkgin1l3C_zd2tHSRssBlA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VFhxl6AoUxjaC-2jdF7S-2smeDCh8m-1eEf0EZBxdbY_KVBc7e4IqWlVHbATpOhOMkgin1l3C_zd2tHSRssBlA== new file mode 100644 index 0000000..11f8d31 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VFhxl6AoUxjaC-2jdF7S-2smeDCh8m-1eEf0EZBxdbY_KVBc7e4IqWlVHbATpOhOMkgin1l3C_zd2tHSRssBlA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VGrPfawfdMfhrDwfBem5M1bI9YZshzYzxf1k-y9ET0f4PyDz8B6vNPX7gDIo-dLMkKvWhZNhu92Ywa4h8cdn5Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VGrPfawfdMfhrDwfBem5M1bI9YZshzYzxf1k-y9ET0f4PyDz8B6vNPX7gDIo-dLMkKvWhZNhu92Ywa4h8cdn5Q== new file mode 100644 index 0000000..98716b6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VGrPfawfdMfhrDwfBem5M1bI9YZshzYzxf1k-y9ET0f4PyDz8B6vNPX7gDIo-dLMkKvWhZNhu92Ywa4h8cdn5Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VHX0ZQuzvPyelnOD-qMxrfxYgHfL7ZM1YPahZJ_3yU0v0k2zYCQNpSb7Rf5vzpAqjpTvpYkqtnOjKUOs2ss3SA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VHX0ZQuzvPyelnOD-qMxrfxYgHfL7ZM1YPahZJ_3yU0v0k2zYCQNpSb7Rf5vzpAqjpTvpYkqtnOjKUOs2ss3SA== new file mode 100644 index 0000000..1e619be Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VHX0ZQuzvPyelnOD-qMxrfxYgHfL7ZM1YPahZJ_3yU0v0k2zYCQNpSb7Rf5vzpAqjpTvpYkqtnOjKUOs2ss3SA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VJKxStRAKC8KziWZYY96GdrhJJxOd8wkrhijO9HTqJw2MPJLval0IctN0xC_OkzyjJKz4DJCq1p0XCIvWGoo3w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VJKxStRAKC8KziWZYY96GdrhJJxOd8wkrhijO9HTqJw2MPJLval0IctN0xC_OkzyjJKz4DJCq1p0XCIvWGoo3w== new file mode 100644 index 0000000..4ffa396 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VJKxStRAKC8KziWZYY96GdrhJJxOd8wkrhijO9HTqJw2MPJLval0IctN0xC_OkzyjJKz4DJCq1p0XCIvWGoo3w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VKnpvJDCOfFNVfTM4hHPaqyKlXyiA7O2njTBZNeTjbrLBk-ZMjK20QWJ9qwPdpC6VtSY666sF45UnurQe--FFA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VKnpvJDCOfFNVfTM4hHPaqyKlXyiA7O2njTBZNeTjbrLBk-ZMjK20QWJ9qwPdpC6VtSY666sF45UnurQe--FFA== new file mode 100644 index 0000000..63fd366 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VKnpvJDCOfFNVfTM4hHPaqyKlXyiA7O2njTBZNeTjbrLBk-ZMjK20QWJ9qwPdpC6VtSY666sF45UnurQe--FFA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VMzlPD4wDE20xFRw_ddI49BkfoOPSePy1TKTZqF29_ERn9-ZTc_8H1_X5Wl-hk0Teu4rkKlgF8MpKhVkkhKATQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VMzlPD4wDE20xFRw_ddI49BkfoOPSePy1TKTZqF29_ERn9-ZTc_8H1_X5Wl-hk0Teu4rkKlgF8MpKhVkkhKATQ== new file mode 100644 index 0000000..dcd5607 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VMzlPD4wDE20xFRw_ddI49BkfoOPSePy1TKTZqF29_ERn9-ZTc_8H1_X5Wl-hk0Teu4rkKlgF8MpKhVkkhKATQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VVFTn6qG3e_2q9LYokguUfjkNgeTrVDQdgrU7ftnyL6zdCbEjV_XGhn__fmbBabUFeTB-ZUsmkI2D7KLqeqzgg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VVFTn6qG3e_2q9LYokguUfjkNgeTrVDQdgrU7ftnyL6zdCbEjV_XGhn__fmbBabUFeTB-ZUsmkI2D7KLqeqzgg== new file mode 100644 index 0000000..0b9df5a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VVFTn6qG3e_2q9LYokguUfjkNgeTrVDQdgrU7ftnyL6zdCbEjV_XGhn__fmbBabUFeTB-ZUsmkI2D7KLqeqzgg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VejvP8qK3gOJTyqrm0unG401NVq_OUmqeJdajQFUIHpaCs9HhEt8VycflbT9EqIHBv4mzHcBcly72MLhVF-MTQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VejvP8qK3gOJTyqrm0unG401NVq_OUmqeJdajQFUIHpaCs9HhEt8VycflbT9EqIHBv4mzHcBcly72MLhVF-MTQ== new file mode 100644 index 0000000..f999455 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VejvP8qK3gOJTyqrm0unG401NVq_OUmqeJdajQFUIHpaCs9HhEt8VycflbT9EqIHBv4mzHcBcly72MLhVF-MTQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VmSRvCpqRgK2RrH9o1Zo3HrADaXx9_qUt321Z-qWOOynYzhhkH-cecE1I8_mrUgpj4BJoQxe03dw2i3XxZ_vyg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VmSRvCpqRgK2RrH9o1Zo3HrADaXx9_qUt321Z-qWOOynYzhhkH-cecE1I8_mrUgpj4BJoQxe03dw2i3XxZ_vyg== new file mode 100644 index 0000000..4c95833 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VmSRvCpqRgK2RrH9o1Zo3HrADaXx9_qUt321Z-qWOOynYzhhkH-cecE1I8_mrUgpj4BJoQxe03dw2i3XxZ_vyg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Vp1a4NSAC0OouUYnmEPbzEkDPXq9NXj7c4BSkUxAGw9WxIaIC2ijQOO2d124ZfYTAvEjBQ20mgBUzXQvZePClA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Vp1a4NSAC0OouUYnmEPbzEkDPXq9NXj7c4BSkUxAGw9WxIaIC2ijQOO2d124ZfYTAvEjBQ20mgBUzXQvZePClA== new file mode 100644 index 0000000..4b4257b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Vp1a4NSAC0OouUYnmEPbzEkDPXq9NXj7c4BSkUxAGw9WxIaIC2ijQOO2d124ZfYTAvEjBQ20mgBUzXQvZePClA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Vq06DLiTsCKOlgUibgHwXMeUI1uNBGSTXmcYe1yI8S-VlUiCzl-rzwQ1exn3GNXoc9m9I5fND7eifQdd5QjgkQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Vq06DLiTsCKOlgUibgHwXMeUI1uNBGSTXmcYe1yI8S-VlUiCzl-rzwQ1exn3GNXoc9m9I5fND7eifQdd5QjgkQ== new file mode 100644 index 0000000..a8c8230 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Vq06DLiTsCKOlgUibgHwXMeUI1uNBGSTXmcYe1yI8S-VlUiCzl-rzwQ1exn3GNXoc9m9I5fND7eifQdd5QjgkQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VrHCFUmsj8S_IjUKoR8RsfggMQ-8-9Zu95AX_1gCp6aADJSj_aYez9DPOFp75yvjvWTlm9u99dZyBJRm5Qd1Og== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VrHCFUmsj8S_IjUKoR8RsfggMQ-8-9Zu95AX_1gCp6aADJSj_aYez9DPOFp75yvjvWTlm9u99dZyBJRm5Qd1Og== new file mode 100644 index 0000000..22405de Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VrHCFUmsj8S_IjUKoR8RsfggMQ-8-9Zu95AX_1gCp6aADJSj_aYez9DPOFp75yvjvWTlm9u99dZyBJRm5Qd1Og== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VsOnB9D5kb08jidcu-N4a5_UgfVERhWuCTXrTIfDkcOfp5u3sRIREIHn_ptAm7rR3bmJYfEPcAu8Aoi-9_pnJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VsOnB9D5kb08jidcu-N4a5_UgfVERhWuCTXrTIfDkcOfp5u3sRIREIHn_ptAm7rR3bmJYfEPcAu8Aoi-9_pnJg== new file mode 100644 index 0000000..7bbd6e1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VsOnB9D5kb08jidcu-N4a5_UgfVERhWuCTXrTIfDkcOfp5u3sRIREIHn_ptAm7rR3bmJYfEPcAu8Aoi-9_pnJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Vu6dTqkzmm4IGojx5u8LeYXn8gWPoXkhgqQ11tujjeVFJipSZATe6V-bkx2YTIkPXYiRWBu3Z1-9CU8haaDdLw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Vu6dTqkzmm4IGojx5u8LeYXn8gWPoXkhgqQ11tujjeVFJipSZATe6V-bkx2YTIkPXYiRWBu3Z1-9CU8haaDdLw== new file mode 100644 index 0000000..1cd1b13 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Vu6dTqkzmm4IGojx5u8LeYXn8gWPoXkhgqQ11tujjeVFJipSZATe6V-bkx2YTIkPXYiRWBu3Z1-9CU8haaDdLw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VuVIkyFWlknrY0UoZp0m1Fepn-6oMBBItTMhjpEpxYvf8NBIj3BOYt0RC64lP_frikdpIhyas7K46Pz_IhZKWA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VuVIkyFWlknrY0UoZp0m1Fepn-6oMBBItTMhjpEpxYvf8NBIj3BOYt0RC64lP_frikdpIhyas7K46Pz_IhZKWA== new file mode 100644 index 0000000..75c24ee Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VuVIkyFWlknrY0UoZp0m1Fepn-6oMBBItTMhjpEpxYvf8NBIj3BOYt0RC64lP_frikdpIhyas7K46Pz_IhZKWA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Vvu2M2XQah39par4j93ZjCEIIGq45jLaXAEDm5AgjhiVmey-2pwpfeYjnzqEBjs35AFRj9SvUONIFEFddLhnyg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Vvu2M2XQah39par4j93ZjCEIIGq45jLaXAEDm5AgjhiVmey-2pwpfeYjnzqEBjs35AFRj9SvUONIFEFddLhnyg== new file mode 100644 index 0000000..6bbdde1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Vvu2M2XQah39par4j93ZjCEIIGq45jLaXAEDm5AgjhiVmey-2pwpfeYjnzqEBjs35AFRj9SvUONIFEFddLhnyg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VyzI_TdociIagYi9Eu1-Nd3lzVmdXqFAfSur7aJGacA2TIsjPKNPATRjrDKI1y4zHJejXJiFi0PAscwiMhv19Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VyzI_TdociIagYi9Eu1-Nd3lzVmdXqFAfSur7aJGacA2TIsjPKNPATRjrDKI1y4zHJejXJiFi0PAscwiMhv19Q== new file mode 100644 index 0000000..0559c49 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~VyzI_TdociIagYi9Eu1-Nd3lzVmdXqFAfSur7aJGacA2TIsjPKNPATRjrDKI1y4zHJejXJiFi0PAscwiMhv19Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~W5-qLoWIx3PgvlStqtmFk8Dd2n9gB2NMbTYWJslzLxpfdvDN75ZZFUyfGCKxU9mNmJM0iU2xL_cMPOpd4CnDHw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~W5-qLoWIx3PgvlStqtmFk8Dd2n9gB2NMbTYWJslzLxpfdvDN75ZZFUyfGCKxU9mNmJM0iU2xL_cMPOpd4CnDHw== new file mode 100644 index 0000000..6cf7a66 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~W5-qLoWIx3PgvlStqtmFk8Dd2n9gB2NMbTYWJslzLxpfdvDN75ZZFUyfGCKxU9mNmJM0iU2xL_cMPOpd4CnDHw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~W69lSkJJ7vPdWDIEZhoULSagUJLO8AIQDUMY5fTOixL-bLEAWfAO2Xlf7x5Fni5aJO4DfAcsn6U1Cy_OzxHS0g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~W69lSkJJ7vPdWDIEZhoULSagUJLO8AIQDUMY5fTOixL-bLEAWfAO2Xlf7x5Fni5aJO4DfAcsn6U1Cy_OzxHS0g== new file mode 100644 index 0000000..6b45035 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~W69lSkJJ7vPdWDIEZhoULSagUJLO8AIQDUMY5fTOixL-bLEAWfAO2Xlf7x5Fni5aJO4DfAcsn6U1Cy_OzxHS0g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WBgDrCSmGW3IU2KXX21rjY1Hrh4qV-mrhW2_c_wQp7ZAe-p7fnhiJ3hQGjG16UD8FuR4sWdAqHko1LxFOF1Z_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WBgDrCSmGW3IU2KXX21rjY1Hrh4qV-mrhW2_c_wQp7ZAe-p7fnhiJ3hQGjG16UD8FuR4sWdAqHko1LxFOF1Z_A== new file mode 100644 index 0000000..73e07e7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WBgDrCSmGW3IU2KXX21rjY1Hrh4qV-mrhW2_c_wQp7ZAe-p7fnhiJ3hQGjG16UD8FuR4sWdAqHko1LxFOF1Z_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WHfMcTAaCJ2XQxauAPgzH8_mWDmppzDrcJwLHKXsbRGUlWifaXy8pNM7J_sXdu0VjLfG0ED4PZQDfu4Ez0z3Iw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WHfMcTAaCJ2XQxauAPgzH8_mWDmppzDrcJwLHKXsbRGUlWifaXy8pNM7J_sXdu0VjLfG0ED4PZQDfu4Ez0z3Iw== new file mode 100644 index 0000000..092d4b3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WHfMcTAaCJ2XQxauAPgzH8_mWDmppzDrcJwLHKXsbRGUlWifaXy8pNM7J_sXdu0VjLfG0ED4PZQDfu4Ez0z3Iw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WHk8o3LsbqYPhu0eVCR-Z_EEXsA6xQ0suvi2aCQtVHWPHLEUO4wsDLLyvbQT0C7eqlBJCkD4RTohXWXto1-PDQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WHk8o3LsbqYPhu0eVCR-Z_EEXsA6xQ0suvi2aCQtVHWPHLEUO4wsDLLyvbQT0C7eqlBJCkD4RTohXWXto1-PDQ== new file mode 100644 index 0000000..b7def5e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WHk8o3LsbqYPhu0eVCR-Z_EEXsA6xQ0suvi2aCQtVHWPHLEUO4wsDLLyvbQT0C7eqlBJCkD4RTohXWXto1-PDQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WIzAPEfq-F338X52a_K18q5fZdt66RI2ojNeOAGEofbnzEeYTwRnHtHf3NCjF3MFzxEgOrTRaMOpD6Ufq3aLYw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WIzAPEfq-F338X52a_K18q5fZdt66RI2ojNeOAGEofbnzEeYTwRnHtHf3NCjF3MFzxEgOrTRaMOpD6Ufq3aLYw== new file mode 100644 index 0000000..ff13325 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WIzAPEfq-F338X52a_K18q5fZdt66RI2ojNeOAGEofbnzEeYTwRnHtHf3NCjF3MFzxEgOrTRaMOpD6Ufq3aLYw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WKlrrU72nk-3HM3XKsNOqjpvxc11QBDSR8Gr3qSOX_JZG7qqfNw-Xpyv8vo-uXKAXZN_vYNrAsDEYsayeKZGRA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WKlrrU72nk-3HM3XKsNOqjpvxc11QBDSR8Gr3qSOX_JZG7qqfNw-Xpyv8vo-uXKAXZN_vYNrAsDEYsayeKZGRA== new file mode 100644 index 0000000..4ba1cea Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WKlrrU72nk-3HM3XKsNOqjpvxc11QBDSR8Gr3qSOX_JZG7qqfNw-Xpyv8vo-uXKAXZN_vYNrAsDEYsayeKZGRA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WLyCZWnBX9Yz5L9_XcBLgBdyuK3UZAEI6UwxJXW0MOsrymuZsFkRABusYhDuZzLiRg_vF3Ym5zlPuXDi4cWaNg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WLyCZWnBX9Yz5L9_XcBLgBdyuK3UZAEI6UwxJXW0MOsrymuZsFkRABusYhDuZzLiRg_vF3Ym5zlPuXDi4cWaNg== new file mode 100644 index 0000000..9c25cc4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WLyCZWnBX9Yz5L9_XcBLgBdyuK3UZAEI6UwxJXW0MOsrymuZsFkRABusYhDuZzLiRg_vF3Ym5zlPuXDi4cWaNg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WM2-Hkde3oQSAtllyr056jW1Y186WOKOX7oTLAIrdBy01lQXsrbh8Sy-jewFmuAnMNsWzqIvwp5g-4As55pwog== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WM2-Hkde3oQSAtllyr056jW1Y186WOKOX7oTLAIrdBy01lQXsrbh8Sy-jewFmuAnMNsWzqIvwp5g-4As55pwog== new file mode 100644 index 0000000..c2e5779 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WM2-Hkde3oQSAtllyr056jW1Y186WOKOX7oTLAIrdBy01lQXsrbh8Sy-jewFmuAnMNsWzqIvwp5g-4As55pwog== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WNEGX4MvSc0GOHTNU-67reLiMyIrcAGP1WAHFeeUpe3omd9oCUnaS0hAC2Gh_MJXE-_dvFSHH_BW-340yfdr_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WNEGX4MvSc0GOHTNU-67reLiMyIrcAGP1WAHFeeUpe3omd9oCUnaS0hAC2Gh_MJXE-_dvFSHH_BW-340yfdr_w== new file mode 100644 index 0000000..f21ce7c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WNEGX4MvSc0GOHTNU-67reLiMyIrcAGP1WAHFeeUpe3omd9oCUnaS0hAC2Gh_MJXE-_dvFSHH_BW-340yfdr_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WgEApWmfs--y5yz5CggfWAfu5eQlwFz9jxvV9bRbX1FAGy2HCdLK7PxkqKa7_QSzjS7oF6U_bMazh_q1DOKC3g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WgEApWmfs--y5yz5CggfWAfu5eQlwFz9jxvV9bRbX1FAGy2HCdLK7PxkqKa7_QSzjS7oF6U_bMazh_q1DOKC3g== new file mode 100644 index 0000000..a72adbe Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WgEApWmfs--y5yz5CggfWAfu5eQlwFz9jxvV9bRbX1FAGy2HCdLK7PxkqKa7_QSzjS7oF6U_bMazh_q1DOKC3g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WlcXBFGRkwO7FWMI7M5YhecUi4xFjQtCfFXlB1v6UhFhwGE_CI0tSfx9ZUloQY4M_gvT1JY7SQf1c3fUMA64gg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WlcXBFGRkwO7FWMI7M5YhecUi4xFjQtCfFXlB1v6UhFhwGE_CI0tSfx9ZUloQY4M_gvT1JY7SQf1c3fUMA64gg== new file mode 100644 index 0000000..bb8337a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WlcXBFGRkwO7FWMI7M5YhecUi4xFjQtCfFXlB1v6UhFhwGE_CI0tSfx9ZUloQY4M_gvT1JY7SQf1c3fUMA64gg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WlhAoq9jiZN1iQj1EKYHwZSOTtsOxcBFfsEeD5-fRpvIg6hvD-JoE6yOr8eII-khoUMnEOckAQ2NkbmZCIVHug== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WlhAoq9jiZN1iQj1EKYHwZSOTtsOxcBFfsEeD5-fRpvIg6hvD-JoE6yOr8eII-khoUMnEOckAQ2NkbmZCIVHug== new file mode 100644 index 0000000..a422772 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WlhAoq9jiZN1iQj1EKYHwZSOTtsOxcBFfsEeD5-fRpvIg6hvD-JoE6yOr8eII-khoUMnEOckAQ2NkbmZCIVHug== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WoP8DWqo_h2uZ6R4BFoQb-f_f7UEbA1uJse03CTqKvx1kRLXG5k2I5JIji_FuiGcBEI6oSz5gctZm7EIOUU_5g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WoP8DWqo_h2uZ6R4BFoQb-f_f7UEbA1uJse03CTqKvx1kRLXG5k2I5JIji_FuiGcBEI6oSz5gctZm7EIOUU_5g== new file mode 100644 index 0000000..c2adbd5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WoP8DWqo_h2uZ6R4BFoQb-f_f7UEbA1uJse03CTqKvx1kRLXG5k2I5JIji_FuiGcBEI6oSz5gctZm7EIOUU_5g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WsCcYp4DoSiF6p2OA4PpMcGb1ULJx2qSvko-jz5o-PVByacvkZcqjsD42ZlvIJ5Nh24IXMaZeWKhWQFqZfDO2w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WsCcYp4DoSiF6p2OA4PpMcGb1ULJx2qSvko-jz5o-PVByacvkZcqjsD42ZlvIJ5Nh24IXMaZeWKhWQFqZfDO2w== new file mode 100644 index 0000000..e10b507 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WsCcYp4DoSiF6p2OA4PpMcGb1ULJx2qSvko-jz5o-PVByacvkZcqjsD42ZlvIJ5Nh24IXMaZeWKhWQFqZfDO2w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WwL8pVB9HjyPkxV6vU4FzlGbqeKyd4CwAE-CXITlyDwT7GrMRWICin8mzSmQNLPQ0VuPgfIGdCJVpAl9xzxt0Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WwL8pVB9HjyPkxV6vU4FzlGbqeKyd4CwAE-CXITlyDwT7GrMRWICin8mzSmQNLPQ0VuPgfIGdCJVpAl9xzxt0Q== new file mode 100644 index 0000000..d8ca935 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~WwL8pVB9HjyPkxV6vU4FzlGbqeKyd4CwAE-CXITlyDwT7GrMRWICin8mzSmQNLPQ0VuPgfIGdCJVpAl9xzxt0Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~X02PscwfAZEX6LOrDoGllVVsWe8koNHeqlPZXhjIaWSxWnjFXwQl4uF81dW65uBhktVYI6gc-ltwnk-14n7cZg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~X02PscwfAZEX6LOrDoGllVVsWe8koNHeqlPZXhjIaWSxWnjFXwQl4uF81dW65uBhktVYI6gc-ltwnk-14n7cZg== new file mode 100644 index 0000000..0c655d8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~X02PscwfAZEX6LOrDoGllVVsWe8koNHeqlPZXhjIaWSxWnjFXwQl4uF81dW65uBhktVYI6gc-ltwnk-14n7cZg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~X1N2JarRx67VreL4TZqTBzkEGS7VxsEvUbBYu38vETynnLKDrrJ9uMeb3Q_XWhSKQgQvepBl-WHlKwZBe3k7RA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~X1N2JarRx67VreL4TZqTBzkEGS7VxsEvUbBYu38vETynnLKDrrJ9uMeb3Q_XWhSKQgQvepBl-WHlKwZBe3k7RA== new file mode 100644 index 0000000..a6de039 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~X1N2JarRx67VreL4TZqTBzkEGS7VxsEvUbBYu38vETynnLKDrrJ9uMeb3Q_XWhSKQgQvepBl-WHlKwZBe3k7RA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~X5chPA6u94DaFSZx4-zonfcHygoxBQBXTHNtS_fvgqPeDmlBEBwXYrKASKETznOjR5X78VfEEvTvfuYE8PGXnQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~X5chPA6u94DaFSZx4-zonfcHygoxBQBXTHNtS_fvgqPeDmlBEBwXYrKASKETznOjR5X78VfEEvTvfuYE8PGXnQ== new file mode 100644 index 0000000..b97eb4f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~X5chPA6u94DaFSZx4-zonfcHygoxBQBXTHNtS_fvgqPeDmlBEBwXYrKASKETznOjR5X78VfEEvTvfuYE8PGXnQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~X9IbUsIJYuVhDi8OllREWWA8Naei4BEocPJhmAQRoM51VVVm_NeXyBoA4EtnEJwx6VmoHw9oSiZJCBLAVzSzlw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~X9IbUsIJYuVhDi8OllREWWA8Naei4BEocPJhmAQRoM51VVVm_NeXyBoA4EtnEJwx6VmoHw9oSiZJCBLAVzSzlw== new file mode 100644 index 0000000..0e8e4c2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~X9IbUsIJYuVhDi8OllREWWA8Naei4BEocPJhmAQRoM51VVVm_NeXyBoA4EtnEJwx6VmoHw9oSiZJCBLAVzSzlw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XAATZUHciu8TNJn1tcmijDgZ2QqERqI2bvM9L-imkYiIaQPiFd3mJtZY5gd8nZbBGSyE1FMiixMN--7teXX61w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XAATZUHciu8TNJn1tcmijDgZ2QqERqI2bvM9L-imkYiIaQPiFd3mJtZY5gd8nZbBGSyE1FMiixMN--7teXX61w== new file mode 100644 index 0000000..db8e99f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XAATZUHciu8TNJn1tcmijDgZ2QqERqI2bvM9L-imkYiIaQPiFd3mJtZY5gd8nZbBGSyE1FMiixMN--7teXX61w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XCpNmsUFW9ITN9YGlY0yMKb48InroeYJ6Mw0iHep_2Hs5xqumaSIF1V19HIpdKRRcEyXMPuzx-44pFHcnsO3Zw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XCpNmsUFW9ITN9YGlY0yMKb48InroeYJ6Mw0iHep_2Hs5xqumaSIF1V19HIpdKRRcEyXMPuzx-44pFHcnsO3Zw== new file mode 100644 index 0000000..355decd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XCpNmsUFW9ITN9YGlY0yMKb48InroeYJ6Mw0iHep_2Hs5xqumaSIF1V19HIpdKRRcEyXMPuzx-44pFHcnsO3Zw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XIfU7MhGcKaGmb7RZn23BHHq3WOaOCUsBj3_u9AEEkWRbBOEv5hN9rwwwRJ0e57Bz6-2rbNzuNuwlPekbQWNwA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XIfU7MhGcKaGmb7RZn23BHHq3WOaOCUsBj3_u9AEEkWRbBOEv5hN9rwwwRJ0e57Bz6-2rbNzuNuwlPekbQWNwA== new file mode 100644 index 0000000..e592095 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XIfU7MhGcKaGmb7RZn23BHHq3WOaOCUsBj3_u9AEEkWRbBOEv5hN9rwwwRJ0e57Bz6-2rbNzuNuwlPekbQWNwA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XLmTp3d0RE5vfSvvjilllv4obsg6JSWHSlDU6gugIj26XWHKI8zupQ8tvnUUuOpZGTx71x3jzH-77oTFgIF8Cw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XLmTp3d0RE5vfSvvjilllv4obsg6JSWHSlDU6gugIj26XWHKI8zupQ8tvnUUuOpZGTx71x3jzH-77oTFgIF8Cw== new file mode 100644 index 0000000..ecb1422 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XLmTp3d0RE5vfSvvjilllv4obsg6JSWHSlDU6gugIj26XWHKI8zupQ8tvnUUuOpZGTx71x3jzH-77oTFgIF8Cw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XOc8u-UIbZszge756i9DPaBVtnjvjr5zjxQxj-pu3Tgw_gawpu3s5lTEcqIw5WRGyx9rSueZa7uh4fdKZM8iSw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XOc8u-UIbZszge756i9DPaBVtnjvjr5zjxQxj-pu3Tgw_gawpu3s5lTEcqIw5WRGyx9rSueZa7uh4fdKZM8iSw== new file mode 100644 index 0000000..b807adf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XOc8u-UIbZszge756i9DPaBVtnjvjr5zjxQxj-pu3Tgw_gawpu3s5lTEcqIw5WRGyx9rSueZa7uh4fdKZM8iSw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XTgsUlXOzsnCRYZ-KAEb0Vav9r-_ihGT3ntweSFt1nFw7RmvnqaCAT6KO6Cl1xi7CVTCgsp85ENA9AA_YxMmzw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XTgsUlXOzsnCRYZ-KAEb0Vav9r-_ihGT3ntweSFt1nFw7RmvnqaCAT6KO6Cl1xi7CVTCgsp85ENA9AA_YxMmzw== new file mode 100644 index 0000000..1822101 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XTgsUlXOzsnCRYZ-KAEb0Vav9r-_ihGT3ntweSFt1nFw7RmvnqaCAT6KO6Cl1xi7CVTCgsp85ENA9AA_YxMmzw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XX3x1eaKdyJ2Cm7u0CVmYCjGnDWR77jiXbIHJ0dzJTONZc75SHJEikNnPYQFOPOlmxaS_Kqn42L93KBRNOA1Qw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XX3x1eaKdyJ2Cm7u0CVmYCjGnDWR77jiXbIHJ0dzJTONZc75SHJEikNnPYQFOPOlmxaS_Kqn42L93KBRNOA1Qw== new file mode 100644 index 0000000..f358841 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XX3x1eaKdyJ2Cm7u0CVmYCjGnDWR77jiXbIHJ0dzJTONZc75SHJEikNnPYQFOPOlmxaS_Kqn42L93KBRNOA1Qw== @@ -0,0 +1 @@ +[{"type":1,"name":"12D91A44433C9FA3FF7035F2CF34B4"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XbxPIcpTSM8aZGtXlFWnW1TRvI7Lwh5DHkg4YnmOenF24lGbj8d5Yz6vuYtfrWY5pw-iosM6rb28oeJ5fGV_hA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XbxPIcpTSM8aZGtXlFWnW1TRvI7Lwh5DHkg4YnmOenF24lGbj8d5Yz6vuYtfrWY5pw-iosM6rb28oeJ5fGV_hA== new file mode 100644 index 0000000..16ca65c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XbxPIcpTSM8aZGtXlFWnW1TRvI7Lwh5DHkg4YnmOenF24lGbj8d5Yz6vuYtfrWY5pw-iosM6rb28oeJ5fGV_hA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XhuIdCDjz2a7xZki_Krxx1XBLdAj3R5ulpjqSOY2lnjkIkcGcibdtG1mXPL8oEm7ne2Y0CMSGqTFFPYrFl_b7Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XhuIdCDjz2a7xZki_Krxx1XBLdAj3R5ulpjqSOY2lnjkIkcGcibdtG1mXPL8oEm7ne2Y0CMSGqTFFPYrFl_b7Q== new file mode 100644 index 0000000..b5e2fa0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XhuIdCDjz2a7xZki_Krxx1XBLdAj3R5ulpjqSOY2lnjkIkcGcibdtG1mXPL8oEm7ne2Y0CMSGqTFFPYrFl_b7Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XiEL7WGOER1xXjir1z7ztoyivPeGMM27vf2_J6DxQbx6Oh9ZSlhI2I9sYSiylFQT7g7mELgcSw7XJ-eOr5wMrw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XiEL7WGOER1xXjir1z7ztoyivPeGMM27vf2_J6DxQbx6Oh9ZSlhI2I9sYSiylFQT7g7mELgcSw7XJ-eOr5wMrw== new file mode 100644 index 0000000..378fa9b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XiEL7WGOER1xXjir1z7ztoyivPeGMM27vf2_J6DxQbx6Oh9ZSlhI2I9sYSiylFQT7g7mELgcSw7XJ-eOr5wMrw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XiQm8cI5K9dYRG-1vGRqSjjysv_cMkhi-WzRTQabgVQgNVOieuaCnmEtIQHGdxXmaKVuJcXBy46ASCG-vi8Z4w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XiQm8cI5K9dYRG-1vGRqSjjysv_cMkhi-WzRTQabgVQgNVOieuaCnmEtIQHGdxXmaKVuJcXBy46ASCG-vi8Z4w== new file mode 100644 index 0000000..04a82cb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XiQm8cI5K9dYRG-1vGRqSjjysv_cMkhi-WzRTQabgVQgNVOieuaCnmEtIQHGdxXmaKVuJcXBy46ASCG-vi8Z4w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XnVUXJwSOUWe54oL2EzanEwkSnIUO-CDcsD3EmBM2GvplpQrc_wZgeB4gqwLGZ1TV0EJRLWSGc5bhNViGEwb2g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XnVUXJwSOUWe54oL2EzanEwkSnIUO-CDcsD3EmBM2GvplpQrc_wZgeB4gqwLGZ1TV0EJRLWSGc5bhNViGEwb2g== new file mode 100644 index 0000000..858196e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~XnVUXJwSOUWe54oL2EzanEwkSnIUO-CDcsD3EmBM2GvplpQrc_wZgeB4gqwLGZ1TV0EJRLWSGc5bhNViGEwb2g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Xzr0RRtFn7GX-ErOGZqlgOb2--KZX_pnfI8kvs9DTMa0TW7GtkBjg3nsdMhfaw3JlBK7B2r6Ut9dhjcMeG4sgA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Xzr0RRtFn7GX-ErOGZqlgOb2--KZX_pnfI8kvs9DTMa0TW7GtkBjg3nsdMhfaw3JlBK7B2r6Ut9dhjcMeG4sgA== new file mode 100644 index 0000000..30c3b3e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Xzr0RRtFn7GX-ErOGZqlgOb2--KZX_pnfI8kvs9DTMa0TW7GtkBjg3nsdMhfaw3JlBK7B2r6Ut9dhjcMeG4sgA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y-CSWXC9Vld99qyN_2TwlEswp1jrZitfd7emKcJvBSDHBRwdAcmKPJXze4TmRpcWSaz_4npUr5vvA4IjO0FpnA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y-CSWXC9Vld99qyN_2TwlEswp1jrZitfd7emKcJvBSDHBRwdAcmKPJXze4TmRpcWSaz_4npUr5vvA4IjO0FpnA== new file mode 100644 index 0000000..0253e37 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y-CSWXC9Vld99qyN_2TwlEswp1jrZitfd7emKcJvBSDHBRwdAcmKPJXze4TmRpcWSaz_4npUr5vvA4IjO0FpnA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y0rpuSjqF9jasu7viA5C_C5FsULHbhRwJJaDS6qnBznIzirsb4u2JrgreefSAAemSIBGLBIUKwrXiIUeNbN5ZA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y0rpuSjqF9jasu7viA5C_C5FsULHbhRwJJaDS6qnBznIzirsb4u2JrgreefSAAemSIBGLBIUKwrXiIUeNbN5ZA== new file mode 100644 index 0000000..51b56b5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y0rpuSjqF9jasu7viA5C_C5FsULHbhRwJJaDS6qnBznIzirsb4u2JrgreefSAAemSIBGLBIUKwrXiIUeNbN5ZA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y4wpe7zQqtUcUR0ev5YdgftzOpIKIGOzmDepGgkMcLbOyuJunJ5lXEk_8mvllYgw950JFVEouYoJ2cI4RXdfzw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y4wpe7zQqtUcUR0ev5YdgftzOpIKIGOzmDepGgkMcLbOyuJunJ5lXEk_8mvllYgw950JFVEouYoJ2cI4RXdfzw== new file mode 100644 index 0000000..6a37ea1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y4wpe7zQqtUcUR0ev5YdgftzOpIKIGOzmDepGgkMcLbOyuJunJ5lXEk_8mvllYgw950JFVEouYoJ2cI4RXdfzw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y6CuCl4QSRs3tU1KuJyNtEEg-k4fa76NtsV6Kqo1Kvz8RwWD0-Sibfw0sPMrT8_SOKp3gCC58p4ftqmt1kSwug== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y6CuCl4QSRs3tU1KuJyNtEEg-k4fa76NtsV6Kqo1Kvz8RwWD0-Sibfw0sPMrT8_SOKp3gCC58p4ftqmt1kSwug== new file mode 100644 index 0000000..e5ddafa Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y6CuCl4QSRs3tU1KuJyNtEEg-k4fa76NtsV6Kqo1Kvz8RwWD0-Sibfw0sPMrT8_SOKp3gCC58p4ftqmt1kSwug== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y8s0Y0RHg3DbiGeSZ6RQteVnzgAYO6_bqtiq_ZwxPbtBl9At8zOuly_sIcqwFh1KHtLXAI-B8-ES6BzjhxXeXQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y8s0Y0RHg3DbiGeSZ6RQteVnzgAYO6_bqtiq_ZwxPbtBl9At8zOuly_sIcqwFh1KHtLXAI-B8-ES6BzjhxXeXQ== new file mode 100644 index 0000000..62c3320 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Y8s0Y0RHg3DbiGeSZ6RQteVnzgAYO6_bqtiq_ZwxPbtBl9At8zOuly_sIcqwFh1KHtLXAI-B8-ES6BzjhxXeXQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YAtGqpeiEMH3lbTdWVQOOXQzCBxc7c8bgmC5eLjKTPTAT5Pbadzu8ertLITjTlanOpYESsYUPdrseNsA-Dghtw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YAtGqpeiEMH3lbTdWVQOOXQzCBxc7c8bgmC5eLjKTPTAT5Pbadzu8ertLITjTlanOpYESsYUPdrseNsA-Dghtw== new file mode 100644 index 0000000..8b8272c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YAtGqpeiEMH3lbTdWVQOOXQzCBxc7c8bgmC5eLjKTPTAT5Pbadzu8ertLITjTlanOpYESsYUPdrseNsA-Dghtw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YDkEUi8sdfG0w1CuFGufJq-QiGA7oZZZBVqXztiPxG0E4aAq1mdDd5DNYaKN_sRd1YKxS-DuT5JyWLZP605gRg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YDkEUi8sdfG0w1CuFGufJq-QiGA7oZZZBVqXztiPxG0E4aAq1mdDd5DNYaKN_sRd1YKxS-DuT5JyWLZP605gRg== new file mode 100644 index 0000000..e38c11a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YDkEUi8sdfG0w1CuFGufJq-QiGA7oZZZBVqXztiPxG0E4aAq1mdDd5DNYaKN_sRd1YKxS-DuT5JyWLZP605gRg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YNNrojMa-iooYzSmz-HYSaYQgbwK-a5Fwr8KH7I2E4wlBXWKlmnLnSrS1fUOyMdBf-eaiFQp6qwtbH0qId9Vjw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YNNrojMa-iooYzSmz-HYSaYQgbwK-a5Fwr8KH7I2E4wlBXWKlmnLnSrS1fUOyMdBf-eaiFQp6qwtbH0qId9Vjw== new file mode 100644 index 0000000..45c43b3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YNNrojMa-iooYzSmz-HYSaYQgbwK-a5Fwr8KH7I2E4wlBXWKlmnLnSrS1fUOyMdBf-eaiFQp6qwtbH0qId9Vjw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YNgl8PpZvaYWgfBEY0xSuCmI669NpuvZUl_cIrnssig909abGhdJnwCxy-sKNPNqbhXJG4e0TIv8IdaMdQh4KQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YNgl8PpZvaYWgfBEY0xSuCmI669NpuvZUl_cIrnssig909abGhdJnwCxy-sKNPNqbhXJG4e0TIv8IdaMdQh4KQ== new file mode 100644 index 0000000..9b4bc22 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YNgl8PpZvaYWgfBEY0xSuCmI669NpuvZUl_cIrnssig909abGhdJnwCxy-sKNPNqbhXJG4e0TIv8IdaMdQh4KQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YQB4ftFBlp3QWBg_TI2OStPHiSr2JINB3-zQTDbkw6QQPE6VDZOKx2thgbBxCf0kVr_RtTY7hPF6QY529IfKSQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YQB4ftFBlp3QWBg_TI2OStPHiSr2JINB3-zQTDbkw6QQPE6VDZOKx2thgbBxCf0kVr_RtTY7hPF6QY529IfKSQ== new file mode 100644 index 0000000..1b843c9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YQB4ftFBlp3QWBg_TI2OStPHiSr2JINB3-zQTDbkw6QQPE6VDZOKx2thgbBxCf0kVr_RtTY7hPF6QY529IfKSQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YQNLsTFYiBOvFENzKEh1sj3BOIq_iVdJHGhJj1H4Bo5fFuzOlizY3YlcC_MzQh9HMHxdlh0sISHpiMNnrT7icQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YQNLsTFYiBOvFENzKEh1sj3BOIq_iVdJHGhJj1H4Bo5fFuzOlizY3YlcC_MzQh9HMHxdlh0sISHpiMNnrT7icQ== new file mode 100644 index 0000000..0b12570 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YQNLsTFYiBOvFENzKEh1sj3BOIq_iVdJHGhJj1H4Bo5fFuzOlizY3YlcC_MzQh9HMHxdlh0sISHpiMNnrT7icQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YRYXqfdrctN6fNcgd-fDskwx2R9q4JBVSiUjnXudV_Jg13gYK9zlsAs149ja2mfEz9dswfKwdeb_Zgdc-i_F0A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YRYXqfdrctN6fNcgd-fDskwx2R9q4JBVSiUjnXudV_Jg13gYK9zlsAs149ja2mfEz9dswfKwdeb_Zgdc-i_F0A== new file mode 100644 index 0000000..f4ab8f0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YRYXqfdrctN6fNcgd-fDskwx2R9q4JBVSiUjnXudV_Jg13gYK9zlsAs149ja2mfEz9dswfKwdeb_Zgdc-i_F0A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YS2XggpiIm2usyK3oYqfiTtthcIlt5QXEu2-a59LdqIAqqTOLTG5qZ3nsiXpn3ZYgJqGVN28zRv8fNGVdMpsBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YS2XggpiIm2usyK3oYqfiTtthcIlt5QXEu2-a59LdqIAqqTOLTG5qZ3nsiXpn3ZYgJqGVN28zRv8fNGVdMpsBA== new file mode 100644 index 0000000..3121488 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YS2XggpiIm2usyK3oYqfiTtthcIlt5QXEu2-a59LdqIAqqTOLTG5qZ3nsiXpn3ZYgJqGVN28zRv8fNGVdMpsBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YWdEGvDA8dkC4Rr6QP1EZ980B3E6SmsTznDHauVHbXcOwxAXCxoNj17Z0oQXg1ExcUlwtDhlys432YfFpU-87A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YWdEGvDA8dkC4Rr6QP1EZ980B3E6SmsTznDHauVHbXcOwxAXCxoNj17Z0oQXg1ExcUlwtDhlys432YfFpU-87A== new file mode 100644 index 0000000..3e8c724 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YWdEGvDA8dkC4Rr6QP1EZ980B3E6SmsTznDHauVHbXcOwxAXCxoNj17Z0oQXg1ExcUlwtDhlys432YfFpU-87A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YXZECNjTwszPLIIbQa-hzVfuxmaTYCcBrvLw9Q2uCPB9OpdF73B02TCrgQ6Ax2RVHsYS6a1iNPoDWejBTV1kzw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YXZECNjTwszPLIIbQa-hzVfuxmaTYCcBrvLw9Q2uCPB9OpdF73B02TCrgQ6Ax2RVHsYS6a1iNPoDWejBTV1kzw== new file mode 100644 index 0000000..810c194 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YXZECNjTwszPLIIbQa-hzVfuxmaTYCcBrvLw9Q2uCPB9OpdF73B02TCrgQ6Ax2RVHsYS6a1iNPoDWejBTV1kzw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YXpjVsHziOpfGUkMlVZTP0pv2N50Hikp_TNOBHIEmgeqAjV9S7r92w0Hqe1zc-92WG-_1Cc8aV0vDrKkmdLMVQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YXpjVsHziOpfGUkMlVZTP0pv2N50Hikp_TNOBHIEmgeqAjV9S7r92w0Hqe1zc-92WG-_1Cc8aV0vDrKkmdLMVQ== new file mode 100644 index 0000000..ca1d45d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YXpjVsHziOpfGUkMlVZTP0pv2N50Hikp_TNOBHIEmgeqAjV9S7r92w0Hqe1zc-92WG-_1Cc8aV0vDrKkmdLMVQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ya1mz7abiy2GIJvICxYhqUVNQlm_Ify8QhX4eIosz9tlZLlbl2Fx8s2RtlwMHM9nzyBxI_rUbDBFamKRH7ERww== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ya1mz7abiy2GIJvICxYhqUVNQlm_Ify8QhX4eIosz9tlZLlbl2Fx8s2RtlwMHM9nzyBxI_rUbDBFamKRH7ERww== new file mode 100644 index 0000000..4d9e37e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Ya1mz7abiy2GIJvICxYhqUVNQlm_Ify8QhX4eIosz9tlZLlbl2Fx8s2RtlwMHM9nzyBxI_rUbDBFamKRH7ERww== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YauEVrbE5ZjliZ4xbREtSWZ1p52NBuo-AHtzdm7qcQWCshxeEaKtqeHy7rHdeNosMiRfJcitlTlC75ivw3pLKA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YauEVrbE5ZjliZ4xbREtSWZ1p52NBuo-AHtzdm7qcQWCshxeEaKtqeHy7rHdeNosMiRfJcitlTlC75ivw3pLKA== new file mode 100644 index 0000000..cddbe1f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YauEVrbE5ZjliZ4xbREtSWZ1p52NBuo-AHtzdm7qcQWCshxeEaKtqeHy7rHdeNosMiRfJcitlTlC75ivw3pLKA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YcpNii-z5blpLrPBXHtmtM-geqpiEpZCS-Y9PBB-7s785Yog801UZbNhiry8pEE8DmIXnYkJlkFHYcSY-oxw2g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YcpNii-z5blpLrPBXHtmtM-geqpiEpZCS-Y9PBB-7s785Yog801UZbNhiry8pEE8DmIXnYkJlkFHYcSY-oxw2g== new file mode 100644 index 0000000..4c0b564 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YcpNii-z5blpLrPBXHtmtM-geqpiEpZCS-Y9PBB-7s785Yog801UZbNhiry8pEE8DmIXnYkJlkFHYcSY-oxw2g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Yf82Eul4Th_RP8nZqDzt138FvYNFI1CTNTmvVkkjnTPJOyPl9xNfWohR5dXLtTJ5_V-YZ0DFdphAr2hlRE2EGA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Yf82Eul4Th_RP8nZqDzt138FvYNFI1CTNTmvVkkjnTPJOyPl9xNfWohR5dXLtTJ5_V-YZ0DFdphAr2hlRE2EGA== new file mode 100644 index 0000000..7945f51 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Yf82Eul4Th_RP8nZqDzt138FvYNFI1CTNTmvVkkjnTPJOyPl9xNfWohR5dXLtTJ5_V-YZ0DFdphAr2hlRE2EGA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YfmyMR22uPvaiSr4kfKPdhdg7vtW0vqnGHmTNwIEjqY1FpvbJUzKLwE4zU0-SZ80EZvt78UdYgA2O_OtiG1jPg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YfmyMR22uPvaiSr4kfKPdhdg7vtW0vqnGHmTNwIEjqY1FpvbJUzKLwE4zU0-SZ80EZvt78UdYgA2O_OtiG1jPg== new file mode 100644 index 0000000..81a6be3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YfmyMR22uPvaiSr4kfKPdhdg7vtW0vqnGHmTNwIEjqY1FpvbJUzKLwE4zU0-SZ80EZvt78UdYgA2O_OtiG1jPg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YlCMA4sD8wpJJnrp5WK55d-Nzmwx0Q6Ve5aLLJWnsk2lnM_5qVFJ1pZzoJmY1Tt7C75TD1wHZihRIuViX4B0bw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YlCMA4sD8wpJJnrp5WK55d-Nzmwx0Q6Ve5aLLJWnsk2lnM_5qVFJ1pZzoJmY1Tt7C75TD1wHZihRIuViX4B0bw== new file mode 100644 index 0000000..37264cb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YlCMA4sD8wpJJnrp5WK55d-Nzmwx0Q6Ve5aLLJWnsk2lnM_5qVFJ1pZzoJmY1Tt7C75TD1wHZihRIuViX4B0bw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Yts769Pu4xzT56RVjTFPAZydjUbaZ14xAfsvVKAJa6mgFX6xQ2SCN2CoWfA9RIIC7HuXx720vYfHd0Sxav1W9w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Yts769Pu4xzT56RVjTFPAZydjUbaZ14xAfsvVKAJa6mgFX6xQ2SCN2CoWfA9RIIC7HuXx720vYfHd0Sxav1W9w== new file mode 100644 index 0000000..490daab Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Yts769Pu4xzT56RVjTFPAZydjUbaZ14xAfsvVKAJa6mgFX6xQ2SCN2CoWfA9RIIC7HuXx720vYfHd0Sxav1W9w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YyQVtLAECb7jzHEtpxuv4oYkSKSEySln5eGQdnJuRB1mKOi96k0yxBgJIW15xbLSFiILVXUHcGBfQ0Th3Fv-Iw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YyQVtLAECb7jzHEtpxuv4oYkSKSEySln5eGQdnJuRB1mKOi96k0yxBgJIW15xbLSFiILVXUHcGBfQ0Th3Fv-Iw== new file mode 100644 index 0000000..aa617b1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~YyQVtLAECb7jzHEtpxuv4oYkSKSEySln5eGQdnJuRB1mKOi96k0yxBgJIW15xbLSFiILVXUHcGBfQ0Th3Fv-Iw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Z8kLvuYnK2a1dwu_glhZmesWUJeMZOwxAkHTycOydJA5IKePlxyTc5_9T6PnoHkNBzx-ngo5wIUIPopKL8e3WQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Z8kLvuYnK2a1dwu_glhZmesWUJeMZOwxAkHTycOydJA5IKePlxyTc5_9T6PnoHkNBzx-ngo5wIUIPopKL8e3WQ== new file mode 100644 index 0000000..be0836d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Z8kLvuYnK2a1dwu_glhZmesWUJeMZOwxAkHTycOydJA5IKePlxyTc5_9T6PnoHkNBzx-ngo5wIUIPopKL8e3WQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZCDLPYaBr-MY7tDmh5E7hHuYItB4f1s5y3_sNoqGq2KruUOWsRyvcBC2HFR4W0Kd9qizBM99F602p2T7u4O2eA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZCDLPYaBr-MY7tDmh5E7hHuYItB4f1s5y3_sNoqGq2KruUOWsRyvcBC2HFR4W0Kd9qizBM99F602p2T7u4O2eA== new file mode 100644 index 0000000..77696fa Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZCDLPYaBr-MY7tDmh5E7hHuYItB4f1s5y3_sNoqGq2KruUOWsRyvcBC2HFR4W0Kd9qizBM99F602p2T7u4O2eA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZEe2QRr5VOIwwN1yGC6guY0vYb5AjkbjjkpN2LCfNtruj0gYM4JnwJCnZhRw7UC6oouTJpPrpgMF_1VcIx80IA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZEe2QRr5VOIwwN1yGC6guY0vYb5AjkbjjkpN2LCfNtruj0gYM4JnwJCnZhRw7UC6oouTJpPrpgMF_1VcIx80IA== new file mode 100644 index 0000000..c61f901 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZEe2QRr5VOIwwN1yGC6guY0vYb5AjkbjjkpN2LCfNtruj0gYM4JnwJCnZhRw7UC6oouTJpPrpgMF_1VcIx80IA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZEsQMTwzTVnF9we6EwdbnvvqaPok3nU1ORADfoXFIlirdN9r1j6NOsdeMwoqc6Pji8NfttfqeMhVdgjWjjFZuA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZEsQMTwzTVnF9we6EwdbnvvqaPok3nU1ORADfoXFIlirdN9r1j6NOsdeMwoqc6Pji8NfttfqeMhVdgjWjjFZuA== new file mode 100644 index 0000000..d48dc74 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZEsQMTwzTVnF9we6EwdbnvvqaPok3nU1ORADfoXFIlirdN9r1j6NOsdeMwoqc6Pji8NfttfqeMhVdgjWjjFZuA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZLkn-Jf39lngZ4AVZfCbfvNxkzZeeugQSMZzfxknU5ns-7SPzA8yQU1fRzq0YCpp1vXw7t5i8l-CC068Y4krXw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZLkn-Jf39lngZ4AVZfCbfvNxkzZeeugQSMZzfxknU5ns-7SPzA8yQU1fRzq0YCpp1vXw7t5i8l-CC068Y4krXw== new file mode 100644 index 0000000..4c2bcd2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZLkn-Jf39lngZ4AVZfCbfvNxkzZeeugQSMZzfxknU5ns-7SPzA8yQU1fRzq0YCpp1vXw7t5i8l-CC068Y4krXw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZVAjwyUHNYEvhDU3lOxI69jUOecK-YfHQtekyOwlMrcbO9izz6sb9WfduaLnIRzbr0dDXH_y9iRdhK3COf362w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZVAjwyUHNYEvhDU3lOxI69jUOecK-YfHQtekyOwlMrcbO9izz6sb9WfduaLnIRzbr0dDXH_y9iRdhK3COf362w== new file mode 100644 index 0000000..7470c41 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZVAjwyUHNYEvhDU3lOxI69jUOecK-YfHQtekyOwlMrcbO9izz6sb9WfduaLnIRzbr0dDXH_y9iRdhK3COf362w== @@ -0,0 +1 @@ +[{"type":1,"name":"A4077E0F6A3AD7B0B4BAF7303D1AB7"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZW9LoWS7O24zcSZtdCPSTlZv21X7itAVTdfpMtmNaJJZDX0siXwYR2OqvcTS-KkZm2V2dzem7Y1dzoQQIxeaQA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZW9LoWS7O24zcSZtdCPSTlZv21X7itAVTdfpMtmNaJJZDX0siXwYR2OqvcTS-KkZm2V2dzem7Y1dzoQQIxeaQA== new file mode 100644 index 0000000..6c9a34e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZW9LoWS7O24zcSZtdCPSTlZv21X7itAVTdfpMtmNaJJZDX0siXwYR2OqvcTS-KkZm2V2dzem7Y1dzoQQIxeaQA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZWKgOZfGrqMVe4qP1TISsYtX-k87Yz9XdF-E7ejPYCWUHVdueB2zQfW0aBg3XypOQnHatD11dwEOn5aUBBdvAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZWKgOZfGrqMVe4qP1TISsYtX-k87Yz9XdF-E7ejPYCWUHVdueB2zQfW0aBg3XypOQnHatD11dwEOn5aUBBdvAg== new file mode 100644 index 0000000..4fa5df9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ZWKgOZfGrqMVe4qP1TISsYtX-k87Yz9XdF-E7ejPYCWUHVdueB2zQfW0aBg3XypOQnHatD11dwEOn5aUBBdvAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Zws7ooq1CnUEzWxmDoT07CS0EPVAK1PeJLBCMSQK6nX9Or-Q5-9Ad3vsUaRTDLOeCiHP3E_CwaajDEoI4puNNA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Zws7ooq1CnUEzWxmDoT07CS0EPVAK1PeJLBCMSQK6nX9Or-Q5-9Ad3vsUaRTDLOeCiHP3E_CwaajDEoI4puNNA== new file mode 100644 index 0000000..bf543be Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~Zws7ooq1CnUEzWxmDoT07CS0EPVAK1PeJLBCMSQK6nX9Or-Q5-9Ad3vsUaRTDLOeCiHP3E_CwaajDEoI4puNNA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_-e1ptr_q5OflFN0CI0udxw79qwH8YV3hi608kn0RuPKNQI51pAZ7lD1OB1HIwVZnMSyu6pNilqz-pxxVybGUg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_-e1ptr_q5OflFN0CI0udxw79qwH8YV3hi608kn0RuPKNQI51pAZ7lD1OB1HIwVZnMSyu6pNilqz-pxxVybGUg== new file mode 100644 index 0000000..4d21c39 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_-e1ptr_q5OflFN0CI0udxw79qwH8YV3hi608kn0RuPKNQI51pAZ7lD1OB1HIwVZnMSyu6pNilqz-pxxVybGUg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_1UZ9p3M8MbppZ4E2rZtXbpuT-9YBccaOASdfn6eVqsaysotjTjjk6ayP47ubzUQBOnfo2drEazeAxQN3jtV9Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_1UZ9p3M8MbppZ4E2rZtXbpuT-9YBccaOASdfn6eVqsaysotjTjjk6ayP47ubzUQBOnfo2drEazeAxQN3jtV9Q== new file mode 100644 index 0000000..1d02d6d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_1UZ9p3M8MbppZ4E2rZtXbpuT-9YBccaOASdfn6eVqsaysotjTjjk6ayP47ubzUQBOnfo2drEazeAxQN3jtV9Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_25cYXwCxvvB5WeAH9-HtCkATg2mK0-a9SvY3FP_6qBRgTVP-ZFqoGQlSFoHDpluD-ofU9EFxm6k-utXXEWGLA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_25cYXwCxvvB5WeAH9-HtCkATg2mK0-a9SvY3FP_6qBRgTVP-ZFqoGQlSFoHDpluD-ofU9EFxm6k-utXXEWGLA== new file mode 100644 index 0000000..e878b57 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_25cYXwCxvvB5WeAH9-HtCkATg2mK0-a9SvY3FP_6qBRgTVP-ZFqoGQlSFoHDpluD-ofU9EFxm6k-utXXEWGLA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_8Lcb9drIhGkE1oHQkM_Y_P4lI-ZecmlQvIZRPTcEShpl8UJQ36dWwxPO_vnbQB5RGNomRYVR_MHdBpt6JfQLA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_8Lcb9drIhGkE1oHQkM_Y_P4lI-ZecmlQvIZRPTcEShpl8UJQ36dWwxPO_vnbQB5RGNomRYVR_MHdBpt6JfQLA== new file mode 100644 index 0000000..555b2d0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_8Lcb9drIhGkE1oHQkM_Y_P4lI-ZecmlQvIZRPTcEShpl8UJQ36dWwxPO_vnbQB5RGNomRYVR_MHdBpt6JfQLA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_JtuYUZoyW0X_qtVifvzI2L8_GkGpzy4Os1vn1bbBUBJx5Az_U_AZ-VAD57uQWp6sh3RrXynDyLU3h_9yYyThQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_JtuYUZoyW0X_qtVifvzI2L8_GkGpzy4Os1vn1bbBUBJx5Az_U_AZ-VAD57uQWp6sh3RrXynDyLU3h_9yYyThQ== new file mode 100644 index 0000000..76f8136 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_JtuYUZoyW0X_qtVifvzI2L8_GkGpzy4Os1vn1bbBUBJx5Az_U_AZ-VAD57uQWp6sh3RrXynDyLU3h_9yYyThQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_XaWixF6IC835hyPuvlxmuoZlKPlIFINAZRee-P2CyssyN9Tpf1COcsTflsvXF9BY67NoUU7NxTuOovI3r-Ovg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_XaWixF6IC835hyPuvlxmuoZlKPlIFINAZRee-P2CyssyN9Tpf1COcsTflsvXF9BY67NoUU7NxTuOovI3r-Ovg== new file mode 100644 index 0000000..2acf03d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_XaWixF6IC835hyPuvlxmuoZlKPlIFINAZRee-P2CyssyN9Tpf1COcsTflsvXF9BY67NoUU7NxTuOovI3r-Ovg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_ZxW4QBLaloWD5gqRSSia0kbgquSQ_sZTcJrh6QtSMQ6jgfIrGt7Elvo_O3bKvwPYiGtn1-kVuelZxOPlDh8dA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_ZxW4QBLaloWD5gqRSSia0kbgquSQ_sZTcJrh6QtSMQ6jgfIrGt7Elvo_O3bKvwPYiGtn1-kVuelZxOPlDh8dA== new file mode 100644 index 0000000..ce6f0d7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_ZxW4QBLaloWD5gqRSSia0kbgquSQ_sZTcJrh6QtSMQ6jgfIrGt7Elvo_O3bKvwPYiGtn1-kVuelZxOPlDh8dA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_cu-XUm2YMa_L5eV3X1q1XCAlDdPXQpend5y6rixnKgHUrpDqvJM7NmgGZm66d4RnrNvcHRK9U3nQQNYFxK1xQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_cu-XUm2YMa_L5eV3X1q1XCAlDdPXQpend5y6rixnKgHUrpDqvJM7NmgGZm66d4RnrNvcHRK9U3nQQNYFxK1xQ== new file mode 100644 index 0000000..c931102 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_cu-XUm2YMa_L5eV3X1q1XCAlDdPXQpend5y6rixnKgHUrpDqvJM7NmgGZm66d4RnrNvcHRK9U3nQQNYFxK1xQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_fmkrtNHiI8ChhAxhV3gncgKBuo8_rcDBl4bafHtubau34EdClQfqksznyjZFxy48rSgjdr5eLjestfkYowTtQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_fmkrtNHiI8ChhAxhV3gncgKBuo8_rcDBl4bafHtubau34EdClQfqksznyjZFxy48rSgjdr5eLjestfkYowTtQ== new file mode 100644 index 0000000..22f3a0c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_fmkrtNHiI8ChhAxhV3gncgKBuo8_rcDBl4bafHtubau34EdClQfqksznyjZFxy48rSgjdr5eLjestfkYowTtQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_hAt68eHIoqqG5d-HpJj84YxKq7Ow4jqVAjiBmFpRsisrk7vMbhELATBXSfEZbTqwMeU_n9cSbldWPynGLs6EA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_hAt68eHIoqqG5d-HpJj84YxKq7Ow4jqVAjiBmFpRsisrk7vMbhELATBXSfEZbTqwMeU_n9cSbldWPynGLs6EA== new file mode 100644 index 0000000..2a22119 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_hAt68eHIoqqG5d-HpJj84YxKq7Ow4jqVAjiBmFpRsisrk7vMbhELATBXSfEZbTqwMeU_n9cSbldWPynGLs6EA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_k9IGOFRK9ascq_WWuAHveWjP3hY6O0EzgZJ6kALGjp8M_I8qHOvVZkocR4WG7G6LUnbtNEo9WJMimoKY0vO7w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_k9IGOFRK9ascq_WWuAHveWjP3hY6O0EzgZJ6kALGjp8M_I8qHOvVZkocR4WG7G6LUnbtNEo9WJMimoKY0vO7w== new file mode 100644 index 0000000..d0a43d2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_k9IGOFRK9ascq_WWuAHveWjP3hY6O0EzgZJ6kALGjp8M_I8qHOvVZkocR4WG7G6LUnbtNEo9WJMimoKY0vO7w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_qb0BrGS4OaGyV9CV85KtR547TVyCGXYYbDXT3GwplINfCxpDS34hoyIlTgItxSvmRgyx8vsegWqXn1kElaT9w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_qb0BrGS4OaGyV9CV85KtR547TVyCGXYYbDXT3GwplINfCxpDS34hoyIlTgItxSvmRgyx8vsegWqXn1kElaT9w== new file mode 100644 index 0000000..657c852 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_qb0BrGS4OaGyV9CV85KtR547TVyCGXYYbDXT3GwplINfCxpDS34hoyIlTgItxSvmRgyx8vsegWqXn1kElaT9w== @@ -0,0 +1 @@ +[{"type":1,"name":"649AB879B1342EB5CF401336CC5409"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_rOgVFdgDABhtQvGtaD_ToNEU-iGXCTtnlmS68v_xvbLZWSatfBQ7cTjJEpQll6A4Eqe3KxiQr9zihswPacbzw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_rOgVFdgDABhtQvGtaD_ToNEU-iGXCTtnlmS68v_xvbLZWSatfBQ7cTjJEpQll6A4Eqe3KxiQr9zihswPacbzw== new file mode 100644 index 0000000..1e8e632 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_rOgVFdgDABhtQvGtaD_ToNEU-iGXCTtnlmS68v_xvbLZWSatfBQ7cTjJEpQll6A4Eqe3KxiQr9zihswPacbzw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_tfetjaRy4QQYcT3LXcpdDdIeAHuYzoLj-dxrvlNteGIoY7ynw-_lqIbBgvtVx7PaihBm6ctTdjTARsT1kVnew== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_tfetjaRy4QQYcT3LXcpdDdIeAHuYzoLj-dxrvlNteGIoY7ynw-_lqIbBgvtVx7PaihBm6ctTdjTARsT1kVnew== new file mode 100644 index 0000000..746c975 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_tfetjaRy4QQYcT3LXcpdDdIeAHuYzoLj-dxrvlNteGIoY7ynw-_lqIbBgvtVx7PaihBm6ctTdjTARsT1kVnew== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_vm8ja-qvr3T02tBGLSGXwBRuEGZ_qY9jyP2FgakD0jD1NwCYRtM4h_p-6TrjLbVPKh1bQ1PQ0tbOQdyK7H8_g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_vm8ja-qvr3T02tBGLSGXwBRuEGZ_qY9jyP2FgakD0jD1NwCYRtM4h_p-6TrjLbVPKh1bQ1PQ0tbOQdyK7H8_g== new file mode 100644 index 0000000..ea5c3fc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_vm8ja-qvr3T02tBGLSGXwBRuEGZ_qY9jyP2FgakD0jD1NwCYRtM4h_p-6TrjLbVPKh1bQ1PQ0tbOQdyK7H8_g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_xzCgSwZyS6A8T5nBnJycOn56pCgel4bo0DI24SS4sQsHFG8J7E5hwy8t3ovBGs8Yp0C1Z_YFF2HEdgc88shmA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_xzCgSwZyS6A8T5nBnJycOn56pCgel4bo0DI24SS4sQsHFG8J7E5hwy8t3ovBGs8Yp0C1Z_YFF2HEdgc88shmA== new file mode 100644 index 0000000..b79ba9d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_xzCgSwZyS6A8T5nBnJycOn56pCgel4bo0DI24SS4sQsHFG8J7E5hwy8t3ovBGs8Yp0C1Z_YFF2HEdgc88shmA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_y8QRT3YljGwjsY1TcJEfS_EncTygylBHHXw6z1xC0WdcILdHIH19UbHU43mJGBAMZ-iHwd9Y1SL-q3CEmFbJQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_y8QRT3YljGwjsY1TcJEfS_EncTygylBHHXw6z1xC0WdcILdHIH19UbHU43mJGBAMZ-iHwd9Y1SL-q3CEmFbJQ== new file mode 100644 index 0000000..5e87a8d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~_y8QRT3YljGwjsY1TcJEfS_EncTygylBHHXw6z1xC0WdcILdHIH19UbHU43mJGBAMZ-iHwd9Y1SL-q3CEmFbJQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~a5cXEtq3SHRUVWcHxRc_9aPAax5EySNT582M_cF2yw-nLO3SzaTmqk03XQGHN5VuxYmBSCJmcmHhYPj1ZolNaw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~a5cXEtq3SHRUVWcHxRc_9aPAax5EySNT582M_cF2yw-nLO3SzaTmqk03XQGHN5VuxYmBSCJmcmHhYPj1ZolNaw== new file mode 100644 index 0000000..1dd12d2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~a5cXEtq3SHRUVWcHxRc_9aPAax5EySNT582M_cF2yw-nLO3SzaTmqk03XQGHN5VuxYmBSCJmcmHhYPj1ZolNaw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aJ1tec5fMu7VglZ1Xz1ibjEPIiioa4VhrIkWholbZvI-WnTae5hNlTKTrG1Ry8n5b3KAiJbv4c5sR8iHEXqubA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aJ1tec5fMu7VglZ1Xz1ibjEPIiioa4VhrIkWholbZvI-WnTae5hNlTKTrG1Ry8n5b3KAiJbv4c5sR8iHEXqubA== new file mode 100644 index 0000000..baca319 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aJ1tec5fMu7VglZ1Xz1ibjEPIiioa4VhrIkWholbZvI-WnTae5hNlTKTrG1Ry8n5b3KAiJbv4c5sR8iHEXqubA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aRRYvFeOEY99evmzWDDDxG9ANOdzt8f-qZ0t-EIGIAL5AycygnAMVZruBfcCE609lgdiQWByLV9Kg96pDPdY4Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aRRYvFeOEY99evmzWDDDxG9ANOdzt8f-qZ0t-EIGIAL5AycygnAMVZruBfcCE609lgdiQWByLV9Kg96pDPdY4Q== new file mode 100644 index 0000000..05ceb92 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aRRYvFeOEY99evmzWDDDxG9ANOdzt8f-qZ0t-EIGIAL5AycygnAMVZruBfcCE609lgdiQWByLV9Kg96pDPdY4Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aSQi07tN5D5VOmp-y-R40lGTs6RItQm2uFf9UYA-fSSLSJYJsqYu8VpszEgw9mwlwQ5joN1kxc8Dj1bXfdoZIg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aSQi07tN5D5VOmp-y-R40lGTs6RItQm2uFf9UYA-fSSLSJYJsqYu8VpszEgw9mwlwQ5joN1kxc8Dj1bXfdoZIg== new file mode 100644 index 0000000..8178ed2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aSQi07tN5D5VOmp-y-R40lGTs6RItQm2uFf9UYA-fSSLSJYJsqYu8VpszEgw9mwlwQ5joN1kxc8Dj1bXfdoZIg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aYdN1z2sDCoX5tT_2-Yl2TyCRI6cKd_qnCWeW93XewLEHVqXCrHsk023CM8-UKHxXOMYmhU0t2sq8Gl-FYuleg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aYdN1z2sDCoX5tT_2-Yl2TyCRI6cKd_qnCWeW93XewLEHVqXCrHsk023CM8-UKHxXOMYmhU0t2sq8Gl-FYuleg== new file mode 100644 index 0000000..39fdf4a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aYdN1z2sDCoX5tT_2-Yl2TyCRI6cKd_qnCWeW93XewLEHVqXCrHsk023CM8-UKHxXOMYmhU0t2sq8Gl-FYuleg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~abfopuBad23nl5saexBGfnvMLnPqHLh2kxxCkO3yJF8kByFTLovQf5po8GZpkabsMMxtzDuirBbKLpOpFiIkkg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~abfopuBad23nl5saexBGfnvMLnPqHLh2kxxCkO3yJF8kByFTLovQf5po8GZpkabsMMxtzDuirBbKLpOpFiIkkg== new file mode 100644 index 0000000..0e8061e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~abfopuBad23nl5saexBGfnvMLnPqHLh2kxxCkO3yJF8kByFTLovQf5po8GZpkabsMMxtzDuirBbKLpOpFiIkkg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ae4NqVDLKrwp3Pn4EmskH7oOjNmkb3BrjMsOSGTh0bGA7_wSWz0LYgFLf-Qc2AZ2jkKsF-cGwVTQZU-XNHH5qg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ae4NqVDLKrwp3Pn4EmskH7oOjNmkb3BrjMsOSGTh0bGA7_wSWz0LYgFLf-Qc2AZ2jkKsF-cGwVTQZU-XNHH5qg== new file mode 100644 index 0000000..3bd03e2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ae4NqVDLKrwp3Pn4EmskH7oOjNmkb3BrjMsOSGTh0bGA7_wSWz0LYgFLf-Qc2AZ2jkKsF-cGwVTQZU-XNHH5qg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aeZ1Rfejv94FRHtsp87t5_X3d_5tUt0veEdAFxLuG87y5ut0k5eaffEFP7eOR0EbSTgo59gZtVe-fFH1EuM-Fw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aeZ1Rfejv94FRHtsp87t5_X3d_5tUt0veEdAFxLuG87y5ut0k5eaffEFP7eOR0EbSTgo59gZtVe-fFH1EuM-Fw== new file mode 100644 index 0000000..10acb00 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~aeZ1Rfejv94FRHtsp87t5_X3d_5tUt0veEdAFxLuG87y5ut0k5eaffEFP7eOR0EbSTgo59gZtVe-fFH1EuM-Fw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~as_LuRXgBnHqYzZnV2WEbvT4yU6UZzNe23EWiK_fBLjRa5K3A1_XWSP5CLOgtqL1xmPG5uZSf1qwIba6tJCcFw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~as_LuRXgBnHqYzZnV2WEbvT4yU6UZzNe23EWiK_fBLjRa5K3A1_XWSP5CLOgtqL1xmPG5uZSf1qwIba6tJCcFw== new file mode 100644 index 0000000..02366a6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~as_LuRXgBnHqYzZnV2WEbvT4yU6UZzNe23EWiK_fBLjRa5K3A1_XWSP5CLOgtqL1xmPG5uZSf1qwIba6tJCcFw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~awAJcCRFz47DOCCe0sxkxpuhOmKhqF6oxBE8je7RZPwbhyCdX9p8ngYPARlZGZH9jZ_5DwqrAUgCy6x-0IGzkg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~awAJcCRFz47DOCCe0sxkxpuhOmKhqF6oxBE8je7RZPwbhyCdX9p8ngYPARlZGZH9jZ_5DwqrAUgCy6x-0IGzkg== new file mode 100644 index 0000000..b105b22 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~awAJcCRFz47DOCCe0sxkxpuhOmKhqF6oxBE8je7RZPwbhyCdX9p8ngYPARlZGZH9jZ_5DwqrAUgCy6x-0IGzkg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~axd8fUUJlYNpEhwLGnHrkqWncttJ2jbQxM2--_Rjj0q9-F51nENVF2djzVg1ERxUCZLSuZyjrAzeNIkZIj8O_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~axd8fUUJlYNpEhwLGnHrkqWncttJ2jbQxM2--_Rjj0q9-F51nENVF2djzVg1ERxUCZLSuZyjrAzeNIkZIj8O_w== new file mode 100644 index 0000000..520880c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~axd8fUUJlYNpEhwLGnHrkqWncttJ2jbQxM2--_Rjj0q9-F51nENVF2djzVg1ERxUCZLSuZyjrAzeNIkZIj8O_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b0LcEYtZYUc40N2IR1M0ox9idENBsiqZMTtD77NHe0UMQD_Hu3jJhNWMYXwoGxu1R2S6HmNFfYSsVZqAUFGCsA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b0LcEYtZYUc40N2IR1M0ox9idENBsiqZMTtD77NHe0UMQD_Hu3jJhNWMYXwoGxu1R2S6HmNFfYSsVZqAUFGCsA== new file mode 100644 index 0000000..bfcabba --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b0LcEYtZYUc40N2IR1M0ox9idENBsiqZMTtD77NHe0UMQD_Hu3jJhNWMYXwoGxu1R2S6HmNFfYSsVZqAUFGCsA== @@ -0,0 +1 @@ +[{"type":1,"name":"827EB813773E2D9A6F2F378FB8A3EF"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b5aPqeKp9DkXwHNyEvedQgsK-9yJ9RtPKJ12TtMDqw48_wCiV_56WYqAXXyC-HQrhiPxFrnpNRpdMjEddFay0g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b5aPqeKp9DkXwHNyEvedQgsK-9yJ9RtPKJ12TtMDqw48_wCiV_56WYqAXXyC-HQrhiPxFrnpNRpdMjEddFay0g== new file mode 100644 index 0000000..bd8fd80 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b5aPqeKp9DkXwHNyEvedQgsK-9yJ9RtPKJ12TtMDqw48_wCiV_56WYqAXXyC-HQrhiPxFrnpNRpdMjEddFay0g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b8S4a4zw8byuPNS2nKf9EfIh4WtvNiNMc-75ZZ1MPVuw611U4Ny4vVVhdjSRaXJFLGlh8iTLUnLYvUVpNhNceg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b8S4a4zw8byuPNS2nKf9EfIh4WtvNiNMc-75ZZ1MPVuw611U4Ny4vVVhdjSRaXJFLGlh8iTLUnLYvUVpNhNceg== new file mode 100644 index 0000000..ff8b484 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b8S4a4zw8byuPNS2nKf9EfIh4WtvNiNMc-75ZZ1MPVuw611U4Ny4vVVhdjSRaXJFLGlh8iTLUnLYvUVpNhNceg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b9PfddKbQH8HwlJFunFw2KnnysAMxiDb_AFWLX0-YYQtiqycESsEHJa1J_Wk7JB2vEjH5fvNwfggEnuzT7q4LA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b9PfddKbQH8HwlJFunFw2KnnysAMxiDb_AFWLX0-YYQtiqycESsEHJa1J_Wk7JB2vEjH5fvNwfggEnuzT7q4LA== new file mode 100644 index 0000000..a4b2153 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b9PfddKbQH8HwlJFunFw2KnnysAMxiDb_AFWLX0-YYQtiqycESsEHJa1J_Wk7JB2vEjH5fvNwfggEnuzT7q4LA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bEhNjU5wuNt-GaZYk9LfTXtdAuKEPP_3y0GJ7S2wAs_imkoyVtpYKu1HqXR-T1pBs91w3QaBRvTv2zeIpdzr5Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bEhNjU5wuNt-GaZYk9LfTXtdAuKEPP_3y0GJ7S2wAs_imkoyVtpYKu1HqXR-T1pBs91w3QaBRvTv2zeIpdzr5Q== new file mode 100644 index 0000000..e837c0e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bEhNjU5wuNt-GaZYk9LfTXtdAuKEPP_3y0GJ7S2wAs_imkoyVtpYKu1HqXR-T1pBs91w3QaBRvTv2zeIpdzr5Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bNrotZZE02XBHmy8W5BUKbOqUAGiBmbh1UM0At3PoHSVirVY1SmXRo30GCV5x4suPWjOQ2qjYu0coPa3W3iQJw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bNrotZZE02XBHmy8W5BUKbOqUAGiBmbh1UM0At3PoHSVirVY1SmXRo30GCV5x4suPWjOQ2qjYu0coPa3W3iQJw== new file mode 100644 index 0000000..f8588d8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bNrotZZE02XBHmy8W5BUKbOqUAGiBmbh1UM0At3PoHSVirVY1SmXRo30GCV5x4suPWjOQ2qjYu0coPa3W3iQJw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bOBdq79irozUS57A8f5_vicXNo5drHDB9WDxBAvr6Qir4l2xDOEme_bcenHi3qMN69m2iBqwb1bOSLC7tRvwyQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bOBdq79irozUS57A8f5_vicXNo5drHDB9WDxBAvr6Qir4l2xDOEme_bcenHi3qMN69m2iBqwb1bOSLC7tRvwyQ== new file mode 100644 index 0000000..77bfd46 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bOBdq79irozUS57A8f5_vicXNo5drHDB9WDxBAvr6Qir4l2xDOEme_bcenHi3qMN69m2iBqwb1bOSLC7tRvwyQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bPEoY2Iautn5bJB--aXH8pbopAL13RtYphEEVIw8Pz1VArlC50jtR0ZPV4PC7ljHxlhYTrpcfpOoogYziaAbuA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bPEoY2Iautn5bJB--aXH8pbopAL13RtYphEEVIw8Pz1VArlC50jtR0ZPV4PC7ljHxlhYTrpcfpOoogYziaAbuA== new file mode 100644 index 0000000..c53097a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bPEoY2Iautn5bJB--aXH8pbopAL13RtYphEEVIw8Pz1VArlC50jtR0ZPV4PC7ljHxlhYTrpcfpOoogYziaAbuA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bPRb2RXKrimKQy8HHif0OIxkz8bdH7frmLZ8PfOk8SWU2xMjdm_CFAxL-mRaQiVAQsp8xEj3TE6w3kSS8IbkHg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bPRb2RXKrimKQy8HHif0OIxkz8bdH7frmLZ8PfOk8SWU2xMjdm_CFAxL-mRaQiVAQsp8xEj3TE6w3kSS8IbkHg== new file mode 100644 index 0000000..0633f8d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bPRb2RXKrimKQy8HHif0OIxkz8bdH7frmLZ8PfOk8SWU2xMjdm_CFAxL-mRaQiVAQsp8xEj3TE6w3kSS8IbkHg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bUif_kvA8NkKbILknZKcIPqwJjHWMQqNnBwJE4bnykLIbrtGE7kpdOi22mYFJ-vodxPwzRljNC-26Qzo_5zkEw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bUif_kvA8NkKbILknZKcIPqwJjHWMQqNnBwJE4bnykLIbrtGE7kpdOi22mYFJ-vodxPwzRljNC-26Qzo_5zkEw== new file mode 100644 index 0000000..cad6872 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bUif_kvA8NkKbILknZKcIPqwJjHWMQqNnBwJE4bnykLIbrtGE7kpdOi22mYFJ-vodxPwzRljNC-26Qzo_5zkEw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bUo3eXl7keOW1QM9r1nYmwVWCJrCB0dIveeKN_SUDkklgIW9Ox9ISrhLIwbvbbOpPmCqW1g16SYF12_T1TLhDQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bUo3eXl7keOW1QM9r1nYmwVWCJrCB0dIveeKN_SUDkklgIW9Ox9ISrhLIwbvbbOpPmCqW1g16SYF12_T1TLhDQ== new file mode 100644 index 0000000..e4dc0ea Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bUo3eXl7keOW1QM9r1nYmwVWCJrCB0dIveeKN_SUDkklgIW9Ox9ISrhLIwbvbbOpPmCqW1g16SYF12_T1TLhDQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bWYP9OMNihflpPO29ukq3QLpjy4_bAbKcS15wZth9NCNk_YyuqTr2b3UOrFbaZq6JxtK756IAyU_MOMZFFWLWA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bWYP9OMNihflpPO29ukq3QLpjy4_bAbKcS15wZth9NCNk_YyuqTr2b3UOrFbaZq6JxtK756IAyU_MOMZFFWLWA== new file mode 100644 index 0000000..dd80135 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bWYP9OMNihflpPO29ukq3QLpjy4_bAbKcS15wZth9NCNk_YyuqTr2b3UOrFbaZq6JxtK756IAyU_MOMZFFWLWA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bXBrrgPzRueD3VHkX1BqdEXUyQ-xeUD6fTWUvyRA-0dRRHo453-OZUDPiPuDmZKXHdQMVJEL6g92eA2xT2-A1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bXBrrgPzRueD3VHkX1BqdEXUyQ-xeUD6fTWUvyRA-0dRRHo453-OZUDPiPuDmZKXHdQMVJEL6g92eA2xT2-A1g== new file mode 100644 index 0000000..fcd994a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bXBrrgPzRueD3VHkX1BqdEXUyQ-xeUD6fTWUvyRA-0dRRHo453-OZUDPiPuDmZKXHdQMVJEL6g92eA2xT2-A1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bXn_dyQ43AK4VlA4VMufWdbG2A5vkVuzg1dR1Q1tAGA04wt10jRi22gAjHB_r-zGyFZyv01PAjm0AA96qlUdlw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bXn_dyQ43AK4VlA4VMufWdbG2A5vkVuzg1dR1Q1tAGA04wt10jRi22gAjHB_r-zGyFZyv01PAjm0AA96qlUdlw== new file mode 100644 index 0000000..ab16718 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bXn_dyQ43AK4VlA4VMufWdbG2A5vkVuzg1dR1Q1tAGA04wt10jRi22gAjHB_r-zGyFZyv01PAjm0AA96qlUdlw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bXtv8MST_MvZNF-MVRhOHdiM45SQXfIB_ZdstfvMnpm82mEqhQX5kw1Wx6pcJV7U_WUBFsDUN1oTmvoSg_8z_g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bXtv8MST_MvZNF-MVRhOHdiM45SQXfIB_ZdstfvMnpm82mEqhQX5kw1Wx6pcJV7U_WUBFsDUN1oTmvoSg_8z_g== new file mode 100644 index 0000000..1c81e6e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bXtv8MST_MvZNF-MVRhOHdiM45SQXfIB_ZdstfvMnpm82mEqhQX5kw1Wx6pcJV7U_WUBFsDUN1oTmvoSg_8z_g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b_FXgLZ1VVKkXy7_VOVm-n8AwsriTTcKMYkYzN2qvjV2v8t62eD7V3qZdr6LoPpjOEhcxy74tJkH93L5pOHXKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b_FXgLZ1VVKkXy7_VOVm-n8AwsriTTcKMYkYzN2qvjV2v8t62eD7V3qZdr6LoPpjOEhcxy74tJkH93L5pOHXKw== new file mode 100644 index 0000000..da29bb1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~b_FXgLZ1VVKkXy7_VOVm-n8AwsriTTcKMYkYzN2qvjV2v8t62eD7V3qZdr6LoPpjOEhcxy74tJkH93L5pOHXKw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bgtmAN03yc7aDbmI0POQPRP7eW3sE1giIUDz4-vKZqneC_qeUhG_arCLaWRYPpHObcbdzE_6GaiavjIW-cLzPA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bgtmAN03yc7aDbmI0POQPRP7eW3sE1giIUDz4-vKZqneC_qeUhG_arCLaWRYPpHObcbdzE_6GaiavjIW-cLzPA== new file mode 100644 index 0000000..4415cdf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bgtmAN03yc7aDbmI0POQPRP7eW3sE1giIUDz4-vKZqneC_qeUhG_arCLaWRYPpHObcbdzE_6GaiavjIW-cLzPA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bhQ7RTydV75KkdsddvD7bpjoZi3lTR-JBmQE7kbN-XZaqYIaqGHzlWfGTnbAdsftjVl4Edtx9mvmIK8qGTXtTQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bhQ7RTydV75KkdsddvD7bpjoZi3lTR-JBmQE7kbN-XZaqYIaqGHzlWfGTnbAdsftjVl4Edtx9mvmIK8qGTXtTQ== new file mode 100644 index 0000000..365ce6f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bhQ7RTydV75KkdsddvD7bpjoZi3lTR-JBmQE7kbN-XZaqYIaqGHzlWfGTnbAdsftjVl4Edtx9mvmIK8qGTXtTQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bju5u7boSw65j0KLu0iNB8gzQq9g0x6Lzyx3idRL9KZLK037WOE8dh4l5HQRPHYr0_1KGtfHfN1f5D2r9S_A8w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bju5u7boSw65j0KLu0iNB8gzQq9g0x6Lzyx3idRL9KZLK037WOE8dh4l5HQRPHYr0_1KGtfHfN1f5D2r9S_A8w== new file mode 100644 index 0000000..d78ccaa Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bju5u7boSw65j0KLu0iNB8gzQq9g0x6Lzyx3idRL9KZLK037WOE8dh4l5HQRPHYr0_1KGtfHfN1f5D2r9S_A8w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bmcudpMVksSlGHZ2s_qae8CAISNgfVk8hDF6xubFCrwcV1F77RJJbTZaZjZBVfg4_YWXvkV1tNT14nH2hAQdjA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bmcudpMVksSlGHZ2s_qae8CAISNgfVk8hDF6xubFCrwcV1F77RJJbTZaZjZBVfg4_YWXvkV1tNT14nH2hAQdjA== new file mode 100644 index 0000000..0a97ddd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bmcudpMVksSlGHZ2s_qae8CAISNgfVk8hDF6xubFCrwcV1F77RJJbTZaZjZBVfg4_YWXvkV1tNT14nH2hAQdjA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bq8067rZhdF-BtQQ-qyEhEej5xmDPTkIPnKFNpMtar_TwWriCqhrOrfuMJ030yPDWqLDDrIbK_l5O639OS2A3A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bq8067rZhdF-BtQQ-qyEhEej5xmDPTkIPnKFNpMtar_TwWriCqhrOrfuMJ030yPDWqLDDrIbK_l5O639OS2A3A== new file mode 100644 index 0000000..df3f0a2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bq8067rZhdF-BtQQ-qyEhEej5xmDPTkIPnKFNpMtar_TwWriCqhrOrfuMJ030yPDWqLDDrIbK_l5O639OS2A3A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~brGD0I7JOGVgcQo0ckeCWVhQBP67yo-XeyzohY6eMIWmtx7_sW8FVgPr1OkQ6UQaLVfd5PBqEv_1_A7ji6y5Lw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~brGD0I7JOGVgcQo0ckeCWVhQBP67yo-XeyzohY6eMIWmtx7_sW8FVgPr1OkQ6UQaLVfd5PBqEv_1_A7ji6y5Lw== new file mode 100644 index 0000000..83c7f23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~brGD0I7JOGVgcQo0ckeCWVhQBP67yo-XeyzohY6eMIWmtx7_sW8FVgPr1OkQ6UQaLVfd5PBqEv_1_A7ji6y5Lw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~buGrR3a4NTxe_j8dWt3UWVIw_O-iwo1Fr6bzyYgLpWSX6QAq_67qMWSvi3MkvFjijWzvuxrA01EHvhvQRTI3yw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~buGrR3a4NTxe_j8dWt3UWVIw_O-iwo1Fr6bzyYgLpWSX6QAq_67qMWSvi3MkvFjijWzvuxrA01EHvhvQRTI3yw== new file mode 100644 index 0000000..e4d890e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~buGrR3a4NTxe_j8dWt3UWVIw_O-iwo1Fr6bzyYgLpWSX6QAq_67qMWSvi3MkvFjijWzvuxrA01EHvhvQRTI3yw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bwyZ1N-qZFwz_8Np-o9mkJRboxCMSTFoddRIBm38TlqIYz-HKoY3yXS_ouII-gvTYkYpmyPxJVQbe9BwoA2rtw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bwyZ1N-qZFwz_8Np-o9mkJRboxCMSTFoddRIBm38TlqIYz-HKoY3yXS_ouII-gvTYkYpmyPxJVQbe9BwoA2rtw== new file mode 100644 index 0000000..d67371b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bwyZ1N-qZFwz_8Np-o9mkJRboxCMSTFoddRIBm38TlqIYz-HKoY3yXS_ouII-gvTYkYpmyPxJVQbe9BwoA2rtw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bxo1vT52AQkv3wvQS_poqtMOMW1Vx68U5IhRbt416r8jpnQlB8qrQi3ig2uVt_t4ERsnHmf_762MQqgrF9G_5A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bxo1vT52AQkv3wvQS_poqtMOMW1Vx68U5IhRbt416r8jpnQlB8qrQi3ig2uVt_t4ERsnHmf_762MQqgrF9G_5A== new file mode 100644 index 0000000..9a6576c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bxo1vT52AQkv3wvQS_poqtMOMW1Vx68U5IhRbt416r8jpnQlB8qrQi3ig2uVt_t4ERsnHmf_762MQqgrF9G_5A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~byR-ZBKKFI8FeLmrvg5-oOWCDDn-eBhZ3s_NiWpcg2xltWlgtfvg4WnUTE-Y5f5Y3jancqISDUbIeXJqdfz5zQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~byR-ZBKKFI8FeLmrvg5-oOWCDDn-eBhZ3s_NiWpcg2xltWlgtfvg4WnUTE-Y5f5Y3jancqISDUbIeXJqdfz5zQ== new file mode 100644 index 0000000..7d77beb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~byR-ZBKKFI8FeLmrvg5-oOWCDDn-eBhZ3s_NiWpcg2xltWlgtfvg4WnUTE-Y5f5Y3jancqISDUbIeXJqdfz5zQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bykL5wvPOAa2iSkMBRzSfpdmagYDFPewJ16su-rKzkf3ip4oSHnByKClVXIAD-VVhRrGRAUiFtRvcoT2jUM_qg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bykL5wvPOAa2iSkMBRzSfpdmagYDFPewJ16su-rKzkf3ip4oSHnByKClVXIAD-VVhRrGRAUiFtRvcoT2jUM_qg== new file mode 100644 index 0000000..d475e06 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bykL5wvPOAa2iSkMBRzSfpdmagYDFPewJ16su-rKzkf3ip4oSHnByKClVXIAD-VVhRrGRAUiFtRvcoT2jUM_qg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bzslxVPBJSnmQtMTX5_v_1tWXZ9n8fQ6B8jeGz-fCgEW8jheBhoXBK76epUCo09j4u9p_ejt7C8UJg0CWwptpQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bzslxVPBJSnmQtMTX5_v_1tWXZ9n8fQ6B8jeGz-fCgEW8jheBhoXBK76epUCo09j4u9p_ejt7C8UJg0CWwptpQ== new file mode 100644 index 0000000..23af859 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~bzslxVPBJSnmQtMTX5_v_1tWXZ9n8fQ6B8jeGz-fCgEW8jheBhoXBK76epUCo09j4u9p_ejt7C8UJg0CWwptpQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~c36r3-ym03M1NaRKVfv4NRKb-r6XHxPZE_Ato-KoXHlwzQfZy9R-XxH55gjojIH7b5naR6aBQ-PhLUOxWUnXpA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~c36r3-ym03M1NaRKVfv4NRKb-r6XHxPZE_Ato-KoXHlwzQfZy9R-XxH55gjojIH7b5naR6aBQ-PhLUOxWUnXpA== new file mode 100644 index 0000000..4822d54 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~c36r3-ym03M1NaRKVfv4NRKb-r6XHxPZE_Ato-KoXHlwzQfZy9R-XxH55gjojIH7b5naR6aBQ-PhLUOxWUnXpA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~c491RURjthf8ddiFTe5mRt4G1RN4daSI9EIjcQFbBTV8HLQOStCTK3DNI5DPjoY4p0AIMZuBk3ZFyDSZdmzgQw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~c491RURjthf8ddiFTe5mRt4G1RN4daSI9EIjcQFbBTV8HLQOStCTK3DNI5DPjoY4p0AIMZuBk3ZFyDSZdmzgQw== new file mode 100644 index 0000000..d7bd2fb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~c491RURjthf8ddiFTe5mRt4G1RN4daSI9EIjcQFbBTV8HLQOStCTK3DNI5DPjoY4p0AIMZuBk3ZFyDSZdmzgQw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cA4faJWiUaY9PcotGr5IpIPGuJ6eFoLvf-zlxght6HlIPSqH6XPCjal2Y477q-ymK0-1aWW4v2b_eJOQwsCm-w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cA4faJWiUaY9PcotGr5IpIPGuJ6eFoLvf-zlxght6HlIPSqH6XPCjal2Y477q-ymK0-1aWW4v2b_eJOQwsCm-w== new file mode 100644 index 0000000..e9953dc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cA4faJWiUaY9PcotGr5IpIPGuJ6eFoLvf-zlxght6HlIPSqH6XPCjal2Y477q-ymK0-1aWW4v2b_eJOQwsCm-w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cAikv6nuzdq0RUgjPnHmiq01osRkv5AbnAAfvNtuE54YTk0n7a2cXQKKuc6YB3nPKGC_2Dn4NwaRYYZqk1_DAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cAikv6nuzdq0RUgjPnHmiq01osRkv5AbnAAfvNtuE54YTk0n7a2cXQKKuc6YB3nPKGC_2Dn4NwaRYYZqk1_DAg== new file mode 100644 index 0000000..1c1e930 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cAikv6nuzdq0RUgjPnHmiq01osRkv5AbnAAfvNtuE54YTk0n7a2cXQKKuc6YB3nPKGC_2Dn4NwaRYYZqk1_DAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cFo5LSFRpcHo5DwMBKpDumosOWPRfhNP6MG-eLN4eFAN54ykYhaKrQK6QpSklBuNp7xdgB9m5AA2qqsRqTXPXA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cFo5LSFRpcHo5DwMBKpDumosOWPRfhNP6MG-eLN4eFAN54ykYhaKrQK6QpSklBuNp7xdgB9m5AA2qqsRqTXPXA== new file mode 100644 index 0000000..a6175a1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cFo5LSFRpcHo5DwMBKpDumosOWPRfhNP6MG-eLN4eFAN54ykYhaKrQK6QpSklBuNp7xdgB9m5AA2qqsRqTXPXA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cG1_-bl_5SKxpTCf36rM8kcDFovxCqtOXydhpb6EVLzeyRO-2X1dp8bnU8sbh855xnhvLlCHRl0wL_S3EOZ0Tw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cG1_-bl_5SKxpTCf36rM8kcDFovxCqtOXydhpb6EVLzeyRO-2X1dp8bnU8sbh855xnhvLlCHRl0wL_S3EOZ0Tw== new file mode 100644 index 0000000..c67efec --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cG1_-bl_5SKxpTCf36rM8kcDFovxCqtOXydhpb6EVLzeyRO-2X1dp8bnU8sbh855xnhvLlCHRl0wL_S3EOZ0Tw== @@ -0,0 +1 @@ +[{"type":1,"name":"1EC95882A73C13851E25AE4EBA57F0"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cIXVgRvtigkINSmHbmZxi-yv1uEGO-31vHm-GKAhYJII2BV80IbdP0Bd3zNVzUxp_zupdwpfkW5_8cRW0wep8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cIXVgRvtigkINSmHbmZxi-yv1uEGO-31vHm-GKAhYJII2BV80IbdP0Bd3zNVzUxp_zupdwpfkW5_8cRW0wep8Q== new file mode 100644 index 0000000..462a071 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cIXVgRvtigkINSmHbmZxi-yv1uEGO-31vHm-GKAhYJII2BV80IbdP0Bd3zNVzUxp_zupdwpfkW5_8cRW0wep8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cKQ5QrQDcxrvpKAm8jeZ2dq5eruFlOxDR9bJ8FgGy88ewEZH2N83zKp0h_y2N5vY5vaofjSu5EdYQhDn8ljvAw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cKQ5QrQDcxrvpKAm8jeZ2dq5eruFlOxDR9bJ8FgGy88ewEZH2N83zKp0h_y2N5vY5vaofjSu5EdYQhDn8ljvAw== new file mode 100644 index 0000000..4379a55 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cKQ5QrQDcxrvpKAm8jeZ2dq5eruFlOxDR9bJ8FgGy88ewEZH2N83zKp0h_y2N5vY5vaofjSu5EdYQhDn8ljvAw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cKZGZwGodA1GoNOJFWr6dK9A1BwC7OPOg-jN3PXKZdKJS0XrsANJSs2hV2SWS7Fu75D96tfw3Ca1__luc1EkiQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cKZGZwGodA1GoNOJFWr6dK9A1BwC7OPOg-jN3PXKZdKJS0XrsANJSs2hV2SWS7Fu75D96tfw3Ca1__luc1EkiQ== new file mode 100644 index 0000000..a9469a3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cKZGZwGodA1GoNOJFWr6dK9A1BwC7OPOg-jN3PXKZdKJS0XrsANJSs2hV2SWS7Fu75D96tfw3Ca1__luc1EkiQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cPQbE2N2Nsgmg3exJA1yBiNzNfNxAqCzNIDMWsnKC8yw8ebpYELfMKxZ7BRu5ExkEaKslM7gYZ9Mk-48IXSfOg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cPQbE2N2Nsgmg3exJA1yBiNzNfNxAqCzNIDMWsnKC8yw8ebpYELfMKxZ7BRu5ExkEaKslM7gYZ9Mk-48IXSfOg== new file mode 100644 index 0000000..03ac2bc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cPQbE2N2Nsgmg3exJA1yBiNzNfNxAqCzNIDMWsnKC8yw8ebpYELfMKxZ7BRu5ExkEaKslM7gYZ9Mk-48IXSfOg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cQ4tXjK9jiaQS-xr5lLvm-6SmfxmzT4NjOk3t6arjGtj1Ikr0fQgiB3i5jwxmFX0xjKt6yzjWSOdsHF4ML5_Iw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cQ4tXjK9jiaQS-xr5lLvm-6SmfxmzT4NjOk3t6arjGtj1Ikr0fQgiB3i5jwxmFX0xjKt6yzjWSOdsHF4ML5_Iw== new file mode 100644 index 0000000..1fbd173 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cQ4tXjK9jiaQS-xr5lLvm-6SmfxmzT4NjOk3t6arjGtj1Ikr0fQgiB3i5jwxmFX0xjKt6yzjWSOdsHF4ML5_Iw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cV1RBSb-VINwauu9Hq3lvVnS1yb7t9UN9V5ByEbrPGfvxfT-oUA2uIUwKFIVc-2P6pZf47L9R4I7QOjGBp17tw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cV1RBSb-VINwauu9Hq3lvVnS1yb7t9UN9V5ByEbrPGfvxfT-oUA2uIUwKFIVc-2P6pZf47L9R4I7QOjGBp17tw== new file mode 100644 index 0000000..661e02b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cV1RBSb-VINwauu9Hq3lvVnS1yb7t9UN9V5ByEbrPGfvxfT-oUA2uIUwKFIVc-2P6pZf47L9R4I7QOjGBp17tw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cX7so4P9BWr65cfNLq_sDX39FcNU6EozVf1h8pKEMRgccOPkRjbuhWnCIqLnjm3PrR3oqrcUcwK3v1GejUMF3A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cX7so4P9BWr65cfNLq_sDX39FcNU6EozVf1h8pKEMRgccOPkRjbuhWnCIqLnjm3PrR3oqrcUcwK3v1GejUMF3A== new file mode 100644 index 0000000..25878a8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cX7so4P9BWr65cfNLq_sDX39FcNU6EozVf1h8pKEMRgccOPkRjbuhWnCIqLnjm3PrR3oqrcUcwK3v1GejUMF3A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~c_t05ChJ78ea8nIhmR-Dr28_Vbl0CbnOnS68NzDqwikq4q1PLmbrUqJqsuOvGaWYc46ddDv-DczkJwFVf8k8mw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~c_t05ChJ78ea8nIhmR-Dr28_Vbl0CbnOnS68NzDqwikq4q1PLmbrUqJqsuOvGaWYc46ddDv-DczkJwFVf8k8mw== new file mode 100644 index 0000000..fd1c98a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~c_t05ChJ78ea8nIhmR-Dr28_Vbl0CbnOnS68NzDqwikq4q1PLmbrUqJqsuOvGaWYc46ddDv-DczkJwFVf8k8mw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cfDxtHmuLuN8PgWChfD00EzIL0lpB9va9sLP_p-x8ZR0S6ghZYhguntdLD8h9jhl7P8l1kKBIIlRWSfZ5YcqDQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cfDxtHmuLuN8PgWChfD00EzIL0lpB9va9sLP_p-x8ZR0S6ghZYhguntdLD8h9jhl7P8l1kKBIIlRWSfZ5YcqDQ== new file mode 100644 index 0000000..b318f1a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cfDxtHmuLuN8PgWChfD00EzIL0lpB9va9sLP_p-x8ZR0S6ghZYhguntdLD8h9jhl7P8l1kKBIIlRWSfZ5YcqDQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cgzuzGIH4MhY4f1DzTazDIEfaGnE8OgsTdoKY2OkgMaZCxsEmcSV6yaryYEPQ46N7opjKdwEasS15UFHgRrvYg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cgzuzGIH4MhY4f1DzTazDIEfaGnE8OgsTdoKY2OkgMaZCxsEmcSV6yaryYEPQ46N7opjKdwEasS15UFHgRrvYg== new file mode 100644 index 0000000..fc5fcb6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cgzuzGIH4MhY4f1DzTazDIEfaGnE8OgsTdoKY2OkgMaZCxsEmcSV6yaryYEPQ46N7opjKdwEasS15UFHgRrvYg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~chwU_82joa-4a_9EeRZUyZir_u4vuPGwSlk3PQ7-C0YbILR9oUi0H8aL2h-GoIPlEjTHcDJ69ObLsrynJkdpcQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~chwU_82joa-4a_9EeRZUyZir_u4vuPGwSlk3PQ7-C0YbILR9oUi0H8aL2h-GoIPlEjTHcDJ69ObLsrynJkdpcQ== new file mode 100644 index 0000000..f94ca98 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~chwU_82joa-4a_9EeRZUyZir_u4vuPGwSlk3PQ7-C0YbILR9oUi0H8aL2h-GoIPlEjTHcDJ69ObLsrynJkdpcQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~clh9suuEnkc8FRJvkbfmhLF54Cfi9hPgNcMS1Lxx2JjykVqEne4qR2qGBs90uA0a1aRo585tH8aWfcTzDMpiMA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~clh9suuEnkc8FRJvkbfmhLF54Cfi9hPgNcMS1Lxx2JjykVqEne4qR2qGBs90uA0a1aRo585tH8aWfcTzDMpiMA== new file mode 100644 index 0000000..2ce2520 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~clh9suuEnkc8FRJvkbfmhLF54Cfi9hPgNcMS1Lxx2JjykVqEne4qR2qGBs90uA0a1aRo585tH8aWfcTzDMpiMA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cnEvht1zCj-u-MoMUmbdo9qjnkxmAWv8uHCj2lFTXAQX-ZHtue9aeEqxgqzesCN3Jt-z3f1omdctivcWxxSzkg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cnEvht1zCj-u-MoMUmbdo9qjnkxmAWv8uHCj2lFTXAQX-ZHtue9aeEqxgqzesCN3Jt-z3f1omdctivcWxxSzkg== new file mode 100644 index 0000000..77c5b26 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cnEvht1zCj-u-MoMUmbdo9qjnkxmAWv8uHCj2lFTXAQX-ZHtue9aeEqxgqzesCN3Jt-z3f1omdctivcWxxSzkg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cpAq0hWhntbmaXhfVxfr6fEJiRfen6wi7uAk18wpWVGweEUvNfkbyTxUo9AJFH4cOmjxyLScxdFtCMOhaULGwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cpAq0hWhntbmaXhfVxfr6fEJiRfen6wi7uAk18wpWVGweEUvNfkbyTxUo9AJFH4cOmjxyLScxdFtCMOhaULGwg== new file mode 100644 index 0000000..aa3ecbb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cpAq0hWhntbmaXhfVxfr6fEJiRfen6wi7uAk18wpWVGweEUvNfkbyTxUo9AJFH4cOmjxyLScxdFtCMOhaULGwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cq93QPJSgK4yfDocNdadXFg9uvzB9HG0hEJrvoBOTe0aI0xboOeIzBEPgpSkJTcafwl_7Mak_w-1fESG1uvEfA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cq93QPJSgK4yfDocNdadXFg9uvzB9HG0hEJrvoBOTe0aI0xboOeIzBEPgpSkJTcafwl_7Mak_w-1fESG1uvEfA== new file mode 100644 index 0000000..a0b4da6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cq93QPJSgK4yfDocNdadXFg9uvzB9HG0hEJrvoBOTe0aI0xboOeIzBEPgpSkJTcafwl_7Mak_w-1fESG1uvEfA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cyVlT2aiX0PJ8XdrC_KN1KIh6xFNJpbjAaKAQDNyeitQPEgkulmLJ4QJeSnQpY9yNLJYzf3u16Br8B5xZS-sUA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cyVlT2aiX0PJ8XdrC_KN1KIh6xFNJpbjAaKAQDNyeitQPEgkulmLJ4QJeSnQpY9yNLJYzf3u16Br8B5xZS-sUA== new file mode 100644 index 0000000..389d6ea Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cyVlT2aiX0PJ8XdrC_KN1KIh6xFNJpbjAaKAQDNyeitQPEgkulmLJ4QJeSnQpY9yNLJYzf3u16Br8B5xZS-sUA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cyb3jL52RrCYztohqZuJ5pSgGkxTMWJ-f8pfuEqH0qMK3Ih1n1vGD7-r-QfKFNeVl3-rFF8AQXsX7xmOyUMYUQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cyb3jL52RrCYztohqZuJ5pSgGkxTMWJ-f8pfuEqH0qMK3Ih1n1vGD7-r-QfKFNeVl3-rFF8AQXsX7xmOyUMYUQ== new file mode 100644 index 0000000..031b0ae Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~cyb3jL52RrCYztohqZuJ5pSgGkxTMWJ-f8pfuEqH0qMK3Ih1n1vGD7-r-QfKFNeVl3-rFF8AQXsX7xmOyUMYUQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~d5gmjSfah8OK46Blpf3t6dGovmEadXjC5VVsvxIpcB8riguN0Pv0gCfErtGT6WV2zmHcSjsVyVfD1XmK-8Q9qA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~d5gmjSfah8OK46Blpf3t6dGovmEadXjC5VVsvxIpcB8riguN0Pv0gCfErtGT6WV2zmHcSjsVyVfD1XmK-8Q9qA== new file mode 100644 index 0000000..bd63326 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~d5gmjSfah8OK46Blpf3t6dGovmEadXjC5VVsvxIpcB8riguN0Pv0gCfErtGT6WV2zmHcSjsVyVfD1XmK-8Q9qA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dCvbQUoqStTJTD8hA33IDfwlVbNNHUIfSygt1LMC0NppFDRtW6XLXeBoMTaOxzfKPfvwnIVar32rTEoQ8YH07w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dCvbQUoqStTJTD8hA33IDfwlVbNNHUIfSygt1LMC0NppFDRtW6XLXeBoMTaOxzfKPfvwnIVar32rTEoQ8YH07w== new file mode 100644 index 0000000..4caf3a7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dCvbQUoqStTJTD8hA33IDfwlVbNNHUIfSygt1LMC0NppFDRtW6XLXeBoMTaOxzfKPfvwnIVar32rTEoQ8YH07w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dIu1O-MaZWI-8AIGcCfpxAUL9oRxSRk9VQnDZOSRN-ssrNdB1fi5bNUb-eqL1zfW2QK4_roBBC7cOGSXqUVQtg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dIu1O-MaZWI-8AIGcCfpxAUL9oRxSRk9VQnDZOSRN-ssrNdB1fi5bNUb-eqL1zfW2QK4_roBBC7cOGSXqUVQtg== new file mode 100644 index 0000000..b7166b7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dIu1O-MaZWI-8AIGcCfpxAUL9oRxSRk9VQnDZOSRN-ssrNdB1fi5bNUb-eqL1zfW2QK4_roBBC7cOGSXqUVQtg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dRD9AiMchMTnxA70tZ8ssxX_auY4znLkqwSDH1Cecow8I9N-vZdGVREkMrh7E6IAltCrcV66TsE0xR3k5hEXsw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dRD9AiMchMTnxA70tZ8ssxX_auY4znLkqwSDH1Cecow8I9N-vZdGVREkMrh7E6IAltCrcV66TsE0xR3k5hEXsw== new file mode 100644 index 0000000..f9a181c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dRD9AiMchMTnxA70tZ8ssxX_auY4znLkqwSDH1Cecow8I9N-vZdGVREkMrh7E6IAltCrcV66TsE0xR3k5hEXsw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dhEO6bDQgph9QB4wbKtsGN3NdRwqHygXRCznznd2p_tG85cEts1lmfv7vbofc_MyE01Ta31JYs1CD_wL8pvoXQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dhEO6bDQgph9QB4wbKtsGN3NdRwqHygXRCznznd2p_tG85cEts1lmfv7vbofc_MyE01Ta31JYs1CD_wL8pvoXQ== new file mode 100644 index 0000000..75c3c15 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dhEO6bDQgph9QB4wbKtsGN3NdRwqHygXRCznznd2p_tG85cEts1lmfv7vbofc_MyE01Ta31JYs1CD_wL8pvoXQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dmhdb064f16X_a5dUkBAwreyi6UU12k7enezexn8KoDuxbFi0itvr8K1Izn0IO_g3wm-Mom4zIHS0J3bnqNZUw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dmhdb064f16X_a5dUkBAwreyi6UU12k7enezexn8KoDuxbFi0itvr8K1Izn0IO_g3wm-Mom4zIHS0J3bnqNZUw== new file mode 100644 index 0000000..9d9dc26 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dmhdb064f16X_a5dUkBAwreyi6UU12k7enezexn8KoDuxbFi0itvr8K1Izn0IO_g3wm-Mom4zIHS0J3bnqNZUw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dprdW_uelC8o7wI7OAnksq5pgR7pxGzMpXaVZeWruOXkq633573jW2LaTYyZ_e2VIUhID8NsooY5O96-i65elA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dprdW_uelC8o7wI7OAnksq5pgR7pxGzMpXaVZeWruOXkq633573jW2LaTYyZ_e2VIUhID8NsooY5O96-i65elA== new file mode 100644 index 0000000..9a09764 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dprdW_uelC8o7wI7OAnksq5pgR7pxGzMpXaVZeWruOXkq633573jW2LaTYyZ_e2VIUhID8NsooY5O96-i65elA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dqXurddCcZZgF4PQBS1hI0GToCoQi3AI41RIbUz5O7XbsEmZ368u_FzrN5_vx2nFNsJfxA0cw73yTv2cgnZkpg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dqXurddCcZZgF4PQBS1hI0GToCoQi3AI41RIbUz5O7XbsEmZ368u_FzrN5_vx2nFNsJfxA0cw73yTv2cgnZkpg== new file mode 100644 index 0000000..064de31 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dqXurddCcZZgF4PQBS1hI0GToCoQi3AI41RIbUz5O7XbsEmZ368u_FzrN5_vx2nFNsJfxA0cw73yTv2cgnZkpg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~drz32zATZ0loPHvrVSkc9FVWXQEVJAbcfmdIKTbNCZPP_QvmO50hHmgRppaQr0gJFn5bx5ypDTgjTMZ_Y3pxEQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~drz32zATZ0loPHvrVSkc9FVWXQEVJAbcfmdIKTbNCZPP_QvmO50hHmgRppaQr0gJFn5bx5ypDTgjTMZ_Y3pxEQ== new file mode 100644 index 0000000..c27bed4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~drz32zATZ0loPHvrVSkc9FVWXQEVJAbcfmdIKTbNCZPP_QvmO50hHmgRppaQr0gJFn5bx5ypDTgjTMZ_Y3pxEQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dyUgAF3xZp17SObHaN3kGoTnLM5mDqdiZb5X8LawhrgrSuE8S9i5hVpoIgZr4IX_KjTzFvXPEqQpVuni76fJyQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dyUgAF3xZp17SObHaN3kGoTnLM5mDqdiZb5X8LawhrgrSuE8S9i5hVpoIgZr4IX_KjTzFvXPEqQpVuni76fJyQ== new file mode 100644 index 0000000..f43702c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~dyUgAF3xZp17SObHaN3kGoTnLM5mDqdiZb5X8LawhrgrSuE8S9i5hVpoIgZr4IX_KjTzFvXPEqQpVuni76fJyQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~e-QHNQZLBIPwtn-Ldz44M5C16r4ZM3fOlmApWVqv6dcAC7jWaObPakAJbZVLN1fgh3IERi2Hee2PAVkDxTPGbA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~e-QHNQZLBIPwtn-Ldz44M5C16r4ZM3fOlmApWVqv6dcAC7jWaObPakAJbZVLN1fgh3IERi2Hee2PAVkDxTPGbA== new file mode 100644 index 0000000..2e123d4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~e-QHNQZLBIPwtn-Ldz44M5C16r4ZM3fOlmApWVqv6dcAC7jWaObPakAJbZVLN1fgh3IERi2Hee2PAVkDxTPGbA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~e34WyiIdAlzHp3SF4VqRDF3p2a6JZIu4ge94_Nsh1mn5IHrSw7ww_4kjyTqfaB0WnDiPp0WiMc6ajouOJyil3A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~e34WyiIdAlzHp3SF4VqRDF3p2a6JZIu4ge94_Nsh1mn5IHrSw7ww_4kjyTqfaB0WnDiPp0WiMc6ajouOJyil3A== new file mode 100644 index 0000000..efc8638 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~e34WyiIdAlzHp3SF4VqRDF3p2a6JZIu4ge94_Nsh1mn5IHrSw7ww_4kjyTqfaB0WnDiPp0WiMc6ajouOJyil3A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~e5C1qGQx5qWTLQXKo0OotlousVXpMxJ5mlI0b8OZuB7LhtX6KxVh27OjvUWd9Cs34uYJaYjNVLBG_jMBoo2jYQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~e5C1qGQx5qWTLQXKo0OotlousVXpMxJ5mlI0b8OZuB7LhtX6KxVh27OjvUWd9Cs34uYJaYjNVLBG_jMBoo2jYQ== new file mode 100644 index 0000000..72d7328 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~e5C1qGQx5qWTLQXKo0OotlousVXpMxJ5mlI0b8OZuB7LhtX6KxVh27OjvUWd9Cs34uYJaYjNVLBG_jMBoo2jYQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eA_71VF51annvjmRsvOpw0owtWIWZSXbRJAvZ_BTWlCv9eQP0-zlVKc6Y8Rb-SIn6p3WfBVRytNVSTjyfTwEIw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eA_71VF51annvjmRsvOpw0owtWIWZSXbRJAvZ_BTWlCv9eQP0-zlVKc6Y8Rb-SIn6p3WfBVRytNVSTjyfTwEIw== new file mode 100644 index 0000000..c317b37 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eA_71VF51annvjmRsvOpw0owtWIWZSXbRJAvZ_BTWlCv9eQP0-zlVKc6Y8Rb-SIn6p3WfBVRytNVSTjyfTwEIw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eFdOdAYW-St3KkomDRig65BHHl55xp8Q9rgfhtLPm2CAH_sww_srOuq2cDdS18MJLpFHj5wKa60z8TocY-YVTg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eFdOdAYW-St3KkomDRig65BHHl55xp8Q9rgfhtLPm2CAH_sww_srOuq2cDdS18MJLpFHj5wKa60z8TocY-YVTg== new file mode 100644 index 0000000..1d469e2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eFdOdAYW-St3KkomDRig65BHHl55xp8Q9rgfhtLPm2CAH_sww_srOuq2cDdS18MJLpFHj5wKa60z8TocY-YVTg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eGoC90IBWQPGxv2FJVLScpEvR0DhWEdhiobiF_cfVBnSXhAxr-5YUxOJZESTTrBLkDpoWxRIt1XVb3Aa_pvizg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eGoC90IBWQPGxv2FJVLScpEvR0DhWEdhiobiF_cfVBnSXhAxr-5YUxOJZESTTrBLkDpoWxRIt1XVb3Aa_pvizg== new file mode 100644 index 0000000..e69de29 diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eKSBf7ARukwu0iZjM2aVMKfkEDAPjf1v-s_vM_ZPKH63t15CGA9vWMq5J1k_aPq0B2kPr5LHiCU2DCX6QYVonA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eKSBf7ARukwu0iZjM2aVMKfkEDAPjf1v-s_vM_ZPKH63t15CGA9vWMq5J1k_aPq0B2kPr5LHiCU2DCX6QYVonA== new file mode 100644 index 0000000..587f21b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eKSBf7ARukwu0iZjM2aVMKfkEDAPjf1v-s_vM_ZPKH63t15CGA9vWMq5J1k_aPq0B2kPr5LHiCU2DCX6QYVonA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eLa0qN8p7LBQg3O6wjtJW0UeOmDoac1C-KV79AhgPJzaL6tTgcFsMGkRtfugfJoGSwthni_udlOvZupcUOPl-w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eLa0qN8p7LBQg3O6wjtJW0UeOmDoac1C-KV79AhgPJzaL6tTgcFsMGkRtfugfJoGSwthni_udlOvZupcUOPl-w== new file mode 100644 index 0000000..979f3af Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eLa0qN8p7LBQg3O6wjtJW0UeOmDoac1C-KV79AhgPJzaL6tTgcFsMGkRtfugfJoGSwthni_udlOvZupcUOPl-w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eMp7ckzBYo-3vCbAM8tFGY5OXnD8_UNsXOs6iJ33NUhbstoIKEDirp7vEIz7jmvdHgFL-tBpQaJdwGXVOVvMmQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eMp7ckzBYo-3vCbAM8tFGY5OXnD8_UNsXOs6iJ33NUhbstoIKEDirp7vEIz7jmvdHgFL-tBpQaJdwGXVOVvMmQ== new file mode 100644 index 0000000..5e89f34 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eMp7ckzBYo-3vCbAM8tFGY5OXnD8_UNsXOs6iJ33NUhbstoIKEDirp7vEIz7jmvdHgFL-tBpQaJdwGXVOVvMmQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eguAdRz1ZPsqL4yD1IgOzekPXhNNk3JwW-oxQs4DVUex4LcK8fCQA-4B49E8zXgUIIItYHllQYCab6Q-EfdEpA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eguAdRz1ZPsqL4yD1IgOzekPXhNNk3JwW-oxQs4DVUex4LcK8fCQA-4B49E8zXgUIIItYHllQYCab6Q-EfdEpA== new file mode 100644 index 0000000..2a088d4 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~eguAdRz1ZPsqL4yD1IgOzekPXhNNk3JwW-oxQs4DVUex4LcK8fCQA-4B49E8zXgUIIItYHllQYCab6Q-EfdEpA== @@ -0,0 +1 @@ +[{"type":1,"name":"DD7AC1A77F304B8687A440209A30AB"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ekJaYrg_CZIL4n_ErJ-PzyeTS8Ab08Av0bj1LXBhiYkdJPsNg-mijt8fD_CTQocWnf6ie_Qi5Tj0B7mlpCK8GQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ekJaYrg_CZIL4n_ErJ-PzyeTS8Ab08Av0bj1LXBhiYkdJPsNg-mijt8fD_CTQocWnf6ie_Qi5Tj0B7mlpCK8GQ== new file mode 100644 index 0000000..c20ce22 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ekJaYrg_CZIL4n_ErJ-PzyeTS8Ab08Av0bj1LXBhiYkdJPsNg-mijt8fD_CTQocWnf6ie_Qi5Tj0B7mlpCK8GQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ezsvnCQ_uBjgvhmbO-u3lVDbrp0iduYWfDJgWmwQxFWdPhPJy8342C83nJHtGsnzvQoOQxRdQa81cUIl8qBArA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ezsvnCQ_uBjgvhmbO-u3lVDbrp0iduYWfDJgWmwQxFWdPhPJy8342C83nJHtGsnzvQoOQxRdQa81cUIl8qBArA== new file mode 100644 index 0000000..f1b1ba4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ezsvnCQ_uBjgvhmbO-u3lVDbrp0iduYWfDJgWmwQxFWdPhPJy8342C83nJHtGsnzvQoOQxRdQa81cUIl8qBArA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~f5FbkT00ObEyiWVOfoWFeqZzEY8wLY0V08fRWeC4Il1_Au9ruBmUn8AuZaHLzGvjfC323unmDZ8didpyO4hMpw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~f5FbkT00ObEyiWVOfoWFeqZzEY8wLY0V08fRWeC4Il1_Au9ruBmUn8AuZaHLzGvjfC323unmDZ8didpyO4hMpw== new file mode 100644 index 0000000..3545e87 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~f5FbkT00ObEyiWVOfoWFeqZzEY8wLY0V08fRWeC4Il1_Au9ruBmUn8AuZaHLzGvjfC323unmDZ8didpyO4hMpw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fEo8BfosQy0Bf4CxKq2Th_1HlwTc6OIQpJ5tPHQCJwTBYxMRxJIMid864atFExqktWpeJ2SIRjKrFSJWIw3uIQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fEo8BfosQy0Bf4CxKq2Th_1HlwTc6OIQpJ5tPHQCJwTBYxMRxJIMid864atFExqktWpeJ2SIRjKrFSJWIw3uIQ== new file mode 100644 index 0000000..6d30339 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fEo8BfosQy0Bf4CxKq2Th_1HlwTc6OIQpJ5tPHQCJwTBYxMRxJIMid864atFExqktWpeJ2SIRjKrFSJWIw3uIQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fJJd4Cp6KYHHjuaV5mQW0PeApXluT7VeCyxiPVSDGGPt1JyGOOpiSZPNEGbXYxqJZ9HwtUf88wHqwr05r9fsJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fJJd4Cp6KYHHjuaV5mQW0PeApXluT7VeCyxiPVSDGGPt1JyGOOpiSZPNEGbXYxqJZ9HwtUf88wHqwr05r9fsJg== new file mode 100644 index 0000000..b615fd3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fJJd4Cp6KYHHjuaV5mQW0PeApXluT7VeCyxiPVSDGGPt1JyGOOpiSZPNEGbXYxqJZ9HwtUf88wHqwr05r9fsJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fPsjs7w-a7EWScZSc-YGcg5E5jAzLb1unF8aeb1tlnt89pNmpC4br8LLT1MqZdGvAU8inqZk8GNz34pyCOhsGw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fPsjs7w-a7EWScZSc-YGcg5E5jAzLb1unF8aeb1tlnt89pNmpC4br8LLT1MqZdGvAU8inqZk8GNz34pyCOhsGw== new file mode 100644 index 0000000..6b05e01 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fPsjs7w-a7EWScZSc-YGcg5E5jAzLb1unF8aeb1tlnt89pNmpC4br8LLT1MqZdGvAU8inqZk8GNz34pyCOhsGw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fROkMKYTOhv0PfTaDtHSi7cZ_9ufpcq4EirjdSR16BIJ1k0_oGl95gxJoD-m7-LfAAkjn2DU50yicW0uLmNo0A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fROkMKYTOhv0PfTaDtHSi7cZ_9ufpcq4EirjdSR16BIJ1k0_oGl95gxJoD-m7-LfAAkjn2DU50yicW0uLmNo0A== new file mode 100644 index 0000000..3ca5a07 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fROkMKYTOhv0PfTaDtHSi7cZ_9ufpcq4EirjdSR16BIJ1k0_oGl95gxJoD-m7-LfAAkjn2DU50yicW0uLmNo0A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fSrgIS3E3wsZt7VhE-NPfwLgb9VQaeT3qNMJ0npeZDRfZo2_dNSyTSUkAtEiQwwtUMIegxnUi0BbghLNghWeGw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fSrgIS3E3wsZt7VhE-NPfwLgb9VQaeT3qNMJ0npeZDRfZo2_dNSyTSUkAtEiQwwtUMIegxnUi0BbghLNghWeGw== new file mode 100644 index 0000000..0596acf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fSrgIS3E3wsZt7VhE-NPfwLgb9VQaeT3qNMJ0npeZDRfZo2_dNSyTSUkAtEiQwwtUMIegxnUi0BbghLNghWeGw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fUyjEKS5hNJzh-8qs5ew72g0IZOclq9_TWveSnRTC8GhD3yz3nblAIXiKUHTFjIgmSh6RSqrU9SJvsRfmSu8nQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fUyjEKS5hNJzh-8qs5ew72g0IZOclq9_TWveSnRTC8GhD3yz3nblAIXiKUHTFjIgmSh6RSqrU9SJvsRfmSu8nQ== new file mode 100644 index 0000000..9a476de Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fUyjEKS5hNJzh-8qs5ew72g0IZOclq9_TWveSnRTC8GhD3yz3nblAIXiKUHTFjIgmSh6RSqrU9SJvsRfmSu8nQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fVjRmpvlVGmV9URY-GqZIf2OuJ9Xw4Pto_zSt60JxFhxBlm49HUxVUylLsNnijCGbSkV4NBOKNuarScoJodutg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fVjRmpvlVGmV9URY-GqZIf2OuJ9Xw4Pto_zSt60JxFhxBlm49HUxVUylLsNnijCGbSkV4NBOKNuarScoJodutg== new file mode 100644 index 0000000..6c4f23d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fVjRmpvlVGmV9URY-GqZIf2OuJ9Xw4Pto_zSt60JxFhxBlm49HUxVUylLsNnijCGbSkV4NBOKNuarScoJodutg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fZ-El9yHD-ziGkrT3tHcbOySUvU3QscYwUA7frHKNYY68TlSAZcXV7ipwFv2MyhzLJOjEY1DxZj_IP9NunSE8A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fZ-El9yHD-ziGkrT3tHcbOySUvU3QscYwUA7frHKNYY68TlSAZcXV7ipwFv2MyhzLJOjEY1DxZj_IP9NunSE8A== new file mode 100644 index 0000000..1c18eef Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fZ-El9yHD-ziGkrT3tHcbOySUvU3QscYwUA7frHKNYY68TlSAZcXV7ipwFv2MyhzLJOjEY1DxZj_IP9NunSE8A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fcymoCSpiTXtsTBcxmTkAajQo0D3DzhblvS2Pp3xHgzzvF7K9SHeDIqTIjHgf200yUEIZRgo5MikunOZl3CjWw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fcymoCSpiTXtsTBcxmTkAajQo0D3DzhblvS2Pp3xHgzzvF7K9SHeDIqTIjHgf200yUEIZRgo5MikunOZl3CjWw== new file mode 100644 index 0000000..d7e900d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fcymoCSpiTXtsTBcxmTkAajQo0D3DzhblvS2Pp3xHgzzvF7K9SHeDIqTIjHgf200yUEIZRgo5MikunOZl3CjWw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fecgBZVcFxO_xr9B9HW98PxMjrkYfy8FJxCq25kBc5qguITAx0sje46YwhTo4dbbLSaLNXvURgkWyTlEDaPr_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fecgBZVcFxO_xr9B9HW98PxMjrkYfy8FJxCq25kBc5qguITAx0sje46YwhTo4dbbLSaLNXvURgkWyTlEDaPr_w== new file mode 100644 index 0000000..bfceff3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fecgBZVcFxO_xr9B9HW98PxMjrkYfy8FJxCq25kBc5qguITAx0sje46YwhTo4dbbLSaLNXvURgkWyTlEDaPr_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ff4EOF6DwEljquf9lU-h-xWNnoQ61t37CCF4kfPZUJ7oOj7n4PdBlc1YEXGBciglNTIcHuKP_-NyIH-EU84LCA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ff4EOF6DwEljquf9lU-h-xWNnoQ61t37CCF4kfPZUJ7oOj7n4PdBlc1YEXGBciglNTIcHuKP_-NyIH-EU84LCA== new file mode 100644 index 0000000..f9c4193 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ff4EOF6DwEljquf9lU-h-xWNnoQ61t37CCF4kfPZUJ7oOj7n4PdBlc1YEXGBciglNTIcHuKP_-NyIH-EU84LCA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fgU1eFzDYDkMDeuCIh0D-6TL75bWoYSvh8j8gYuAcv1RWi8isNGzTzQ0iO-2U26why-wayg30jg05gMW_0F73w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fgU1eFzDYDkMDeuCIh0D-6TL75bWoYSvh8j8gYuAcv1RWi8isNGzTzQ0iO-2U26why-wayg30jg05gMW_0F73w== new file mode 100644 index 0000000..ee76602 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fgU1eFzDYDkMDeuCIh0D-6TL75bWoYSvh8j8gYuAcv1RWi8isNGzTzQ0iO-2U26why-wayg30jg05gMW_0F73w== @@ -0,0 +1 @@ +[{"type":1,"name":"222C2CCC7A37D8AFBE37E229148FB8"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fhBPQNywS4X8UtClxDmUoWXNA0Wxoq9SjxPr3voMyFuJOcfLqjibrAmmqDhfEAQFdUf_IuR0jTQU5Wm7Aw8HTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fhBPQNywS4X8UtClxDmUoWXNA0Wxoq9SjxPr3voMyFuJOcfLqjibrAmmqDhfEAQFdUf_IuR0jTQU5Wm7Aw8HTw== new file mode 100644 index 0000000..f736772 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fhBPQNywS4X8UtClxDmUoWXNA0Wxoq9SjxPr3voMyFuJOcfLqjibrAmmqDhfEAQFdUf_IuR0jTQU5Wm7Aw8HTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fyGD8zlRWfLlR9kCXRT-CRaYdQsYmr-WZQWlcelj5k7yF50SmXxak0JjNGYCp_Ri44RC20qeuFHaPKCiYfxf0w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fyGD8zlRWfLlR9kCXRT-CRaYdQsYmr-WZQWlcelj5k7yF50SmXxak0JjNGYCp_Ri44RC20qeuFHaPKCiYfxf0w== new file mode 100644 index 0000000..aedcc4a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fyGD8zlRWfLlR9kCXRT-CRaYdQsYmr-WZQWlcelj5k7yF50SmXxak0JjNGYCp_Ri44RC20qeuFHaPKCiYfxf0w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fzE-B0WY6AFyc5S_jaVyPXh0HQpO_Tos7gq6S07wOy1hrngW_epswWpC2SWGqeRfn7AVFrskvjRcaXMzCXHi-g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fzE-B0WY6AFyc5S_jaVyPXh0HQpO_Tos7gq6S07wOy1hrngW_epswWpC2SWGqeRfn7AVFrskvjRcaXMzCXHi-g== new file mode 100644 index 0000000..080cfde Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fzE-B0WY6AFyc5S_jaVyPXh0HQpO_Tos7gq6S07wOy1hrngW_epswWpC2SWGqeRfn7AVFrskvjRcaXMzCXHi-g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fzfl8lowQjvQED6BaPKG57KNlidV-4concMMulRGWhRGSx0wVF2Lxh8fR9R4M_Iqg1oUNhcUYykOHHOGjZgoiw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fzfl8lowQjvQED6BaPKG57KNlidV-4concMMulRGWhRGSx0wVF2Lxh8fR9R4M_Iqg1oUNhcUYykOHHOGjZgoiw== new file mode 100644 index 0000000..8e728b0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~fzfl8lowQjvQED6BaPKG57KNlidV-4concMMulRGWhRGSx0wVF2Lxh8fR9R4M_Iqg1oUNhcUYykOHHOGjZgoiw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g0hNgivgK1OTHhe1f_4rov6Ft0LoeVadbQkwyRtavet6j9u-XfD9v1SiqTO-6LtwXnYfo8wcG2U9ncxOyCZIvg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g0hNgivgK1OTHhe1f_4rov6Ft0LoeVadbQkwyRtavet6j9u-XfD9v1SiqTO-6LtwXnYfo8wcG2U9ncxOyCZIvg== new file mode 100644 index 0000000..7a64104 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g0hNgivgK1OTHhe1f_4rov6Ft0LoeVadbQkwyRtavet6j9u-XfD9v1SiqTO-6LtwXnYfo8wcG2U9ncxOyCZIvg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g0vup4Mc-8RDOmvroOBRAcOEXfcHRz5rblgBSndPl6yTWjLXlcWTQVJ7anOJpH4Xdh9GyVftJuyNi3BbusepWw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g0vup4Mc-8RDOmvroOBRAcOEXfcHRz5rblgBSndPl6yTWjLXlcWTQVJ7anOJpH4Xdh9GyVftJuyNi3BbusepWw== new file mode 100644 index 0000000..f440158 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g0vup4Mc-8RDOmvroOBRAcOEXfcHRz5rblgBSndPl6yTWjLXlcWTQVJ7anOJpH4Xdh9GyVftJuyNi3BbusepWw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g1ZvPD63RJuHbSSHWPw0p_MvMVlE0wEgZKoOu6kqHSOoIJ3zZVr6BTGP7ctZVWHJiMWZkdS39Mxepmxv414Qxw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g1ZvPD63RJuHbSSHWPw0p_MvMVlE0wEgZKoOu6kqHSOoIJ3zZVr6BTGP7ctZVWHJiMWZkdS39Mxepmxv414Qxw== new file mode 100644 index 0000000..1c7adb8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g1ZvPD63RJuHbSSHWPw0p_MvMVlE0wEgZKoOu6kqHSOoIJ3zZVr6BTGP7ctZVWHJiMWZkdS39Mxepmxv414Qxw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g9JlH3OqX1QpKtBkimDnFC6iCV-4DusRZqMLaA1p249EJ2YbIOtwM2y4DOgL-YZkXuBEEKi4bhM0iQMXJe0B_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g9JlH3OqX1QpKtBkimDnFC6iCV-4DusRZqMLaA1p249EJ2YbIOtwM2y4DOgL-YZkXuBEEKi4bhM0iQMXJe0B_w== new file mode 100644 index 0000000..2161c16 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g9JlH3OqX1QpKtBkimDnFC6iCV-4DusRZqMLaA1p249EJ2YbIOtwM2y4DOgL-YZkXuBEEKi4bhM0iQMXJe0B_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gJX8jQfzS6dtE_PdIU_yHq20-tQshqeFfG0Za1gpsp3-TgVxwcFg8aZJyRtE3ukooV3hokHICxsiBkuQOR-ZjQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gJX8jQfzS6dtE_PdIU_yHq20-tQshqeFfG0Za1gpsp3-TgVxwcFg8aZJyRtE3ukooV3hokHICxsiBkuQOR-ZjQ== new file mode 100644 index 0000000..0baea0e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gJX8jQfzS6dtE_PdIU_yHq20-tQshqeFfG0Za1gpsp3-TgVxwcFg8aZJyRtE3ukooV3hokHICxsiBkuQOR-ZjQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gS9VTvKdgkTZt6x__Q_wRcjrcqNDXiHRzPbTCyE_SVBLimjFU-YeACcv0w6PC44mysdkGne7Ri9CfSAZ_2sgmw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gS9VTvKdgkTZt6x__Q_wRcjrcqNDXiHRzPbTCyE_SVBLimjFU-YeACcv0w6PC44mysdkGne7Ri9CfSAZ_2sgmw== new file mode 100644 index 0000000..a10c1f5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gS9VTvKdgkTZt6x__Q_wRcjrcqNDXiHRzPbTCyE_SVBLimjFU-YeACcv0w6PC44mysdkGne7Ri9CfSAZ_2sgmw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gU7j9IIj9KtfsC-U-HZ9wxInmNIM4kToBb21QK4SnwRUK2Vp4zJtJJMuKtzVx_J74s8BqWvqjeXlRGRPODzLgQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gU7j9IIj9KtfsC-U-HZ9wxInmNIM4kToBb21QK4SnwRUK2Vp4zJtJJMuKtzVx_J74s8BqWvqjeXlRGRPODzLgQ== new file mode 100644 index 0000000..b5dc8a5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gU7j9IIj9KtfsC-U-HZ9wxInmNIM4kToBb21QK4SnwRUK2Vp4zJtJJMuKtzVx_J74s8BqWvqjeXlRGRPODzLgQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gV4qXVasL9ZrBF4CyC5t8wvuDk4bNlmt3SEG0d7cpaH_CyYXBIlAtmks-UhbYKsWUFOJ6uc689e7nGZmhCfoZA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gV4qXVasL9ZrBF4CyC5t8wvuDk4bNlmt3SEG0d7cpaH_CyYXBIlAtmks-UhbYKsWUFOJ6uc689e7nGZmhCfoZA== new file mode 100644 index 0000000..6660621 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gV4qXVasL9ZrBF4CyC5t8wvuDk4bNlmt3SEG0d7cpaH_CyYXBIlAtmks-UhbYKsWUFOJ6uc689e7nGZmhCfoZA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gX4E37LPZDwl1BypLC3ppHV5btDBySd_OF_LX-Lypwabfo32PxOzl6uEQCngAQwW1YVHT8-f70pqiVsKhgQFmQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gX4E37LPZDwl1BypLC3ppHV5btDBySd_OF_LX-Lypwabfo32PxOzl6uEQCngAQwW1YVHT8-f70pqiVsKhgQFmQ== new file mode 100644 index 0000000..b57e7bd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gX4E37LPZDwl1BypLC3ppHV5btDBySd_OF_LX-Lypwabfo32PxOzl6uEQCngAQwW1YVHT8-f70pqiVsKhgQFmQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gXFT3NESS2ya_lk8CFzEjE5_tgKSQsjbxkU7Bg9xJpoqvyDf3kmU9FvXV6uawNyOHKHG4t8oO1ka_zgVUhAlew== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gXFT3NESS2ya_lk8CFzEjE5_tgKSQsjbxkU7Bg9xJpoqvyDf3kmU9FvXV6uawNyOHKHG4t8oO1ka_zgVUhAlew== new file mode 100644 index 0000000..260ac8f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gXFT3NESS2ya_lk8CFzEjE5_tgKSQsjbxkU7Bg9xJpoqvyDf3kmU9FvXV6uawNyOHKHG4t8oO1ka_zgVUhAlew== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g_wfsv2uEe6DID8_6FJbf0ocy5vHYk1-kzMC0F-qzj0EM6OPAO-6g4HLvnZS6j_PRE2Cu4nYw8BZQ3eYil9BKg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g_wfsv2uEe6DID8_6FJbf0ocy5vHYk1-kzMC0F-qzj0EM6OPAO-6g4HLvnZS6j_PRE2Cu4nYw8BZQ3eYil9BKg== new file mode 100644 index 0000000..38d2da9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~g_wfsv2uEe6DID8_6FJbf0ocy5vHYk1-kzMC0F-qzj0EM6OPAO-6g4HLvnZS6j_PRE2Cu4nYw8BZQ3eYil9BKg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~giBkGoc8dr7UWSZfw0RhhBw-5PzINVZ1TLikHIE80_QMGz9O7-DoofRlBe9ifLlOWVq0tWn4vSwELxz2n_EfBQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~giBkGoc8dr7UWSZfw0RhhBw-5PzINVZ1TLikHIE80_QMGz9O7-DoofRlBe9ifLlOWVq0tWn4vSwELxz2n_EfBQ== new file mode 100644 index 0000000..dd01ac5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~giBkGoc8dr7UWSZfw0RhhBw-5PzINVZ1TLikHIE80_QMGz9O7-DoofRlBe9ifLlOWVq0tWn4vSwELxz2n_EfBQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gnFEc_lK59pehXxDVFnA7xFnKzVu4lPAiTl04nv5kAVQOjHuioGTm7fQ2Sj7Aq08y6IFyTSHrV1XRRyZYkcypQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gnFEc_lK59pehXxDVFnA7xFnKzVu4lPAiTl04nv5kAVQOjHuioGTm7fQ2Sj7Aq08y6IFyTSHrV1XRRyZYkcypQ== new file mode 100644 index 0000000..22001c9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gnFEc_lK59pehXxDVFnA7xFnKzVu4lPAiTl04nv5kAVQOjHuioGTm7fQ2Sj7Aq08y6IFyTSHrV1XRRyZYkcypQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~goFyhsFsrEIoovNEkt6V9lBb11H4LoGPoOP6PtnEqHOVurwLLe7DHXCTqL2t9g9-W5iUvAbJA8TlN6c5Tuv1EA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~goFyhsFsrEIoovNEkt6V9lBb11H4LoGPoOP6PtnEqHOVurwLLe7DHXCTqL2t9g9-W5iUvAbJA8TlN6c5Tuv1EA== new file mode 100644 index 0000000..a679e56 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~goFyhsFsrEIoovNEkt6V9lBb11H4LoGPoOP6PtnEqHOVurwLLe7DHXCTqL2t9g9-W5iUvAbJA8TlN6c5Tuv1EA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gto-sz8lVYYgYZvSDuzWIuIxasBTtBUoJ--bSy9IY-HwTr70SBbwpfXtIbJoS36ZAYFJLiFfqUnX4V8_lp-trQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gto-sz8lVYYgYZvSDuzWIuIxasBTtBUoJ--bSy9IY-HwTr70SBbwpfXtIbJoS36ZAYFJLiFfqUnX4V8_lp-trQ== new file mode 100644 index 0000000..536d8bd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gto-sz8lVYYgYZvSDuzWIuIxasBTtBUoJ--bSy9IY-HwTr70SBbwpfXtIbJoS36ZAYFJLiFfqUnX4V8_lp-trQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gyVLcrfv5ilQoSzhR0DWm70-lOcmpDMOAlU7k7pKDI1NsCkDPfoQyQqKY9dcc8Kr8HKm_3GuT3iyKp5b9YkdkA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gyVLcrfv5ilQoSzhR0DWm70-lOcmpDMOAlU7k7pKDI1NsCkDPfoQyQqKY9dcc8Kr8HKm_3GuT3iyKp5b9YkdkA== new file mode 100644 index 0000000..a33a451 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gyVLcrfv5ilQoSzhR0DWm70-lOcmpDMOAlU7k7pKDI1NsCkDPfoQyQqKY9dcc8Kr8HKm_3GuT3iyKp5b9YkdkA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gyrlaS7lGxu07cbYiG52V6h-rLXxbDapqk-rbaLeqJojJzapfDhAjsu2r1pNwMKDagJ9nhdsCbtb4lmATMPIwQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gyrlaS7lGxu07cbYiG52V6h-rLXxbDapqk-rbaLeqJojJzapfDhAjsu2r1pNwMKDagJ9nhdsCbtb4lmATMPIwQ== new file mode 100644 index 0000000..d25c638 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~gyrlaS7lGxu07cbYiG52V6h-rLXxbDapqk-rbaLeqJojJzapfDhAjsu2r1pNwMKDagJ9nhdsCbtb4lmATMPIwQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~h5QHevQUX5YSJejQbg4YjzrIzBzLR5nLqL8n2C0ewn2QrchBaW1t_ZTgp-UzmxHLP84fZp9lEMFnewYIdCXKvA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~h5QHevQUX5YSJejQbg4YjzrIzBzLR5nLqL8n2C0ewn2QrchBaW1t_ZTgp-UzmxHLP84fZp9lEMFnewYIdCXKvA== new file mode 100644 index 0000000..468bb49 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~h5QHevQUX5YSJejQbg4YjzrIzBzLR5nLqL8n2C0ewn2QrchBaW1t_ZTgp-UzmxHLP84fZp9lEMFnewYIdCXKvA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hAH5ojpi6GbLlfV0qDLTV3JzU_tUDX04GGqCGFGQHikLKP06TzH_XrvcisSQB_WcXSNkYGdmWjeSHpqnBwZd9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hAH5ojpi6GbLlfV0qDLTV3JzU_tUDX04GGqCGFGQHikLKP06TzH_XrvcisSQB_WcXSNkYGdmWjeSHpqnBwZd9A== new file mode 100644 index 0000000..792a017 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hAH5ojpi6GbLlfV0qDLTV3JzU_tUDX04GGqCGFGQHikLKP06TzH_XrvcisSQB_WcXSNkYGdmWjeSHpqnBwZd9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hAr6Hk6xFdvVb3qHPGFg_5KEQ0omh1a5F870at5pFWRbDz-7hHRITu8ei5dGZXbw19w1bKZZR8_x2VDWTp696g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hAr6Hk6xFdvVb3qHPGFg_5KEQ0omh1a5F870at5pFWRbDz-7hHRITu8ei5dGZXbw19w1bKZZR8_x2VDWTp696g== new file mode 100644 index 0000000..fb00aa7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hAr6Hk6xFdvVb3qHPGFg_5KEQ0omh1a5F870at5pFWRbDz-7hHRITu8ei5dGZXbw19w1bKZZR8_x2VDWTp696g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hLMUGrj3tWPdW3CW0L15Z0ozemuluXn7kh9Ex_0XYIxF1mrr86doF2P8StRUKzmcRslah_Pg83DRUn-ciqlkfA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hLMUGrj3tWPdW3CW0L15Z0ozemuluXn7kh9Ex_0XYIxF1mrr86doF2P8StRUKzmcRslah_Pg83DRUn-ciqlkfA== new file mode 100644 index 0000000..1c528de Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hLMUGrj3tWPdW3CW0L15Z0ozemuluXn7kh9Ex_0XYIxF1mrr86doF2P8StRUKzmcRslah_Pg83DRUn-ciqlkfA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hWvUtrM8XAKzcJ2W9ExLGGXL-otxf3l6OlA6EQ6RoCsXhn9ptrJGCDiklT225NsAwfSLuQIq5MsENOq5pWCGPg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hWvUtrM8XAKzcJ2W9ExLGGXL-otxf3l6OlA6EQ6RoCsXhn9ptrJGCDiklT225NsAwfSLuQIq5MsENOq5pWCGPg== new file mode 100644 index 0000000..1844c18 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hWvUtrM8XAKzcJ2W9ExLGGXL-otxf3l6OlA6EQ6RoCsXhn9ptrJGCDiklT225NsAwfSLuQIq5MsENOq5pWCGPg== @@ -0,0 +1 @@ +[{"type":1,"name":"itunesstored.log"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hZ7HeV2QSu_xP_eXPBkZ52J4qoUNVMJQGzhveDTE_swkkykiK9alZ9iQLfsfbMth4h1aEWGqW6skOKx5EC_rMg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hZ7HeV2QSu_xP_eXPBkZ52J4qoUNVMJQGzhveDTE_swkkykiK9alZ9iQLfsfbMth4h1aEWGqW6skOKx5EC_rMg== new file mode 100644 index 0000000..b599270 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hZ7HeV2QSu_xP_eXPBkZ52J4qoUNVMJQGzhveDTE_swkkykiK9alZ9iQLfsfbMth4h1aEWGqW6skOKx5EC_rMg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hcT6NWbAmpcsIp4LM_WeNdg2ll1MyZSm3aYdOV0VE8DwMfZm0UNY3cAcy7Hkpcu4HEnxVBCeyRKirHKJNTdq8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hcT6NWbAmpcsIp4LM_WeNdg2ll1MyZSm3aYdOV0VE8DwMfZm0UNY3cAcy7Hkpcu4HEnxVBCeyRKirHKJNTdq8Q== new file mode 100644 index 0000000..ef1ce70 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hcT6NWbAmpcsIp4LM_WeNdg2ll1MyZSm3aYdOV0VE8DwMfZm0UNY3cAcy7Hkpcu4HEnxVBCeyRKirHKJNTdq8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hh8PSj0m_PUrMjalRrmFckgMsYVPD6ywc7vyHcm_XyoAc7uA2azTcdcTg-wffM4jaPmQyB1nrQk0m1zBZKXp-g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hh8PSj0m_PUrMjalRrmFckgMsYVPD6ywc7vyHcm_XyoAc7uA2azTcdcTg-wffM4jaPmQyB1nrQk0m1zBZKXp-g== new file mode 100644 index 0000000..087bc72 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hh8PSj0m_PUrMjalRrmFckgMsYVPD6ywc7vyHcm_XyoAc7uA2azTcdcTg-wffM4jaPmQyB1nrQk0m1zBZKXp-g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hmQOzZrNuRuZDj1zyv8IFoVo_tgSQtTJm2a7b2EWF7_m8ttCWuGc04Ln8H8C25PQ43EnVJp9GsOBgakead9NaQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hmQOzZrNuRuZDj1zyv8IFoVo_tgSQtTJm2a7b2EWF7_m8ttCWuGc04Ln8H8C25PQ43EnVJp9GsOBgakead9NaQ== new file mode 100644 index 0000000..9eda819 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hmQOzZrNuRuZDj1zyv8IFoVo_tgSQtTJm2a7b2EWF7_m8ttCWuGc04Ln8H8C25PQ43EnVJp9GsOBgakead9NaQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hrhGZ1CTBhHMESJHuds99sYbHVWjexYVbmleTDKM1MSHY_OO3wYIidYgyxp-9jD4dvzQc2ZH23yYxQrQFr0BSg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hrhGZ1CTBhHMESJHuds99sYbHVWjexYVbmleTDKM1MSHY_OO3wYIidYgyxp-9jD4dvzQc2ZH23yYxQrQFr0BSg== new file mode 100644 index 0000000..af6c75c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hrhGZ1CTBhHMESJHuds99sYbHVWjexYVbmleTDKM1MSHY_OO3wYIidYgyxp-9jD4dvzQc2ZH23yYxQrQFr0BSg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~htcH4y1TESmsQNHXfl7ujxp3E9LMeTDhh2pNojK3jyTBBGZKFWWQ_L8cK71a-TFNtcjKEnPoooSdT3bWWFInzg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~htcH4y1TESmsQNHXfl7ujxp3E9LMeTDhh2pNojK3jyTBBGZKFWWQ_L8cK71a-TFNtcjKEnPoooSdT3bWWFInzg== new file mode 100644 index 0000000..af0d3dc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~htcH4y1TESmsQNHXfl7ujxp3E9LMeTDhh2pNojK3jyTBBGZKFWWQ_L8cK71a-TFNtcjKEnPoooSdT3bWWFInzg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~htsQ5cll8OUOs-cdLcYAHbELpkAMT-g9oqwT-cDN3bcZvUdIGiZtJgrscbUXHVeR8War-SCkzVDfR06oVfv7xg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~htsQ5cll8OUOs-cdLcYAHbELpkAMT-g9oqwT-cDN3bcZvUdIGiZtJgrscbUXHVeR8War-SCkzVDfR06oVfv7xg== new file mode 100644 index 0000000..49f85c4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~htsQ5cll8OUOs-cdLcYAHbELpkAMT-g9oqwT-cDN3bcZvUdIGiZtJgrscbUXHVeR8War-SCkzVDfR06oVfv7xg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hwgikRX68kJZxo7CNaaUtHMeojPDDcd8mUKYDPG4mKCDvUsCEfGUMOIMfBEkSZ497FVyMY4SGewMLNsGpNjXeA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hwgikRX68kJZxo7CNaaUtHMeojPDDcd8mUKYDPG4mKCDvUsCEfGUMOIMfBEkSZ497FVyMY4SGewMLNsGpNjXeA== new file mode 100644 index 0000000..2ed563f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hwgikRX68kJZxo7CNaaUtHMeojPDDcd8mUKYDPG4mKCDvUsCEfGUMOIMfBEkSZ497FVyMY4SGewMLNsGpNjXeA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hwuXOdMG7orc1VLy8XtflIROfP43ktBSKks12TlA5c-c7BdDIBWml32fB8TychL3JTf4iau5O126JmvgcNu5sw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hwuXOdMG7orc1VLy8XtflIROfP43ktBSKks12TlA5c-c7BdDIBWml32fB8TychL3JTf4iau5O126JmvgcNu5sw== new file mode 100644 index 0000000..d5b0f46 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hwuXOdMG7orc1VLy8XtflIROfP43ktBSKks12TlA5c-c7BdDIBWml32fB8TychL3JTf4iau5O126JmvgcNu5sw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hxm5L2WdH9sV1frrVkwIKsUo2smyC2ChUSagH9eWf_fNIFRSA-37O-moz8zqAnJ-u5ImeTK5xBOCuiwWh-m9lQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hxm5L2WdH9sV1frrVkwIKsUo2smyC2ChUSagH9eWf_fNIFRSA-37O-moz8zqAnJ-u5ImeTK5xBOCuiwWh-m9lQ== new file mode 100644 index 0000000..8efdd6b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hxm5L2WdH9sV1frrVkwIKsUo2smyC2ChUSagH9eWf_fNIFRSA-37O-moz8zqAnJ-u5ImeTK5xBOCuiwWh-m9lQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hy9iVfvXhuo-QYmsTLAYEig43Xu4B6VUvArYaKUGxYeu34emXhl0LYIFvoPZH68isuBNFNkncQLMS-VEy_IO0A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hy9iVfvXhuo-QYmsTLAYEig43Xu4B6VUvArYaKUGxYeu34emXhl0LYIFvoPZH68isuBNFNkncQLMS-VEy_IO0A== new file mode 100644 index 0000000..2f0b4ef Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hy9iVfvXhuo-QYmsTLAYEig43Xu4B6VUvArYaKUGxYeu34emXhl0LYIFvoPZH68isuBNFNkncQLMS-VEy_IO0A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hyKlUNov9jb3E2T_l_kYD4M1RJTyOJNE9ifPxDnestaVAEtXh2YParfWWwHDKWrfWPluLwr4QPVj0RuvUDHebg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hyKlUNov9jb3E2T_l_kYD4M1RJTyOJNE9ifPxDnestaVAEtXh2YParfWWwHDKWrfWPluLwr4QPVj0RuvUDHebg== new file mode 100644 index 0000000..4bfaef6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~hyKlUNov9jb3E2T_l_kYD4M1RJTyOJNE9ifPxDnestaVAEtXh2YParfWWwHDKWrfWPluLwr4QPVj0RuvUDHebg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i1SLjf0lu67wxmD69lP_m6cWtT_0utwkeTEQLkWDQYgARfjZYxDtGB9qY1svC10ObMMqfVTkiHonYBdDPCVRhw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i1SLjf0lu67wxmD69lP_m6cWtT_0utwkeTEQLkWDQYgARfjZYxDtGB9qY1svC10ObMMqfVTkiHonYBdDPCVRhw== new file mode 100644 index 0000000..caa891d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i1SLjf0lu67wxmD69lP_m6cWtT_0utwkeTEQLkWDQYgARfjZYxDtGB9qY1svC10ObMMqfVTkiHonYBdDPCVRhw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i3FWO1v6-uyK-sJAym8HRyRe4Pz8kqn4AEzQJRxJbGjsNtvZdGjXiLp1TKt2Sfxlhmz6EwndwqNcVumLioXLTA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i3FWO1v6-uyK-sJAym8HRyRe4Pz8kqn4AEzQJRxJbGjsNtvZdGjXiLp1TKt2Sfxlhmz6EwndwqNcVumLioXLTA== new file mode 100644 index 0000000..2c71206 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i3FWO1v6-uyK-sJAym8HRyRe4Pz8kqn4AEzQJRxJbGjsNtvZdGjXiLp1TKt2Sfxlhmz6EwndwqNcVumLioXLTA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i4_NDKjwhQIYMHB5baL3qve02DNUyfn0iDAhykn5X63Wga5J6X6lYo2avkpHC-D89PbpL89xr6F1PtKyfNb-kQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i4_NDKjwhQIYMHB5baL3qve02DNUyfn0iDAhykn5X63Wga5J6X6lYo2avkpHC-D89PbpL89xr6F1PtKyfNb-kQ== new file mode 100644 index 0000000..b9e8559 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i4_NDKjwhQIYMHB5baL3qve02DNUyfn0iDAhykn5X63Wga5J6X6lYo2avkpHC-D89PbpL89xr6F1PtKyfNb-kQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i6MFGXvmtZxEjk591dD1in3jJFhahZwsp5pXVvclWz-b5myi5OXL0_5EZkPfUqoQIxMEqo9FSI8QLZS_nn8SRQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i6MFGXvmtZxEjk591dD1in3jJFhahZwsp5pXVvclWz-b5myi5OXL0_5EZkPfUqoQIxMEqo9FSI8QLZS_nn8SRQ== new file mode 100644 index 0000000..c26063f --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i6MFGXvmtZxEjk591dD1in3jJFhahZwsp5pXVvclWz-b5myi5OXL0_5EZkPfUqoQIxMEqo9FSI8QLZS_nn8SRQ== @@ -0,0 +1 @@ +[{"type":1,"name":"98B061DB7A3B409123FDDA04283FF8"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i8Uky89UvD2nbGFWi1TqUq0ac7nWm8h63FZfl68DoJ0WG-wCCbjxaQwV9T0BO6tZFe_ROY5kipJ19knMDwUj4Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i8Uky89UvD2nbGFWi1TqUq0ac7nWm8h63FZfl68DoJ0WG-wCCbjxaQwV9T0BO6tZFe_ROY5kipJ19knMDwUj4Q== new file mode 100644 index 0000000..ba6877f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i8Uky89UvD2nbGFWi1TqUq0ac7nWm8h63FZfl68DoJ0WG-wCCbjxaQwV9T0BO6tZFe_ROY5kipJ19knMDwUj4Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iFpUjImbm_Vly0WoU01vESxQOr1ZQZ3VPeVWzV7Cp4uqBqI7XDOTFE4TWv72HV7uab0tp821qzijHrInEqFDtQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iFpUjImbm_Vly0WoU01vESxQOr1ZQZ3VPeVWzV7Cp4uqBqI7XDOTFE4TWv72HV7uab0tp821qzijHrInEqFDtQ== new file mode 100644 index 0000000..dc2b2c4 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iFpUjImbm_Vly0WoU01vESxQOr1ZQZ3VPeVWzV7Cp4uqBqI7XDOTFE4TWv72HV7uab0tp821qzijHrInEqFDtQ== @@ -0,0 +1 @@ +[{"type":1,"name":"492DC3ABFE32FD8FA2AB5BDB23B776"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iIT2MHlCtN4vUQy3AqmlAcO_pUQtEAY4udI2tTCFs0DdcNhpOrySkWE_AIub4XPOIOABXvlrgTJaRYOq6i_CsA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iIT2MHlCtN4vUQy3AqmlAcO_pUQtEAY4udI2tTCFs0DdcNhpOrySkWE_AIub4XPOIOABXvlrgTJaRYOq6i_CsA== new file mode 100644 index 0000000..07c59a3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iIT2MHlCtN4vUQy3AqmlAcO_pUQtEAY4udI2tTCFs0DdcNhpOrySkWE_AIub4XPOIOABXvlrgTJaRYOq6i_CsA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iKN7M-lOHaQD_4ux9ZGMgzPbhMGwbO8J8IvQ6lC-WOiMrGTXEYOAkYo6BtflFTgUPeLnt74zCtbJf6fLC--htA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iKN7M-lOHaQD_4ux9ZGMgzPbhMGwbO8J8IvQ6lC-WOiMrGTXEYOAkYo6BtflFTgUPeLnt74zCtbJf6fLC--htA== new file mode 100644 index 0000000..d4da0e8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iKN7M-lOHaQD_4ux9ZGMgzPbhMGwbO8J8IvQ6lC-WOiMrGTXEYOAkYo6BtflFTgUPeLnt74zCtbJf6fLC--htA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iSNQnJ2R-1Lyw4zNTeAuVVWOwvZPsRfmWqkF4WNStOJRcE0crKrHEp1FvTtpOPiKN6mJ-hpu0Ak2EHWV9ge8CQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iSNQnJ2R-1Lyw4zNTeAuVVWOwvZPsRfmWqkF4WNStOJRcE0crKrHEp1FvTtpOPiKN6mJ-hpu0Ak2EHWV9ge8CQ== new file mode 100644 index 0000000..bc4b666 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iSNQnJ2R-1Lyw4zNTeAuVVWOwvZPsRfmWqkF4WNStOJRcE0crKrHEp1FvTtpOPiKN6mJ-hpu0Ak2EHWV9ge8CQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iXDEt_EaaoZPIoatbl-wHhO02OYMRygnTZmpuOAaoUJDE8tr01rRLhe-GHnghh1DcJkXp6SXtKLSllFYYx7S_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iXDEt_EaaoZPIoatbl-wHhO02OYMRygnTZmpuOAaoUJDE8tr01rRLhe-GHnghh1DcJkXp6SXtKLSllFYYx7S_A== new file mode 100644 index 0000000..cfb7187 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iXDEt_EaaoZPIoatbl-wHhO02OYMRygnTZmpuOAaoUJDE8tr01rRLhe-GHnghh1DcJkXp6SXtKLSllFYYx7S_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iZzCkCG9xLcTAx_EkeO38NFJcmNulm7NcViduwamOIy7oYgi5qOUHNzM4FjolPwi3-bxaqxjLfDFJ77UGLdRXg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iZzCkCG9xLcTAx_EkeO38NFJcmNulm7NcViduwamOIy7oYgi5qOUHNzM4FjolPwi3-bxaqxjLfDFJ77UGLdRXg== new file mode 100644 index 0000000..59cdd73 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iZzCkCG9xLcTAx_EkeO38NFJcmNulm7NcViduwamOIy7oYgi5qOUHNzM4FjolPwi3-bxaqxjLfDFJ77UGLdRXg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i_2lr6E7zEmvazsS30UWMp30xM4YShZJLEqWb_VxpVa0D7LBxMYnGwpdGyHOLadfYI18K6pBokWxm_SD6qw0Mg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i_2lr6E7zEmvazsS30UWMp30xM4YShZJLEqWb_VxpVa0D7LBxMYnGwpdGyHOLadfYI18K6pBokWxm_SD6qw0Mg== new file mode 100644 index 0000000..02630bd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~i_2lr6E7zEmvazsS30UWMp30xM4YShZJLEqWb_VxpVa0D7LBxMYnGwpdGyHOLadfYI18K6pBokWxm_SD6qw0Mg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~igRMGLwh2guJBtiJSle3mgV4OVAw8EdZx5yx5VsIiUhyh1xgdWw55VqzpUuhPU95wcTzE1t4CXtOqGE2haj3Qw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~igRMGLwh2guJBtiJSle3mgV4OVAw8EdZx5yx5VsIiUhyh1xgdWw55VqzpUuhPU95wcTzE1t4CXtOqGE2haj3Qw== new file mode 100644 index 0000000..4042d50 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~igRMGLwh2guJBtiJSle3mgV4OVAw8EdZx5yx5VsIiUhyh1xgdWw55VqzpUuhPU95wcTzE1t4CXtOqGE2haj3Qw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ii3yulQvP4odCvOIerd9qu1kkc7Q0O-KtlVjZUoPxbs9pKIZoJ6v1isBByhGJkd7-T1tmsI_8kfeg9mCZk6E2g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ii3yulQvP4odCvOIerd9qu1kkc7Q0O-KtlVjZUoPxbs9pKIZoJ6v1isBByhGJkd7-T1tmsI_8kfeg9mCZk6E2g== new file mode 100644 index 0000000..ecde322 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ii3yulQvP4odCvOIerd9qu1kkc7Q0O-KtlVjZUoPxbs9pKIZoJ6v1isBByhGJkd7-T1tmsI_8kfeg9mCZk6E2g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ii57lahEGDoRP0n9eKtLDTEDIjTyc58ArFhYKeAyTR704Il5_DEwfd3wqZkHPQUSWdbSxlqqLb34iB5180bAhQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ii57lahEGDoRP0n9eKtLDTEDIjTyc58ArFhYKeAyTR704Il5_DEwfd3wqZkHPQUSWdbSxlqqLb34iB5180bAhQ== new file mode 100644 index 0000000..87b730d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ii57lahEGDoRP0n9eKtLDTEDIjTyc58ArFhYKeAyTR704Il5_DEwfd3wqZkHPQUSWdbSxlqqLb34iB5180bAhQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iiUTzLyOy1HuRR_1IyXgOFpeq5EY7CoLg_dF43tK0F7XEhT8rBQ-87r9MqU7vsaDib55bVIOL3q5Yyu1alJPSA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iiUTzLyOy1HuRR_1IyXgOFpeq5EY7CoLg_dF43tK0F7XEhT8rBQ-87r9MqU7vsaDib55bVIOL3q5Yyu1alJPSA== new file mode 100644 index 0000000..89983f9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iiUTzLyOy1HuRR_1IyXgOFpeq5EY7CoLg_dF43tK0F7XEhT8rBQ-87r9MqU7vsaDib55bVIOL3q5Yyu1alJPSA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ino-Yz4uw71BOB7R7vcqbxGePnSXtfbtVwwQPAjLNEJhXw_bHoYT8Mvz7HbJG4NR6e2BludVIA0hc5m7tUUqlQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ino-Yz4uw71BOB7R7vcqbxGePnSXtfbtVwwQPAjLNEJhXw_bHoYT8Mvz7HbJG4NR6e2BludVIA0hc5m7tUUqlQ== new file mode 100644 index 0000000..93c70da Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ino-Yz4uw71BOB7R7vcqbxGePnSXtfbtVwwQPAjLNEJhXw_bHoYT8Mvz7HbJG4NR6e2BludVIA0hc5m7tUUqlQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iobV8HnZZOESQuRiix6DPW45L_AKTlMPPxI0v-z9J8DE3xA6CAWFoUqPtIVpCr4zudivNao2qBCvsyjRCCRkFg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iobV8HnZZOESQuRiix6DPW45L_AKTlMPPxI0v-z9J8DE3xA6CAWFoUqPtIVpCr4zudivNao2qBCvsyjRCCRkFg== new file mode 100644 index 0000000..19418f0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iobV8HnZZOESQuRiix6DPW45L_AKTlMPPxI0v-z9J8DE3xA6CAWFoUqPtIVpCr4zudivNao2qBCvsyjRCCRkFg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~itYhIXUWiFFz3WVMFwXsic1uW9tqy6b6E_3VChbc5z495orukpjGDWHS0vKg9tAgT683HPh4ouw_VlUprSWmMQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~itYhIXUWiFFz3WVMFwXsic1uW9tqy6b6E_3VChbc5z495orukpjGDWHS0vKg9tAgT683HPh4ouw_VlUprSWmMQ== new file mode 100644 index 0000000..c4402e4 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~itYhIXUWiFFz3WVMFwXsic1uW9tqy6b6E_3VChbc5z495orukpjGDWHS0vKg9tAgT683HPh4ouw_VlUprSWmMQ== @@ -0,0 +1 @@ +[{"type":1,"name":"3D6C5CA7BE3BE685C704BE302E53EC"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iwgAixkdyXdJrLUd8CQ10l2LT9oFPE8bt5_IcTrvKTY__LHpz0qic2CgeamFkF6M8FhP0JRgtPFE7voENRKPzw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iwgAixkdyXdJrLUd8CQ10l2LT9oFPE8bt5_IcTrvKTY__LHpz0qic2CgeamFkF6M8FhP0JRgtPFE7voENRKPzw== new file mode 100644 index 0000000..11e7631 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iwgAixkdyXdJrLUd8CQ10l2LT9oFPE8bt5_IcTrvKTY__LHpz0qic2CgeamFkF6M8FhP0JRgtPFE7voENRKPzw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ixhVjJbZtqgJvySiEuxRGTp7249Wfgd2NrfE9o81H5nH4rVj9YgTSA1h-10dhaw9NaOhBOWTb5u3Q7rAS8JF1A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ixhVjJbZtqgJvySiEuxRGTp7249Wfgd2NrfE9o81H5nH4rVj9YgTSA1h-10dhaw9NaOhBOWTb5u3Q7rAS8JF1A== new file mode 100644 index 0000000..fda579d --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ixhVjJbZtqgJvySiEuxRGTp7249Wfgd2NrfE9o81H5nH4rVj9YgTSA1h-10dhaw9NaOhBOWTb5u3Q7rAS8JF1A== @@ -0,0 +1 @@ +[{"type":2,"name":"26A5368g"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iyHV1Hf7jvmJjxTAefo0vlPUAXzYS6Fd0J_KC0LBwHDS94sKilPK7yVxZLxC1byW9WfBVA4-dLdbvyq8xc1zSw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iyHV1Hf7jvmJjxTAefo0vlPUAXzYS6Fd0J_KC0LBwHDS94sKilPK7yVxZLxC1byW9WfBVA4-dLdbvyq8xc1zSw== new file mode 100644 index 0000000..846d4de Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~iyHV1Hf7jvmJjxTAefo0vlPUAXzYS6Fd0J_KC0LBwHDS94sKilPK7yVxZLxC1byW9WfBVA4-dLdbvyq8xc1zSw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~j15m1F6mdVwbmTZvGwVaR2GYlV3z-OMzcw6OlV0wdqVkj3xlb7O4BudCWsd-ubnsGa0hFCUlFvCDaGla8FFhhg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~j15m1F6mdVwbmTZvGwVaR2GYlV3z-OMzcw6OlV0wdqVkj3xlb7O4BudCWsd-ubnsGa0hFCUlFvCDaGla8FFhhg== new file mode 100644 index 0000000..c377f70 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~j15m1F6mdVwbmTZvGwVaR2GYlV3z-OMzcw6OlV0wdqVkj3xlb7O4BudCWsd-ubnsGa0hFCUlFvCDaGla8FFhhg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~j1BnT7irFIer7sePtBDTHyLoIsm79BQ8koAg4HoRvCrT-uaPK_pwDj7IOySKONP_rWKXTPnz0aivj2v4b6v8Xg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~j1BnT7irFIer7sePtBDTHyLoIsm79BQ8koAg4HoRvCrT-uaPK_pwDj7IOySKONP_rWKXTPnz0aivj2v4b6v8Xg== new file mode 100644 index 0000000..877e3d1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~j1BnT7irFIer7sePtBDTHyLoIsm79BQ8koAg4HoRvCrT-uaPK_pwDj7IOySKONP_rWKXTPnz0aivj2v4b6v8Xg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~j4F4bx-HkjACv2o1ZRezZ4s5CWoiXynqbRa1E6xLt8JViU9YQf068x4rGC7ejrCkW-FxyBhDMgVTL36DtMRbMw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~j4F4bx-HkjACv2o1ZRezZ4s5CWoiXynqbRa1E6xLt8JViU9YQf068x4rGC7ejrCkW-FxyBhDMgVTL36DtMRbMw== new file mode 100644 index 0000000..8af1c89 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~j4F4bx-HkjACv2o1ZRezZ4s5CWoiXynqbRa1E6xLt8JViU9YQf068x4rGC7ejrCkW-FxyBhDMgVTL36DtMRbMw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jAzETn6Wt4PDzSWhd2lTT_4AgGPlz4cU6DeAP0iFMdc_s2qAsOQ9m-Pg9SGUY3IDYPAx73IfHso8Lb3nNu5RHQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jAzETn6Wt4PDzSWhd2lTT_4AgGPlz4cU6DeAP0iFMdc_s2qAsOQ9m-Pg9SGUY3IDYPAx73IfHso8Lb3nNu5RHQ== new file mode 100644 index 0000000..7dfe06e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jAzETn6Wt4PDzSWhd2lTT_4AgGPlz4cU6DeAP0iFMdc_s2qAsOQ9m-Pg9SGUY3IDYPAx73IfHso8Lb3nNu5RHQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jEJruNaZ9jR1DR7Ik33dyCn_QqpDd3jBAwZIlpscWjwKw68wanzZBOKDeuJ5gBqMHlGPbNFnfb-iiqxIlkuMmQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jEJruNaZ9jR1DR7Ik33dyCn_QqpDd3jBAwZIlpscWjwKw68wanzZBOKDeuJ5gBqMHlGPbNFnfb-iiqxIlkuMmQ== new file mode 100644 index 0000000..1a82011 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jEJruNaZ9jR1DR7Ik33dyCn_QqpDd3jBAwZIlpscWjwKw68wanzZBOKDeuJ5gBqMHlGPbNFnfb-iiqxIlkuMmQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jIejGV1vt2wE4SOPwy9kxZ7gS4DGtSFSl1SufaM42BQbbBT2X5f-aATUKvLTS8VutlIkkPf3kymJV8uoJ5jnmQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jIejGV1vt2wE4SOPwy9kxZ7gS4DGtSFSl1SufaM42BQbbBT2X5f-aATUKvLTS8VutlIkkPf3kymJV8uoJ5jnmQ== new file mode 100644 index 0000000..f04d8cf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jIejGV1vt2wE4SOPwy9kxZ7gS4DGtSFSl1SufaM42BQbbBT2X5f-aATUKvLTS8VutlIkkPf3kymJV8uoJ5jnmQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jM7PqJMElKaGq1J87n8R98V5BYUY-uRoamxefcku1La1vITpXqADo9dcbDEMTCaP7Zf7vNEh0Q0s65Fmg2rd5w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jM7PqJMElKaGq1J87n8R98V5BYUY-uRoamxefcku1La1vITpXqADo9dcbDEMTCaP7Zf7vNEh0Q0s65Fmg2rd5w== new file mode 100644 index 0000000..91c04ae Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jM7PqJMElKaGq1J87n8R98V5BYUY-uRoamxefcku1La1vITpXqADo9dcbDEMTCaP7Zf7vNEh0Q0s65Fmg2rd5w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jXveql1T-VdLQ83vBb-gR-GUIV81nEMAg-vLnltV9M1Fz12BQ5JOOeP0ZtUOLvLsrep4R3wKDbOYaZAgWssqMg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jXveql1T-VdLQ83vBb-gR-GUIV81nEMAg-vLnltV9M1Fz12BQ5JOOeP0ZtUOLvLsrep4R3wKDbOYaZAgWssqMg== new file mode 100644 index 0000000..4a169b8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jXveql1T-VdLQ83vBb-gR-GUIV81nEMAg-vLnltV9M1Fz12BQ5JOOeP0ZtUOLvLsrep4R3wKDbOYaZAgWssqMg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~j_AV9FqNy74yRWXc--Yybo1lVR1m5ZockFdWhv742v2F4oVuKDpI2-xGMaJrJccO38avs061-ZhZ3jio979cRg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~j_AV9FqNy74yRWXc--Yybo1lVR1m5ZockFdWhv742v2F4oVuKDpI2-xGMaJrJccO38avs061-ZhZ3jio979cRg== new file mode 100644 index 0000000..59c6756 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~j_AV9FqNy74yRWXc--Yybo1lVR1m5ZockFdWhv742v2F4oVuKDpI2-xGMaJrJccO38avs061-ZhZ3jio979cRg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jcUJOgvFdd80Vv8fLx6junfk9wTCHG73taD721n0laHpYn9e5nxSZXE_ybpbHrij1h-uwzrOrWL7a0_-A5ugtQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jcUJOgvFdd80Vv8fLx6junfk9wTCHG73taD721n0laHpYn9e5nxSZXE_ybpbHrij1h-uwzrOrWL7a0_-A5ugtQ== new file mode 100644 index 0000000..dec44a5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jcUJOgvFdd80Vv8fLx6junfk9wTCHG73taD721n0laHpYn9e5nxSZXE_ybpbHrij1h-uwzrOrWL7a0_-A5ugtQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jiUYNXCnsQK776-3e-9b02gGb1ZhvCFEwGz-698jeY18ys6cQ_79O5EkLFAKgAC_sVEt28n2LbHAr9juipt32w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jiUYNXCnsQK776-3e-9b02gGb1ZhvCFEwGz-698jeY18ys6cQ_79O5EkLFAKgAC_sVEt28n2LbHAr9juipt32w== new file mode 100644 index 0000000..1d9dda4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jiUYNXCnsQK776-3e-9b02gGb1ZhvCFEwGz-698jeY18ys6cQ_79O5EkLFAKgAC_sVEt28n2LbHAr9juipt32w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jkgRk-h9_w0f5agiJ7TiiBvdPyAqxo0qzEkfY7jiy9V8Pl-3Yf8xCRVtwOukusGNeu34zAMHKiuhR46CybNV4A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jkgRk-h9_w0f5agiJ7TiiBvdPyAqxo0qzEkfY7jiy9V8Pl-3Yf8xCRVtwOukusGNeu34zAMHKiuhR46CybNV4A== new file mode 100644 index 0000000..fba588a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~jkgRk-h9_w0f5agiJ7TiiBvdPyAqxo0qzEkfY7jiy9V8Pl-3Yf8xCRVtwOukusGNeu34zAMHKiuhR46CybNV4A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~k0yengSQ9VFrtpeFYTgRqxZxpYH-Y81Cmpfdk12CGb5CA6o0s_Xaixwvp1AJIXfjsy6eJxkJuVSPv65VC52hBw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~k0yengSQ9VFrtpeFYTgRqxZxpYH-Y81Cmpfdk12CGb5CA6o0s_Xaixwvp1AJIXfjsy6eJxkJuVSPv65VC52hBw== new file mode 100644 index 0000000..bea4668 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~k0yengSQ9VFrtpeFYTgRqxZxpYH-Y81Cmpfdk12CGb5CA6o0s_Xaixwvp1AJIXfjsy6eJxkJuVSPv65VC52hBw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kB4K4AKO8AQv1BYGXZ-2KXX77Dqy7ng9FyYaVWnd0GXCLozQyMl66btuXLf7YxH3DAE0flU59x6l1xdqI5OuiQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kB4K4AKO8AQv1BYGXZ-2KXX77Dqy7ng9FyYaVWnd0GXCLozQyMl66btuXLf7YxH3DAE0flU59x6l1xdqI5OuiQ== new file mode 100644 index 0000000..8dd0a4a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kB4K4AKO8AQv1BYGXZ-2KXX77Dqy7ng9FyYaVWnd0GXCLozQyMl66btuXLf7YxH3DAE0flU59x6l1xdqI5OuiQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kDppiLfnMkjhbRnB90b510cCzILqWVSqrLpjneuYTH8BjXfRtM4LyL2baQd0JqtW6D1Td58X_f7AIDMAyUxEiA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kDppiLfnMkjhbRnB90b510cCzILqWVSqrLpjneuYTH8BjXfRtM4LyL2baQd0JqtW6D1Td58X_f7AIDMAyUxEiA== new file mode 100644 index 0000000..39156fc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kDppiLfnMkjhbRnB90b510cCzILqWVSqrLpjneuYTH8BjXfRtM4LyL2baQd0JqtW6D1Td58X_f7AIDMAyUxEiA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kETRytTCmD3SQ3MuX5IT1_nbHXZIuwHGHvJG21CHXmKrZQ46tWUWDMX3axca_kkyUeocR4UqXIQkP55y9EAFDg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kETRytTCmD3SQ3MuX5IT1_nbHXZIuwHGHvJG21CHXmKrZQ46tWUWDMX3axca_kkyUeocR4UqXIQkP55y9EAFDg== new file mode 100644 index 0000000..727952f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kETRytTCmD3SQ3MuX5IT1_nbHXZIuwHGHvJG21CHXmKrZQ46tWUWDMX3axca_kkyUeocR4UqXIQkP55y9EAFDg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kVhRzpT89HBq1y0kT7SZxDtwanDxBYWHUbw4a3PGigkP-unEYzi7z3xyMO_-z72D_9biV0Vt6qDPsxGTYO-YSw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kVhRzpT89HBq1y0kT7SZxDtwanDxBYWHUbw4a3PGigkP-unEYzi7z3xyMO_-z72D_9biV0Vt6qDPsxGTYO-YSw== new file mode 100644 index 0000000..642bf8f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kVhRzpT89HBq1y0kT7SZxDtwanDxBYWHUbw4a3PGigkP-unEYzi7z3xyMO_-z72D_9biV0Vt6qDPsxGTYO-YSw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ke7zyLFnVC6Ijyj1Sh9PPiFJGLLnGVZQvuWWlGcHIxUdL6rVIyKoGWx7oWgYr1EDXbDvE0uTlSAoqFKTG62GJw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ke7zyLFnVC6Ijyj1Sh9PPiFJGLLnGVZQvuWWlGcHIxUdL6rVIyKoGWx7oWgYr1EDXbDvE0uTlSAoqFKTG62GJw== new file mode 100644 index 0000000..04cdf17 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ke7zyLFnVC6Ijyj1Sh9PPiFJGLLnGVZQvuWWlGcHIxUdL6rVIyKoGWx7oWgYr1EDXbDvE0uTlSAoqFKTG62GJw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~keesJxYAFnqERKKjcFSpj6BBG15IHlwPIky0ZZLfykkP8TAgy6tery28a7qB4IJ-q8o_xZcgGIe7LRw2ZoPJrA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~keesJxYAFnqERKKjcFSpj6BBG15IHlwPIky0ZZLfykkP8TAgy6tery28a7qB4IJ-q8o_xZcgGIe7LRw2ZoPJrA== new file mode 100644 index 0000000..805dd0a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~keesJxYAFnqERKKjcFSpj6BBG15IHlwPIky0ZZLfykkP8TAgy6tery28a7qB4IJ-q8o_xZcgGIe7LRw2ZoPJrA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kfFXNgRvwytSk6ZhIgvMtHm0oPDZR0nNo7Yjr8d_q6GgzYME9yE2D3akk97W-SSRzGKrQgfFOlvp_S1JAvbHsQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kfFXNgRvwytSk6ZhIgvMtHm0oPDZR0nNo7Yjr8d_q6GgzYME9yE2D3akk97W-SSRzGKrQgfFOlvp_S1JAvbHsQ== new file mode 100644 index 0000000..83f3c0d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kfFXNgRvwytSk6ZhIgvMtHm0oPDZR0nNo7Yjr8d_q6GgzYME9yE2D3akk97W-SSRzGKrQgfFOlvp_S1JAvbHsQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kfIygfDJaMLFjhKLNg4yLqFL0No5Esfbmke8moQs1NuXGy_vqoFVz9ubJIsHFmf40qWZM4c3-RtE6I108Uu_7g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kfIygfDJaMLFjhKLNg4yLqFL0No5Esfbmke8moQs1NuXGy_vqoFVz9ubJIsHFmf40qWZM4c3-RtE6I108Uu_7g== new file mode 100644 index 0000000..4e38049 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kfIygfDJaMLFjhKLNg4yLqFL0No5Esfbmke8moQs1NuXGy_vqoFVz9ubJIsHFmf40qWZM4c3-RtE6I108Uu_7g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kjXa0wOu1iJ8o_yi2gICoErlACXOjMoXP51kg-7RZksmeGhTidC73gOsGxkTXIK5VN4XsdxFMxl4aZ4Lt_TPEg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kjXa0wOu1iJ8o_yi2gICoErlACXOjMoXP51kg-7RZksmeGhTidC73gOsGxkTXIK5VN4XsdxFMxl4aZ4Lt_TPEg== new file mode 100644 index 0000000..fc1989c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kjXa0wOu1iJ8o_yi2gICoErlACXOjMoXP51kg-7RZksmeGhTidC73gOsGxkTXIK5VN4XsdxFMxl4aZ4Lt_TPEg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kwEorJOqAvQLdoCyyPaOSQwUuuI1NQUVgWlLIr2O96joSRyGiuIfqcrpVXXnALJ0U_wHxeXKchVxxeaXf9ZIzw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kwEorJOqAvQLdoCyyPaOSQwUuuI1NQUVgWlLIr2O96joSRyGiuIfqcrpVXXnALJ0U_wHxeXKchVxxeaXf9ZIzw== new file mode 100644 index 0000000..0f32228 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kwEorJOqAvQLdoCyyPaOSQwUuuI1NQUVgWlLIr2O96joSRyGiuIfqcrpVXXnALJ0U_wHxeXKchVxxeaXf9ZIzw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kwoBoSGr4OVyQVjxNTON0_6lykREIWEDsmdnjp-MMilV9xhhJKcbOnZnptaXCEHotQs8G_vzCPWoYyLY531jeA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kwoBoSGr4OVyQVjxNTON0_6lykREIWEDsmdnjp-MMilV9xhhJKcbOnZnptaXCEHotQs8G_vzCPWoYyLY531jeA== new file mode 100644 index 0000000..38d1066 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kwoBoSGr4OVyQVjxNTON0_6lykREIWEDsmdnjp-MMilV9xhhJKcbOnZnptaXCEHotQs8G_vzCPWoYyLY531jeA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kxhobuo2FtZDZGMeGGuKQPDXd7KBl1KRe8dN50bAt_Ku7PPVFxt2IkS7LFCRVsj3n-rxRB8BkrnGbUcVZlhhhg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kxhobuo2FtZDZGMeGGuKQPDXd7KBl1KRe8dN50bAt_Ku7PPVFxt2IkS7LFCRVsj3n-rxRB8BkrnGbUcVZlhhhg== new file mode 100644 index 0000000..7d572ae Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~kxhobuo2FtZDZGMeGGuKQPDXd7KBl1KRe8dN50bAt_Ku7PPVFxt2IkS7LFCRVsj3n-rxRB8BkrnGbUcVZlhhhg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~l22lFanV6z4wRvtsIB4qHY3uUbsWGulds11ir4U1h8Y3l2Mkxha1uOuQ2QSHpOmq0E0FydM_IKAJlebsS6GCwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~l22lFanV6z4wRvtsIB4qHY3uUbsWGulds11ir4U1h8Y3l2Mkxha1uOuQ2QSHpOmq0E0FydM_IKAJlebsS6GCwg== new file mode 100644 index 0000000..ce84a01 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~l22lFanV6z4wRvtsIB4qHY3uUbsWGulds11ir4U1h8Y3l2Mkxha1uOuQ2QSHpOmq0E0FydM_IKAJlebsS6GCwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~l6PnwE4gcPQzTye2JekhT0jUL83TEMiVt3noJKMwlAuq1vBBXbgFXX3-E8hUqBKSjRgWtDjYOu50pzCXgfprbw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~l6PnwE4gcPQzTye2JekhT0jUL83TEMiVt3noJKMwlAuq1vBBXbgFXX3-E8hUqBKSjRgWtDjYOu50pzCXgfprbw== new file mode 100644 index 0000000..7e3019b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~l6PnwE4gcPQzTye2JekhT0jUL83TEMiVt3noJKMwlAuq1vBBXbgFXX3-E8hUqBKSjRgWtDjYOu50pzCXgfprbw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lJaKLiV7_zfei242LGJ7Wkqd7NSXkk4Xj0MV2yVI7Jxj3ny8V45gXak5Z7ck-pmdoKEvnnhAp3_BnVxdZK5sYA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lJaKLiV7_zfei242LGJ7Wkqd7NSXkk4Xj0MV2yVI7Jxj3ny8V45gXak5Z7ck-pmdoKEvnnhAp3_BnVxdZK5sYA== new file mode 100644 index 0000000..cc86287 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lJaKLiV7_zfei242LGJ7Wkqd7NSXkk4Xj0MV2yVI7Jxj3ny8V45gXak5Z7ck-pmdoKEvnnhAp3_BnVxdZK5sYA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lQCJwFBtfYIP9tSGEqcYTh3PYIkrD0h_oFtLL6mSnd1APW1mJ2yDe4fVfqcStHkTMEykCOXCLGJQHcXOfKnM_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lQCJwFBtfYIP9tSGEqcYTh3PYIkrD0h_oFtLL6mSnd1APW1mJ2yDe4fVfqcStHkTMEykCOXCLGJQHcXOfKnM_A== new file mode 100644 index 0000000..47a4483 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lQCJwFBtfYIP9tSGEqcYTh3PYIkrD0h_oFtLL6mSnd1APW1mJ2yDe4fVfqcStHkTMEykCOXCLGJQHcXOfKnM_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lRgPIFLJBEPIqCmRE-2PtyA8dt0NXiPYkiOCAzvEDKr0JKsMyIlMrH7q2ZeTrlCcZdSZwfrQ7sONeGXn_u76KA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lRgPIFLJBEPIqCmRE-2PtyA8dt0NXiPYkiOCAzvEDKr0JKsMyIlMrH7q2ZeTrlCcZdSZwfrQ7sONeGXn_u76KA== new file mode 100644 index 0000000..13093bb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lRgPIFLJBEPIqCmRE-2PtyA8dt0NXiPYkiOCAzvEDKr0JKsMyIlMrH7q2ZeTrlCcZdSZwfrQ7sONeGXn_u76KA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lRtFwZNhmX49tKBdXH8RWcjsoySqOKeRHNi-37nnxI1U0mlrv-0iSGf7S3V1Csrr6X9Z3I6R8TVXDaUSzi_Wwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lRtFwZNhmX49tKBdXH8RWcjsoySqOKeRHNi-37nnxI1U0mlrv-0iSGf7S3V1Csrr6X9Z3I6R8TVXDaUSzi_Wwg== new file mode 100644 index 0000000..f20c313 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lRtFwZNhmX49tKBdXH8RWcjsoySqOKeRHNi-37nnxI1U0mlrv-0iSGf7S3V1Csrr6X9Z3I6R8TVXDaUSzi_Wwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lVjVCNj9mNzvCggjjR5QH20Mk7o5BF_Gp4F4qRIvYeto9Jy8taad2ZhsHzgYZBiZLXDTa2gewjcHKE0pjDd2dQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lVjVCNj9mNzvCggjjR5QH20Mk7o5BF_Gp4F4qRIvYeto9Jy8taad2ZhsHzgYZBiZLXDTa2gewjcHKE0pjDd2dQ== new file mode 100644 index 0000000..64b3cd4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lVjVCNj9mNzvCggjjR5QH20Mk7o5BF_Gp4F4qRIvYeto9Jy8taad2ZhsHzgYZBiZLXDTa2gewjcHKE0pjDd2dQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lYkqIuKja3btWCoIOCgnxiCPLyd3IU6UR4-SJNCiwEnJYlOMXqpCZmKEbM491dU_Pl6bY3XhCk0smYRgHLCqQQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lYkqIuKja3btWCoIOCgnxiCPLyd3IU6UR4-SJNCiwEnJYlOMXqpCZmKEbM491dU_Pl6bY3XhCk0smYRgHLCqQQ== new file mode 100644 index 0000000..035f2f9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lYkqIuKja3btWCoIOCgnxiCPLyd3IU6UR4-SJNCiwEnJYlOMXqpCZmKEbM491dU_Pl6bY3XhCk0smYRgHLCqQQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ldQ_UQ85fNIhopuR_ZP9TXAVV_g6EgXaE2ClLhlfOZ46X9efKLmLBu22aMeIkNm69dIb0SX5B5ty9bUloPEABg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ldQ_UQ85fNIhopuR_ZP9TXAVV_g6EgXaE2ClLhlfOZ46X9efKLmLBu22aMeIkNm69dIb0SX5B5ty9bUloPEABg== new file mode 100644 index 0000000..2764dab Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ldQ_UQ85fNIhopuR_ZP9TXAVV_g6EgXaE2ClLhlfOZ46X9efKLmLBu22aMeIkNm69dIb0SX5B5ty9bUloPEABg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~letMHy_NcbPx-ZuHn9TaiLL29wbRacA5fh_ezjgkuy3vypGyWplHQG_MTO3BrPawIPhRt24ZJN-LAyLEq7G7BQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~letMHy_NcbPx-ZuHn9TaiLL29wbRacA5fh_ezjgkuy3vypGyWplHQG_MTO3BrPawIPhRt24ZJN-LAyLEq7G7BQ== new file mode 100644 index 0000000..303d69e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~letMHy_NcbPx-ZuHn9TaiLL29wbRacA5fh_ezjgkuy3vypGyWplHQG_MTO3BrPawIPhRt24ZJN-LAyLEq7G7BQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lgd4bmBdglk-43kJPEMpcQVlGKn57wC2EEw29XZKUC4i0nJQ23-cAr57Pf3KGu4gNV6_kz0ApZkisQcU9sFssw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lgd4bmBdglk-43kJPEMpcQVlGKn57wC2EEw29XZKUC4i0nJQ23-cAr57Pf3KGu4gNV6_kz0ApZkisQcU9sFssw== new file mode 100644 index 0000000..568c9ca Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lgd4bmBdglk-43kJPEMpcQVlGKn57wC2EEw29XZKUC4i0nJQ23-cAr57Pf3KGu4gNV6_kz0ApZkisQcU9sFssw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ljIofnVnFHAs9QRcU5y_MDb5yc3vlpiL-aBCmLabCFueuFVGWjP9a5ElJAXD6R8Uu4_zDiOeR5CnCO1odP4c4Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ljIofnVnFHAs9QRcU5y_MDb5yc3vlpiL-aBCmLabCFueuFVGWjP9a5ElJAXD6R8Uu4_zDiOeR5CnCO1odP4c4Q== new file mode 100644 index 0000000..546419b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ljIofnVnFHAs9QRcU5y_MDb5yc3vlpiL-aBCmLabCFueuFVGWjP9a5ElJAXD6R8Uu4_zDiOeR5CnCO1odP4c4Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~llbCnAmJnFe9HyyV_ykgR0_TrHKYASFblJ3Pvhm5PywJuywmxcXoJ4lrCMwDBPjIBgtUh0umkzKxrLU4EI6MyA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~llbCnAmJnFe9HyyV_ykgR0_TrHKYASFblJ3Pvhm5PywJuywmxcXoJ4lrCMwDBPjIBgtUh0umkzKxrLU4EI6MyA== new file mode 100644 index 0000000..0eec772 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~llbCnAmJnFe9HyyV_ykgR0_TrHKYASFblJ3Pvhm5PywJuywmxcXoJ4lrCMwDBPjIBgtUh0umkzKxrLU4EI6MyA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lm2mTFuhvad_1rAV0FUiY7o0PArAdqQZkaWMdH55wzp5nyeSomDlrcddp1XVwLQb7OjAzWRANBLBrBJG2F3e1Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lm2mTFuhvad_1rAV0FUiY7o0PArAdqQZkaWMdH55wzp5nyeSomDlrcddp1XVwLQb7OjAzWRANBLBrBJG2F3e1Q== new file mode 100644 index 0000000..3917e13 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lm2mTFuhvad_1rAV0FUiY7o0PArAdqQZkaWMdH55wzp5nyeSomDlrcddp1XVwLQb7OjAzWRANBLBrBJG2F3e1Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~loifPxt5nViy0TpznjqMGydqhj2jrDDwoJTUQk3PVy5vH_JkAU4NZzzHwhryUtnITYw_7Vv0_9C0wRmEWaUKCQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~loifPxt5nViy0TpznjqMGydqhj2jrDDwoJTUQk3PVy5vH_JkAU4NZzzHwhryUtnITYw_7Vv0_9C0wRmEWaUKCQ== new file mode 100644 index 0000000..cb4fc09 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~loifPxt5nViy0TpznjqMGydqhj2jrDDwoJTUQk3PVy5vH_JkAU4NZzzHwhryUtnITYw_7Vv0_9C0wRmEWaUKCQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~luEucg3AdxK86cY47OjHmS5qKTnNyXMaNkJzn3jKgA-PkCmvZIJdd1su6FCPevgDks6szeHg9m6rC5SWDOYd5A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~luEucg3AdxK86cY47OjHmS5qKTnNyXMaNkJzn3jKgA-PkCmvZIJdd1su6FCPevgDks6szeHg9m6rC5SWDOYd5A== new file mode 100644 index 0000000..cb288af Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~luEucg3AdxK86cY47OjHmS5qKTnNyXMaNkJzn3jKgA-PkCmvZIJdd1su6FCPevgDks6szeHg9m6rC5SWDOYd5A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lyQxRpsiMT_wQL07R8os4GEHV1OZ_uhSOfdiVUebhVvAbzZfx41g5-pIE2tGweylUfGI_RjlOuag2WvHZdqhlg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lyQxRpsiMT_wQL07R8os4GEHV1OZ_uhSOfdiVUebhVvAbzZfx41g5-pIE2tGweylUfGI_RjlOuag2WvHZdqhlg== new file mode 100644 index 0000000..a2a0692 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~lyQxRpsiMT_wQL07R8os4GEHV1OZ_uhSOfdiVUebhVvAbzZfx41g5-pIE2tGweylUfGI_RjlOuag2WvHZdqhlg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~m3-uqd5uft4rCx0IWPm3w_Z-zMHy5zgIsoIWPBfy2bjYtTW4I9QqiW_vxiyQ48WNVmY7IoHT92mlQE5bs8SeBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~m3-uqd5uft4rCx0IWPm3w_Z-zMHy5zgIsoIWPBfy2bjYtTW4I9QqiW_vxiyQ48WNVmY7IoHT92mlQE5bs8SeBA== new file mode 100644 index 0000000..eea1972 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~m3-uqd5uft4rCx0IWPm3w_Z-zMHy5zgIsoIWPBfy2bjYtTW4I9QqiW_vxiyQ48WNVmY7IoHT92mlQE5bs8SeBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~m3wx4E1DMpugu4MrAo66SX3NPips1Nf4zHU-krks07_lvw3_HCsq68MKlNA3GH0F65TT8OWc_TqPFKfvnTdCbQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~m3wx4E1DMpugu4MrAo66SX3NPips1Nf4zHU-krks07_lvw3_HCsq68MKlNA3GH0F65TT8OWc_TqPFKfvnTdCbQ== new file mode 100644 index 0000000..31d1743 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~m3wx4E1DMpugu4MrAo66SX3NPips1Nf4zHU-krks07_lvw3_HCsq68MKlNA3GH0F65TT8OWc_TqPFKfvnTdCbQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mPcIuJoqFhui5affJxCzDHpjoeEtHsPYrf9rH95AvakWN8BHN7fYZCNbH8NgcYd-Bu3S-mYfFuQTRAIXHCAUpQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mPcIuJoqFhui5affJxCzDHpjoeEtHsPYrf9rH95AvakWN8BHN7fYZCNbH8NgcYd-Bu3S-mYfFuQTRAIXHCAUpQ== new file mode 100644 index 0000000..344cb47 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mPcIuJoqFhui5affJxCzDHpjoeEtHsPYrf9rH95AvakWN8BHN7fYZCNbH8NgcYd-Bu3S-mYfFuQTRAIXHCAUpQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mQz_006w_wA0jwwGS7_Yinq8Z0kOvfg0wgDbzL6LQsZ0Ii02MwGqxhzw3WwFVcBnx2Ziy-WHGLcqojCb2l1ZZw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mQz_006w_wA0jwwGS7_Yinq8Z0kOvfg0wgDbzL6LQsZ0Ii02MwGqxhzw3WwFVcBnx2Ziy-WHGLcqojCb2l1ZZw== new file mode 100644 index 0000000..166aafe Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mQz_006w_wA0jwwGS7_Yinq8Z0kOvfg0wgDbzL6LQsZ0Ii02MwGqxhzw3WwFVcBnx2Ziy-WHGLcqojCb2l1ZZw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mUIBEtga1vC6oYZ1d_XyZ83nYI71akabUbdJYRDlKfMG2qGKXizvFHB5wtJhOeEoXDJudnJnO9_T0hptKPQ-xA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mUIBEtga1vC6oYZ1d_XyZ83nYI71akabUbdJYRDlKfMG2qGKXizvFHB5wtJhOeEoXDJudnJnO9_T0hptKPQ-xA== new file mode 100644 index 0000000..c5aa455 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mUIBEtga1vC6oYZ1d_XyZ83nYI71akabUbdJYRDlKfMG2qGKXizvFHB5wtJhOeEoXDJudnJnO9_T0hptKPQ-xA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~m_9sp_NAkJUkis7ee-dAo1f57V8rzGoB8mxZ_lIBW6t3_OHFEWgUiJBkvaCXYoB3Jy4eFxsIEUdcz27s1v_OcQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~m_9sp_NAkJUkis7ee-dAo1f57V8rzGoB8mxZ_lIBW6t3_OHFEWgUiJBkvaCXYoB3Jy4eFxsIEUdcz27s1v_OcQ== new file mode 100644 index 0000000..539d31a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~m_9sp_NAkJUkis7ee-dAo1f57V8rzGoB8mxZ_lIBW6t3_OHFEWgUiJBkvaCXYoB3Jy4eFxsIEUdcz27s1v_OcQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mjTboebqz_-bVN0tiHyk2DkOdPcYoRqkTPKHKD6EGyiXPWHRN3-X1_1j-oATaHxk0jws3c9vLjWmsCzPBcj62w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mjTboebqz_-bVN0tiHyk2DkOdPcYoRqkTPKHKD6EGyiXPWHRN3-X1_1j-oATaHxk0jws3c9vLjWmsCzPBcj62w== new file mode 100644 index 0000000..0c36b33 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mjTboebqz_-bVN0tiHyk2DkOdPcYoRqkTPKHKD6EGyiXPWHRN3-X1_1j-oATaHxk0jws3c9vLjWmsCzPBcj62w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mllRaB0G3phuj12mRpu8dskGDn9pKwRzKb4R3dCgYsNil6gGeCG46xyu8gOOS5uaEDqRnSaEbSPMQPOYcx2EJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mllRaB0G3phuj12mRpu8dskGDn9pKwRzKb4R3dCgYsNil6gGeCG46xyu8gOOS5uaEDqRnSaEbSPMQPOYcx2EJg== new file mode 100644 index 0000000..27f9ed1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mllRaB0G3phuj12mRpu8dskGDn9pKwRzKb4R3dCgYsNil6gGeCG46xyu8gOOS5uaEDqRnSaEbSPMQPOYcx2EJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mmald-qJqQENHq0DsQLKjLQ-KDfYNpnex9ALE81_uTDXvakEubbsMo7VZbsTx2jkYnIRqIuALLU7hZ4Irr9nhQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mmald-qJqQENHq0DsQLKjLQ-KDfYNpnex9ALE81_uTDXvakEubbsMo7VZbsTx2jkYnIRqIuALLU7hZ4Irr9nhQ== new file mode 100644 index 0000000..22d81a5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mmald-qJqQENHq0DsQLKjLQ-KDfYNpnex9ALE81_uTDXvakEubbsMo7VZbsTx2jkYnIRqIuALLU7hZ4Irr9nhQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~moRLSuV7omeVx4ORE7fZ9U-CouZo-jFmKapCvLhe-8bYW5vCRu80H8Lu9vjZ5LOGlkYIOGK7JRIj8hOTGOs63Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~moRLSuV7omeVx4ORE7fZ9U-CouZo-jFmKapCvLhe-8bYW5vCRu80H8Lu9vjZ5LOGlkYIOGK7JRIj8hOTGOs63Q== new file mode 100644 index 0000000..9934326 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~moRLSuV7omeVx4ORE7fZ9U-CouZo-jFmKapCvLhe-8bYW5vCRu80H8Lu9vjZ5LOGlkYIOGK7JRIj8hOTGOs63Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mqQseJfv4pHNI1pDt1xIJbalKazV6vNbi_aKXHq-rNDcfKT3EuWLnBtTaaDdFT1UI9TZdmUVwWsKOMGdaV7I9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mqQseJfv4pHNI1pDt1xIJbalKazV6vNbi_aKXHq-rNDcfKT3EuWLnBtTaaDdFT1UI9TZdmUVwWsKOMGdaV7I9A== new file mode 100644 index 0000000..44fb4af Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~mqQseJfv4pHNI1pDt1xIJbalKazV6vNbi_aKXHq-rNDcfKT3EuWLnBtTaaDdFT1UI9TZdmUVwWsKOMGdaV7I9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~msT5bogPmDs_i0a5r_76Xq1YTJIPWUL2eI5OkuCXSQMGUl-5Vl9_EUOB6TiTIb2PzMYhc8weD7FBIpoZngvPgg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~msT5bogPmDs_i0a5r_76Xq1YTJIPWUL2eI5OkuCXSQMGUl-5Vl9_EUOB6TiTIb2PzMYhc8weD7FBIpoZngvPgg== new file mode 100644 index 0000000..56a9d67 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~msT5bogPmDs_i0a5r_76Xq1YTJIPWUL2eI5OkuCXSQMGUl-5Vl9_EUOB6TiTIb2PzMYhc8weD7FBIpoZngvPgg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~muPVxhT5-sYByGKMC0t2H3MlRuQwiSHcFcuor7l0P8CLc7R8qQbJeTER7guxbPZhic330GGBpKQVGrcTKUG-3w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~muPVxhT5-sYByGKMC0t2H3MlRuQwiSHcFcuor7l0P8CLc7R8qQbJeTER7guxbPZhic330GGBpKQVGrcTKUG-3w== new file mode 100644 index 0000000..3560506 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~muPVxhT5-sYByGKMC0t2H3MlRuQwiSHcFcuor7l0P8CLc7R8qQbJeTER7guxbPZhic330GGBpKQVGrcTKUG-3w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~n0xmNd7vvEj9zwmxlVSH4_qsr41_eMkVtBIQhWR602l-TBG-BFaS05hBeEWgmABhOFKDaszyL-5F9apl6kYvuA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~n0xmNd7vvEj9zwmxlVSH4_qsr41_eMkVtBIQhWR602l-TBG-BFaS05hBeEWgmABhOFKDaszyL-5F9apl6kYvuA== new file mode 100644 index 0000000..d963ebe Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~n0xmNd7vvEj9zwmxlVSH4_qsr41_eMkVtBIQhWR602l-TBG-BFaS05hBeEWgmABhOFKDaszyL-5F9apl6kYvuA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~n7nK9X-Zm5BQVcmlRSshweXYRPGB4-lwH4fCXzOn-Fk4xEhAcZLNTN_kbtg96ZRAil951P2WOaV--0ZF9c1M2Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~n7nK9X-Zm5BQVcmlRSshweXYRPGB4-lwH4fCXzOn-Fk4xEhAcZLNTN_kbtg96ZRAil951P2WOaV--0ZF9c1M2Q== new file mode 100644 index 0000000..3fbe06f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~n7nK9X-Zm5BQVcmlRSshweXYRPGB4-lwH4fCXzOn-Fk4xEhAcZLNTN_kbtg96ZRAil951P2WOaV--0ZF9c1M2Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nAlIErRhNXkLPo2aUGObBhhTLwVSqT7LBznbCvhD-2UkCUv6UeiTTxFd4BNF0crrJYUwuIrIG80FwPdPU4IRNA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nAlIErRhNXkLPo2aUGObBhhTLwVSqT7LBznbCvhD-2UkCUv6UeiTTxFd4BNF0crrJYUwuIrIG80FwPdPU4IRNA== new file mode 100644 index 0000000..9acb67c --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nAlIErRhNXkLPo2aUGObBhhTLwVSqT7LBznbCvhD-2UkCUv6UeiTTxFd4BNF0crrJYUwuIrIG80FwPdPU4IRNA== @@ -0,0 +1 @@ +[{"type":1,"name":"2080F533083370A92AFA1C01D2FDAC"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nApcrDYC3ex48AS0EeOIRgiaSVUUPGyaYKM4FxXhmktkXg0GobztuYcvRHOkh1y5yHBY67ZD4G0l2ZY5NmTShg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nApcrDYC3ex48AS0EeOIRgiaSVUUPGyaYKM4FxXhmktkXg0GobztuYcvRHOkh1y5yHBY67ZD4G0l2ZY5NmTShg== new file mode 100644 index 0000000..b04a440 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nApcrDYC3ex48AS0EeOIRgiaSVUUPGyaYKM4FxXhmktkXg0GobztuYcvRHOkh1y5yHBY67ZD4G0l2ZY5NmTShg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nDV0g3IRDaLo-GZJCakUXfMKuE4dQ6jRYCKaavOj_BXJUL_nyHroqTuFL741FBUk89KNsKfzUX3lIj8eBIO6nw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nDV0g3IRDaLo-GZJCakUXfMKuE4dQ6jRYCKaavOj_BXJUL_nyHroqTuFL741FBUk89KNsKfzUX3lIj8eBIO6nw== new file mode 100644 index 0000000..495ec2e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nDV0g3IRDaLo-GZJCakUXfMKuE4dQ6jRYCKaavOj_BXJUL_nyHroqTuFL741FBUk89KNsKfzUX3lIj8eBIO6nw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nKihBqBDQpaQB5r80LaQXhlMeEaxHql49l0ng-VAztNXDDer-4J5pVmw21eohozxQoeb9kH04TmIs5FkPPXdBw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nKihBqBDQpaQB5r80LaQXhlMeEaxHql49l0ng-VAztNXDDer-4J5pVmw21eohozxQoeb9kH04TmIs5FkPPXdBw== new file mode 100644 index 0000000..a690303 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nKihBqBDQpaQB5r80LaQXhlMeEaxHql49l0ng-VAztNXDDer-4J5pVmw21eohozxQoeb9kH04TmIs5FkPPXdBw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nP_vbXNXBaACeCXms_MMYlVeulhZE19s_GmKe2QRAClbcR4731l-9yEUSUE9zKUps-QwxD6MqV9kZ4FjV37-Tg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nP_vbXNXBaACeCXms_MMYlVeulhZE19s_GmKe2QRAClbcR4731l-9yEUSUE9zKUps-QwxD6MqV9kZ4FjV37-Tg== new file mode 100644 index 0000000..f2fc0e0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nP_vbXNXBaACeCXms_MMYlVeulhZE19s_GmKe2QRAClbcR4731l-9yEUSUE9zKUps-QwxD6MqV9kZ4FjV37-Tg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nWjdW5kNJ_JuepWK0taI-4je2cNDJzRj-F2T-VPjNy1ua1r-pkboaaP0AJw4S2dRBlOniMBR7G2f-_Z58-TgPw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nWjdW5kNJ_JuepWK0taI-4je2cNDJzRj-F2T-VPjNy1ua1r-pkboaaP0AJw4S2dRBlOniMBR7G2f-_Z58-TgPw== new file mode 100644 index 0000000..3b54aec Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nWjdW5kNJ_JuepWK0taI-4je2cNDJzRj-F2T-VPjNy1ua1r-pkboaaP0AJw4S2dRBlOniMBR7G2f-_Z58-TgPw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nXPTrQJnTQlowTB0pCVJwd1v-WMzt1sv0y_FZzjCpcSPsoDWft0l540U9zJutlP1AZHYz1M0SPTJaKLoywVTug== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nXPTrQJnTQlowTB0pCVJwd1v-WMzt1sv0y_FZzjCpcSPsoDWft0l540U9zJutlP1AZHYz1M0SPTJaKLoywVTug== new file mode 100644 index 0000000..147027c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nXPTrQJnTQlowTB0pCVJwd1v-WMzt1sv0y_FZzjCpcSPsoDWft0l540U9zJutlP1AZHYz1M0SPTJaKLoywVTug== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nelYYCwRKwmdcZcD4kEkj0QkH08QddYFqLPwRh7bQEeddLsxsR7XCauT7yfQ_FTYb5thiEGgL7TpqB0DDDR0lw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nelYYCwRKwmdcZcD4kEkj0QkH08QddYFqLPwRh7bQEeddLsxsR7XCauT7yfQ_FTYb5thiEGgL7TpqB0DDDR0lw== new file mode 100644 index 0000000..fe6a3f6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nelYYCwRKwmdcZcD4kEkj0QkH08QddYFqLPwRh7bQEeddLsxsR7XCauT7yfQ_FTYb5thiEGgL7TpqB0DDDR0lw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nh1YBC1VxR0axIqITm5PMvahpJIdX4SwQWapl2iaUy1xoAy1GwsILQkKouHm4nUwNrW7Ojxu5lwoBU6Rr4OyQA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nh1YBC1VxR0axIqITm5PMvahpJIdX4SwQWapl2iaUy1xoAy1GwsILQkKouHm4nUwNrW7Ojxu5lwoBU6Rr4OyQA== new file mode 100644 index 0000000..302ba02 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nh1YBC1VxR0axIqITm5PMvahpJIdX4SwQWapl2iaUy1xoAy1GwsILQkKouHm4nUwNrW7Ojxu5lwoBU6Rr4OyQA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nhbu_762X6gkb6okchvrxPIgZgHUHvVF-b6IIGqublFHueybychbveGmls8o5DNnYVZcBUChvELMAXpG0c7alQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nhbu_762X6gkb6okchvrxPIgZgHUHvVF-b6IIGqublFHueybychbveGmls8o5DNnYVZcBUChvELMAXpG0c7alQ== new file mode 100644 index 0000000..32773fb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nhbu_762X6gkb6okchvrxPIgZgHUHvVF-b6IIGqublFHueybychbveGmls8o5DNnYVZcBUChvELMAXpG0c7alQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nnJpKZVeZvu-NY7PH31CzlKTilCXcJj9UXZkSdHJEoXltevk9cU0MZLnYHd2yN7KLzoO_LpXgAM1a7kqr90SBg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nnJpKZVeZvu-NY7PH31CzlKTilCXcJj9UXZkSdHJEoXltevk9cU0MZLnYHd2yN7KLzoO_LpXgAM1a7kqr90SBg== new file mode 100644 index 0000000..2cd1527 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nnJpKZVeZvu-NY7PH31CzlKTilCXcJj9UXZkSdHJEoXltevk9cU0MZLnYHd2yN7KLzoO_LpXgAM1a7kqr90SBg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nzqMboZdqFP4Lga56F1e9QhzyNz8t5s3Gj5HCH6P7_NuUWNt8h9JVXQLhCOmJ377z5TZ9CeszQzhqKId39WShA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nzqMboZdqFP4Lga56F1e9QhzyNz8t5s3Gj5HCH6P7_NuUWNt8h9JVXQLhCOmJ377z5TZ9CeszQzhqKId39WShA== new file mode 100644 index 0000000..fa56b6b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~nzqMboZdqFP4Lga56F1e9QhzyNz8t5s3Gj5HCH6P7_NuUWNt8h9JVXQLhCOmJ377z5TZ9CeszQzhqKId39WShA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~o54oJqhbMpOWoWIdndWdHY7WlbIrXzy9qLrvQ4Wq-Gzs7OypNZua1E9b8-awRmoxBwLiQueudVPgU0iZAkycAA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~o54oJqhbMpOWoWIdndWdHY7WlbIrXzy9qLrvQ4Wq-Gzs7OypNZua1E9b8-awRmoxBwLiQueudVPgU0iZAkycAA== new file mode 100644 index 0000000..a7d1ac4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~o54oJqhbMpOWoWIdndWdHY7WlbIrXzy9qLrvQ4Wq-Gzs7OypNZua1E9b8-awRmoxBwLiQueudVPgU0iZAkycAA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~o8eF3lFirnNKWjW6FNWhUGrxALy-Z2_yuUDRIG7i7M0n-837aTr5dAFuHrzOv2dg_qHM-B9eIE6kQd8smJBt1A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~o8eF3lFirnNKWjW6FNWhUGrxALy-Z2_yuUDRIG7i7M0n-837aTr5dAFuHrzOv2dg_qHM-B9eIE6kQd8smJBt1A== new file mode 100644 index 0000000..74029bb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~o8eF3lFirnNKWjW6FNWhUGrxALy-Z2_yuUDRIG7i7M0n-837aTr5dAFuHrzOv2dg_qHM-B9eIE6kQd8smJBt1A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oF3_fuE3_6xLvRc3wgjBpg-DFXE4Am33SDeiI6rSVyVYLNZBwA62L-6CUZDZYRLpN2WGCRLG1FiauSkALulFqw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oF3_fuE3_6xLvRc3wgjBpg-DFXE4Am33SDeiI6rSVyVYLNZBwA62L-6CUZDZYRLpN2WGCRLG1FiauSkALulFqw== new file mode 100644 index 0000000..2f652fe Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oF3_fuE3_6xLvRc3wgjBpg-DFXE4Am33SDeiI6rSVyVYLNZBwA62L-6CUZDZYRLpN2WGCRLG1FiauSkALulFqw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oH2YCjtzQcFgIgd36L69n4qMmhyOxkAV3nN-08sSPp3BqfbvCQsxCD85Z9p3xMyoAM8Rp213rMDFWlxbgFg4-A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oH2YCjtzQcFgIgd36L69n4qMmhyOxkAV3nN-08sSPp3BqfbvCQsxCD85Z9p3xMyoAM8Rp213rMDFWlxbgFg4-A== new file mode 100644 index 0000000..125e505 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oH2YCjtzQcFgIgd36L69n4qMmhyOxkAV3nN-08sSPp3BqfbvCQsxCD85Z9p3xMyoAM8Rp213rMDFWlxbgFg4-A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oIR9PO3hqRfEHmufRS0r_4cR-5XQaD2sg-0wxfo9GVzxlals52knpyue9IdgwPLiYLdNJjVgUsbSgPc5gJXjjA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oIR9PO3hqRfEHmufRS0r_4cR-5XQaD2sg-0wxfo9GVzxlals52knpyue9IdgwPLiYLdNJjVgUsbSgPc5gJXjjA== new file mode 100644 index 0000000..afaa732 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oIR9PO3hqRfEHmufRS0r_4cR-5XQaD2sg-0wxfo9GVzxlals52knpyue9IdgwPLiYLdNJjVgUsbSgPc5gJXjjA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oKVSxRO8gTdLghDAzSoZK9xoZAsmC8BZrQM77-YALUdU24Utv6Quw2YDgwAykhO5TNHb7lUj9o4liaOwJ6aDww== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oKVSxRO8gTdLghDAzSoZK9xoZAsmC8BZrQM77-YALUdU24Utv6Quw2YDgwAykhO5TNHb7lUj9o4liaOwJ6aDww== new file mode 100644 index 0000000..6d67dcf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oKVSxRO8gTdLghDAzSoZK9xoZAsmC8BZrQM77-YALUdU24Utv6Quw2YDgwAykhO5TNHb7lUj9o4liaOwJ6aDww== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oRMi0sbQLktfDDDGUS-SqBKpdDiD6HCztVES_ShfGr0KVcYENoIq7y9oUSDWL5B_P2gkdtWG8JEsJLxPbdWOZA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oRMi0sbQLktfDDDGUS-SqBKpdDiD6HCztVES_ShfGr0KVcYENoIq7y9oUSDWL5B_P2gkdtWG8JEsJLxPbdWOZA== new file mode 100644 index 0000000..fdd67e3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oRMi0sbQLktfDDDGUS-SqBKpdDiD6HCztVES_ShfGr0KVcYENoIq7y9oUSDWL5B_P2gkdtWG8JEsJLxPbdWOZA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oUqiikBu2Q3MrMlGdtFpZkttwBC4Xmw_xO-ivAgxkwFneW81_54sKbCIhr9tPpQxQ9WRWbqawktuHLVsOZiF7A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oUqiikBu2Q3MrMlGdtFpZkttwBC4Xmw_xO-ivAgxkwFneW81_54sKbCIhr9tPpQxQ9WRWbqawktuHLVsOZiF7A== new file mode 100644 index 0000000..5115bc0 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oUqiikBu2Q3MrMlGdtFpZkttwBC4Xmw_xO-ivAgxkwFneW81_54sKbCIhr9tPpQxQ9WRWbqawktuHLVsOZiF7A== @@ -0,0 +1 @@ +[{"type":1,"name":"E6507DB234B73D76B8DA3A5E19DC6CA3"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oVn5TFBGqaio2mdYeB0ni5z1Nv5SX4zl9-Nid2HOvJUIcOqMgyhbg9xR9RS2HWa08xTqhsjwolMqinlP1PvU8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oVn5TFBGqaio2mdYeB0ni5z1Nv5SX4zl9-Nid2HOvJUIcOqMgyhbg9xR9RS2HWa08xTqhsjwolMqinlP1PvU8Q== new file mode 100644 index 0000000..87c5083 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oVn5TFBGqaio2mdYeB0ni5z1Nv5SX4zl9-Nid2HOvJUIcOqMgyhbg9xR9RS2HWa08xTqhsjwolMqinlP1PvU8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oXH9O9DHxBTa8vFb71i4citqlK73rhkq3CjdwR4cUK-U8CMo1vkxcJlPEkjeitQLvbsYr37lPA5nQAgds4_DLg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oXH9O9DHxBTa8vFb71i4citqlK73rhkq3CjdwR4cUK-U8CMo1vkxcJlPEkjeitQLvbsYr37lPA5nQAgds4_DLg== new file mode 100644 index 0000000..36c958a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oXH9O9DHxBTa8vFb71i4citqlK73rhkq3CjdwR4cUK-U8CMo1vkxcJlPEkjeitQLvbsYr37lPA5nQAgds4_DLg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oZdg3OOc25D6ZrF79DoPYR7TnTDXMPSvnShyt9QfZkt0TO-Xn6syHcCEDyL2IOknS8ceKOU-XmwS6FEY7Aaafg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oZdg3OOc25D6ZrF79DoPYR7TnTDXMPSvnShyt9QfZkt0TO-Xn6syHcCEDyL2IOknS8ceKOU-XmwS6FEY7Aaafg== new file mode 100644 index 0000000..8b053e4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~oZdg3OOc25D6ZrF79DoPYR7TnTDXMPSvnShyt9QfZkt0TO-Xn6syHcCEDyL2IOknS8ceKOU-XmwS6FEY7Aaafg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~omia9fMzORInD8qPIyFKn9U8dlvKqnNUKCoym6tA-gpmtP8zD4Gl0xBrg8-aIdtz9ZATk7hNhb5uF55OP-u_qQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~omia9fMzORInD8qPIyFKn9U8dlvKqnNUKCoym6tA-gpmtP8zD4Gl0xBrg8-aIdtz9ZATk7hNhb5uF55OP-u_qQ== new file mode 100644 index 0000000..bc59c3c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~omia9fMzORInD8qPIyFKn9U8dlvKqnNUKCoym6tA-gpmtP8zD4Gl0xBrg8-aIdtz9ZATk7hNhb5uF55OP-u_qQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ooQnwzgmikLBo4_SeOEJUiNMsUmS0Q4HFD6mSRXMItmJ58D-RBbDsL9gsYr_yfb8yMxHU2lC3aALMyY3qlaUKg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ooQnwzgmikLBo4_SeOEJUiNMsUmS0Q4HFD6mSRXMItmJ58D-RBbDsL9gsYr_yfb8yMxHU2lC3aALMyY3qlaUKg== new file mode 100644 index 0000000..9833ecf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ooQnwzgmikLBo4_SeOEJUiNMsUmS0Q4HFD6mSRXMItmJ58D-RBbDsL9gsYr_yfb8yMxHU2lC3aALMyY3qlaUKg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~osvl4N9z7xsgEnoYHDIzGH8jJZFr15rQL0wPJ0Va_OLwUbXaLAvWWHCDIw7X1nIUPMd8Tmzqi-OfrFB5Hti2Hw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~osvl4N9z7xsgEnoYHDIzGH8jJZFr15rQL0wPJ0Va_OLwUbXaLAvWWHCDIw7X1nIUPMd8Tmzqi-OfrFB5Hti2Hw== new file mode 100644 index 0000000..45e0f59 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~osvl4N9z7xsgEnoYHDIzGH8jJZFr15rQL0wPJ0Va_OLwUbXaLAvWWHCDIw7X1nIUPMd8Tmzqi-OfrFB5Hti2Hw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ou56a-I40JvTJ3ZJhRjbfw9iOspRYr_jf9KCqGn-eh0FcojkwX3Kryp36m41Qbe2RYFD6Vg76m4PCYHKkk2LkQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ou56a-I40JvTJ3ZJhRjbfw9iOspRYr_jf9KCqGn-eh0FcojkwX3Kryp36m41Qbe2RYFD6Vg76m4PCYHKkk2LkQ== new file mode 100644 index 0000000..7740cf6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ou56a-I40JvTJ3ZJhRjbfw9iOspRYr_jf9KCqGn-eh0FcojkwX3Kryp36m41Qbe2RYFD6Vg76m4PCYHKkk2LkQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ouS_YW3M3u5L9_UPwnPA_VK9F8iVQMav05sAAlMhs6TB2VAVEL1KzTkWyx9OASlhB7MIxveyllNJIoqjXLmkBw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ouS_YW3M3u5L9_UPwnPA_VK9F8iVQMav05sAAlMhs6TB2VAVEL1KzTkWyx9OASlhB7MIxveyllNJIoqjXLmkBw== new file mode 100644 index 0000000..3f2f89b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ouS_YW3M3u5L9_UPwnPA_VK9F8iVQMav05sAAlMhs6TB2VAVEL1KzTkWyx9OASlhB7MIxveyllNJIoqjXLmkBw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ov0cibhXmkwCUkI5fqSxvC1SW1vCNmzqg1UyvYmLqi1ZgD_rL5dlw8WEwir3PMdGrbHmg8jxL4Qh7sYyEI9daw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ov0cibhXmkwCUkI5fqSxvC1SW1vCNmzqg1UyvYmLqi1ZgD_rL5dlw8WEwir3PMdGrbHmg8jxL4Qh7sYyEI9daw== new file mode 100644 index 0000000..8c16df9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ov0cibhXmkwCUkI5fqSxvC1SW1vCNmzqg1UyvYmLqi1ZgD_rL5dlw8WEwir3PMdGrbHmg8jxL4Qh7sYyEI9daw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~p3tNTNrbcbSqrVqQMAR12_kZU-gEIPMRT648tgHvkv-MKkDC8REPe0hIafsHXF-IbkXYaTOXYQlIGCZt1RBzgQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~p3tNTNrbcbSqrVqQMAR12_kZU-gEIPMRT648tgHvkv-MKkDC8REPe0hIafsHXF-IbkXYaTOXYQlIGCZt1RBzgQ== new file mode 100644 index 0000000..4e0ed55 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~p3tNTNrbcbSqrVqQMAR12_kZU-gEIPMRT648tgHvkv-MKkDC8REPe0hIafsHXF-IbkXYaTOXYQlIGCZt1RBzgQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~p8tP_he7T3indK1TZsrPoe7yisQvt1FPBCuv_0XfhnHa9YHeZ1Xd0Ur_qFCMeZH693dJ1pBBf48AaoaPLKrOhg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~p8tP_he7T3indK1TZsrPoe7yisQvt1FPBCuv_0XfhnHa9YHeZ1Xd0Ur_qFCMeZH693dJ1pBBf48AaoaPLKrOhg== new file mode 100644 index 0000000..f72e962 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~p8tP_he7T3indK1TZsrPoe7yisQvt1FPBCuv_0XfhnHa9YHeZ1Xd0Ur_qFCMeZH693dJ1pBBf48AaoaPLKrOhg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pBHB8unwdrFfU1HdoobEHBT3SG2yzrFRkao5GIZ3TRxjnZaJfNTd-8pb5x69gnw6V_go7ZLgmzO-XghkXqqc_Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pBHB8unwdrFfU1HdoobEHBT3SG2yzrFRkao5GIZ3TRxjnZaJfNTd-8pb5x69gnw6V_go7ZLgmzO-XghkXqqc_Q== new file mode 100644 index 0000000..f74f1d5 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pBHB8unwdrFfU1HdoobEHBT3SG2yzrFRkao5GIZ3TRxjnZaJfNTd-8pb5x69gnw6V_go7ZLgmzO-XghkXqqc_Q== @@ -0,0 +1 @@ +[{"type":1,"name":"8AC70A35B03AD8BCB36D8D16ECD42A"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pBXr472IVKMMKcomLjL199JVeYxqC5Rc7BzyyUAJ6j-EUmE144fueIPuyNYbQ8WCdEvElACEHNnNWLdNj1SELg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pBXr472IVKMMKcomLjL199JVeYxqC5Rc7BzyyUAJ6j-EUmE144fueIPuyNYbQ8WCdEvElACEHNnNWLdNj1SELg== new file mode 100644 index 0000000..c7c3baf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pBXr472IVKMMKcomLjL199JVeYxqC5Rc7BzyyUAJ6j-EUmE144fueIPuyNYbQ8WCdEvElACEHNnNWLdNj1SELg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pBvod0CDyySzk5UDMbgFHuomxFWU0uELRbikKsgU_DUiudzFSzgQn2zm0sMQ1V5aGc8ZaTe6EFYyH2DPL9xMmw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pBvod0CDyySzk5UDMbgFHuomxFWU0uELRbikKsgU_DUiudzFSzgQn2zm0sMQ1V5aGc8ZaTe6EFYyH2DPL9xMmw== new file mode 100644 index 0000000..84ee142 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pBvod0CDyySzk5UDMbgFHuomxFWU0uELRbikKsgU_DUiudzFSzgQn2zm0sMQ1V5aGc8ZaTe6EFYyH2DPL9xMmw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pCJzAb7c6gqIaQgh1glFowsBM5Ao68zdzMostFN3L6RZI0qx-chEnug5lsQUlCnsjK4Q-eF1czdCHRXN3RcOJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pCJzAb7c6gqIaQgh1glFowsBM5Ao68zdzMostFN3L6RZI0qx-chEnug5lsQUlCnsjK4Q-eF1czdCHRXN3RcOJg== new file mode 100644 index 0000000..3f22944 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pCJzAb7c6gqIaQgh1glFowsBM5Ao68zdzMostFN3L6RZI0qx-chEnug5lsQUlCnsjK4Q-eF1czdCHRXN3RcOJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pL6VRlCi4EoNUMKlOQtIs8ggEOxsx8iCcgxYNfULuPbQT64N5wjVZeDkj2BzpexCMyKE6bhnpfKFuhWpbjEtIQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pL6VRlCi4EoNUMKlOQtIs8ggEOxsx8iCcgxYNfULuPbQT64N5wjVZeDkj2BzpexCMyKE6bhnpfKFuhWpbjEtIQ== new file mode 100644 index 0000000..8bf3767 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pL6VRlCi4EoNUMKlOQtIs8ggEOxsx8iCcgxYNfULuPbQT64N5wjVZeDkj2BzpexCMyKE6bhnpfKFuhWpbjEtIQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pMfzQYxEibNSl0dUujP8kAAzZhHXXM9Yv-Cne-act4PckUdbwmVAx51EWeeHycAI6d5HBYP_Lh7k8_68thcC8w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pMfzQYxEibNSl0dUujP8kAAzZhHXXM9Yv-Cne-act4PckUdbwmVAx51EWeeHycAI6d5HBYP_Lh7k8_68thcC8w== new file mode 100644 index 0000000..aecb2a6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pMfzQYxEibNSl0dUujP8kAAzZhHXXM9Yv-Cne-act4PckUdbwmVAx51EWeeHycAI6d5HBYP_Lh7k8_68thcC8w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pY1LeY9t0vvmbwDU-hrBl80aLTwSNgHalVHykVzBrTGV3JcFG4THf-9R5kjjTlJeYfFU48hDRElMOM8jy8PBag== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pY1LeY9t0vvmbwDU-hrBl80aLTwSNgHalVHykVzBrTGV3JcFG4THf-9R5kjjTlJeYfFU48hDRElMOM8jy8PBag== new file mode 100644 index 0000000..0000a61 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pY1LeY9t0vvmbwDU-hrBl80aLTwSNgHalVHykVzBrTGV3JcFG4THf-9R5kjjTlJeYfFU48hDRElMOM8jy8PBag== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pbSVYdZILdloA1CR6nAcbiZL8tO46alCDRTqKphs1q-Db_MTZCU4Ad-Y7JrE6HoIS5nCon9ssBHR0ZARwmQejg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pbSVYdZILdloA1CR6nAcbiZL8tO46alCDRTqKphs1q-Db_MTZCU4Ad-Y7JrE6HoIS5nCon9ssBHR0ZARwmQejg== new file mode 100644 index 0000000..7c65f46 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pbSVYdZILdloA1CR6nAcbiZL8tO46alCDRTqKphs1q-Db_MTZCU4Ad-Y7JrE6HoIS5nCon9ssBHR0ZARwmQejg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pdIbxz12jQas5gmH6UJQXVA-JI7fi0oj623KXTpjwUyxDdr3tILDpgmmeT9LH_sNFOFuxk-nAduHZhYyi23xWQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pdIbxz12jQas5gmH6UJQXVA-JI7fi0oj623KXTpjwUyxDdr3tILDpgmmeT9LH_sNFOFuxk-nAduHZhYyi23xWQ== new file mode 100644 index 0000000..fe128b5 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pdIbxz12jQas5gmH6UJQXVA-JI7fi0oj623KXTpjwUyxDdr3tILDpgmmeT9LH_sNFOFuxk-nAduHZhYyi23xWQ== @@ -0,0 +1 @@ +[{"type":1,"name":"430C504F6A3CD190ABEA3C12C0C8B6"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pm1dNqKF7Gu5rJMHrEKEf_aGuF5tAjDu5I3hxfFJ-hoxpbt-mNkc9sH-JMkNvgo35Y4s9w-YX_iipsYAkadZLw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pm1dNqKF7Gu5rJMHrEKEf_aGuF5tAjDu5I3hxfFJ-hoxpbt-mNkc9sH-JMkNvgo35Y4s9w-YX_iipsYAkadZLw== new file mode 100644 index 0000000..9b72c08 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pm1dNqKF7Gu5rJMHrEKEf_aGuF5tAjDu5I3hxfFJ-hoxpbt-mNkc9sH-JMkNvgo35Y4s9w-YX_iipsYAkadZLw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~psaJSn8MLgjT933cb468azwo1eAOzMR3q0dVUrPCy45kKJs_UEk490VLghnfNMTN_VHvdDX6TMtbXlK5cPcK_g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~psaJSn8MLgjT933cb468azwo1eAOzMR3q0dVUrPCy45kKJs_UEk490VLghnfNMTN_VHvdDX6TMtbXlK5cPcK_g== new file mode 100644 index 0000000..35498df Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~psaJSn8MLgjT933cb468azwo1eAOzMR3q0dVUrPCy45kKJs_UEk490VLghnfNMTN_VHvdDX6TMtbXlK5cPcK_g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pyiQ0VOE2z4t1MOM946X58irCj-ytwoFLN1fbTbxKcqtNuGVcUyFRocgoU3bFSa7Owwq5z5pNk67lmgljGWqqw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pyiQ0VOE2z4t1MOM946X58irCj-ytwoFLN1fbTbxKcqtNuGVcUyFRocgoU3bFSa7Owwq5z5pNk67lmgljGWqqw== new file mode 100644 index 0000000..1dfe4f1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~pyiQ0VOE2z4t1MOM946X58irCj-ytwoFLN1fbTbxKcqtNuGVcUyFRocgoU3bFSa7Owwq5z5pNk67lmgljGWqqw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~q3rTuvvB3z6poTZjsVoNYOcmo6XzMO60LAxRaNzzd86ex8Jv00Y1NuJ2ciKO4nXcHLaxVelUER_IxqMPDjeyYA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~q3rTuvvB3z6poTZjsVoNYOcmo6XzMO60LAxRaNzzd86ex8Jv00Y1NuJ2ciKO4nXcHLaxVelUER_IxqMPDjeyYA== new file mode 100644 index 0000000..7b420f5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~q3rTuvvB3z6poTZjsVoNYOcmo6XzMO60LAxRaNzzd86ex8Jv00Y1NuJ2ciKO4nXcHLaxVelUER_IxqMPDjeyYA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~q4_K6CFmX1aJi2QKdqEyNzuiXUhCNrLUCgg5DgS9dXbnl5fZ-Pbp2AYnH8xcUXBAf9Zh1H8TvYy0nXKVcfkzQA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~q4_K6CFmX1aJi2QKdqEyNzuiXUhCNrLUCgg5DgS9dXbnl5fZ-Pbp2AYnH8xcUXBAf9Zh1H8TvYy0nXKVcfkzQA== new file mode 100644 index 0000000..6d5578d --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~q4_K6CFmX1aJi2QKdqEyNzuiXUhCNrLUCgg5DgS9dXbnl5fZ-Pbp2AYnH8xcUXBAf9Zh1H8TvYy0nXKVcfkzQA== @@ -0,0 +1 @@ +[{"type":1,"name":"0000000000000078.tracev3"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~q8vTMWBqcmsjoI5omZe-1xPjCjoJRpPqKDgTbNSSF_JejLmqxOualyUeZilMQYuTyZoQFtEAkh71yvmrfevO9Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~q8vTMWBqcmsjoI5omZe-1xPjCjoJRpPqKDgTbNSSF_JejLmqxOualyUeZilMQYuTyZoQFtEAkh71yvmrfevO9Q== new file mode 100644 index 0000000..f9c872d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~q8vTMWBqcmsjoI5omZe-1xPjCjoJRpPqKDgTbNSSF_JejLmqxOualyUeZilMQYuTyZoQFtEAkh71yvmrfevO9Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qA7hv3l7ZTx0MVKD2eSQoa4zY3uG_4dseu0oA9HB0IOldMU4JRybgRJ0Vo0sVh8WjvTNujZI19SnMhEIBPMwww== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qA7hv3l7ZTx0MVKD2eSQoa4zY3uG_4dseu0oA9HB0IOldMU4JRybgRJ0Vo0sVh8WjvTNujZI19SnMhEIBPMwww== new file mode 100644 index 0000000..0ed1c47 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qA7hv3l7ZTx0MVKD2eSQoa4zY3uG_4dseu0oA9HB0IOldMU4JRybgRJ0Vo0sVh8WjvTNujZI19SnMhEIBPMwww== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qEZH1v8fEFHcIl6-DTmemjlJ8O1QwAIbr0Hyco5Uaa3eB3wKO3pyL0YYUeul3U5hmChNB7EZWf9qYJbTSEp0YA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qEZH1v8fEFHcIl6-DTmemjlJ8O1QwAIbr0Hyco5Uaa3eB3wKO3pyL0YYUeul3U5hmChNB7EZWf9qYJbTSEp0YA== new file mode 100644 index 0000000..c8baa4c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qEZH1v8fEFHcIl6-DTmemjlJ8O1QwAIbr0Hyco5Uaa3eB3wKO3pyL0YYUeul3U5hmChNB7EZWf9qYJbTSEp0YA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qJpdKgrfloRZpn1hPAIUSJBWVJH2Xn-rtH2j7OuCG6PK5ace7WN4PvW4MEwKpaERldnhgpep-jXzRC3GFH-_Gw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qJpdKgrfloRZpn1hPAIUSJBWVJH2Xn-rtH2j7OuCG6PK5ace7WN4PvW4MEwKpaERldnhgpep-jXzRC3GFH-_Gw== new file mode 100644 index 0000000..4265ceb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qJpdKgrfloRZpn1hPAIUSJBWVJH2Xn-rtH2j7OuCG6PK5ace7WN4PvW4MEwKpaERldnhgpep-jXzRC3GFH-_Gw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qLRw3I3is6H6OKHihdgV_jtJ-l4vF8bptViVVM-YGFJuqabLnB89R7dPgsxCJQoRuWVAN40faGaL_lxemseJVA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qLRw3I3is6H6OKHihdgV_jtJ-l4vF8bptViVVM-YGFJuqabLnB89R7dPgsxCJQoRuWVAN40faGaL_lxemseJVA== new file mode 100644 index 0000000..68527a9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qLRw3I3is6H6OKHihdgV_jtJ-l4vF8bptViVVM-YGFJuqabLnB89R7dPgsxCJQoRuWVAN40faGaL_lxemseJVA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qMPzPeq0Jjr6UCnTeXsnXKEnVF7PQomkKU4nvTVoCFpuoYAYlh658ch5_rm4Apg9WCaSiTP3MCunWK4YCvNhCA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qMPzPeq0Jjr6UCnTeXsnXKEnVF7PQomkKU4nvTVoCFpuoYAYlh658ch5_rm4Apg9WCaSiTP3MCunWK4YCvNhCA== new file mode 100644 index 0000000..1568b9b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qMPzPeq0Jjr6UCnTeXsnXKEnVF7PQomkKU4nvTVoCFpuoYAYlh658ch5_rm4Apg9WCaSiTP3MCunWK4YCvNhCA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qNGSrMW2HE2TqGiBWEZnKaE2-K12-pDF3P0d1w27QdplYcfYsOe4V3ZMPG1Mq8rRv2qMlWNGVinvYjWRIFbVTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qNGSrMW2HE2TqGiBWEZnKaE2-K12-pDF3P0d1w27QdplYcfYsOe4V3ZMPG1Mq8rRv2qMlWNGVinvYjWRIFbVTw== new file mode 100644 index 0000000..9194f06 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qNGSrMW2HE2TqGiBWEZnKaE2-K12-pDF3P0d1w27QdplYcfYsOe4V3ZMPG1Mq8rRv2qMlWNGVinvYjWRIFbVTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qNn_P3z4kHMZX4p6VjUgJfnFLiSrcdjCpP5Aa31Rdckcc91iGlgvbScnr1DLHbFqnNiGxBzXrXqRyREIbokguw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qNn_P3z4kHMZX4p6VjUgJfnFLiSrcdjCpP5Aa31Rdckcc91iGlgvbScnr1DLHbFqnNiGxBzXrXqRyREIbokguw== new file mode 100644 index 0000000..fd109a1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qNn_P3z4kHMZX4p6VjUgJfnFLiSrcdjCpP5Aa31Rdckcc91iGlgvbScnr1DLHbFqnNiGxBzXrXqRyREIbokguw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qOJ7uFNeKn3eAzfp5uWizgUiXJHPgJ6iq83XrJiP0UPEWCwVFWoHVDXTKGJQJxhQMvoQkx0TCmZ4gJajpeqTXA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qOJ7uFNeKn3eAzfp5uWizgUiXJHPgJ6iq83XrJiP0UPEWCwVFWoHVDXTKGJQJxhQMvoQkx0TCmZ4gJajpeqTXA== new file mode 100644 index 0000000..53babc5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qOJ7uFNeKn3eAzfp5uWizgUiXJHPgJ6iq83XrJiP0UPEWCwVFWoHVDXTKGJQJxhQMvoQkx0TCmZ4gJajpeqTXA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qRGYS-tB3BFwuoFspF772XMJvFlXB2S5bVCEnGlYnj9JxofTmTHW691-sew8mWGnReG3Ecgegfg5HX0YVpIUAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qRGYS-tB3BFwuoFspF772XMJvFlXB2S5bVCEnGlYnj9JxofTmTHW691-sew8mWGnReG3Ecgegfg5HX0YVpIUAg== new file mode 100644 index 0000000..275553f --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qRGYS-tB3BFwuoFspF772XMJvFlXB2S5bVCEnGlYnj9JxofTmTHW691-sew8mWGnReG3Ecgegfg5HX0YVpIUAg== @@ -0,0 +1 @@ +[{"type":1,"name":"AppConduit.log.0"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qe2pfUwAnkQkHNgDMEALJpu6w_Yw0pufJvcv6IV2CWczN0lelQauSBOFD1GTti3biJl1MCROZWWEYCeuQZ0fXQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qe2pfUwAnkQkHNgDMEALJpu6w_Yw0pufJvcv6IV2CWczN0lelQauSBOFD1GTti3biJl1MCROZWWEYCeuQZ0fXQ== new file mode 100644 index 0000000..32915bc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qe2pfUwAnkQkHNgDMEALJpu6w_Yw0pufJvcv6IV2CWczN0lelQauSBOFD1GTti3biJl1MCROZWWEYCeuQZ0fXQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qf9acs_rG5OmuHXHnb9YHukgt9UVKk-iNwc0Gg13JxAa3i6Fhy1bdw2_zzL1PB3EWJC4IRR8CJGhu66MLXra6g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qf9acs_rG5OmuHXHnb9YHukgt9UVKk-iNwc0Gg13JxAa3i6Fhy1bdw2_zzL1PB3EWJC4IRR8CJGhu66MLXra6g== new file mode 100644 index 0000000..c0097e1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qf9acs_rG5OmuHXHnb9YHukgt9UVKk-iNwc0Gg13JxAa3i6Fhy1bdw2_zzL1PB3EWJC4IRR8CJGhu66MLXra6g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qgN3eenNqKpFoksWNFCxjX6MR2Gjh8Z9Rv-4XsjV9umbEXTMbIX0MKSgtFROaeOb2NB11zG2vfzGXQ-qr1oWww== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qgN3eenNqKpFoksWNFCxjX6MR2Gjh8Z9Rv-4XsjV9umbEXTMbIX0MKSgtFROaeOb2NB11zG2vfzGXQ-qr1oWww== new file mode 100644 index 0000000..ed36625 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qgN3eenNqKpFoksWNFCxjX6MR2Gjh8Z9Rv-4XsjV9umbEXTMbIX0MKSgtFROaeOb2NB11zG2vfzGXQ-qr1oWww== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qif01crgpy8kfuBUv5ijNNHYt-IRLJjWIMrlYLvBJH3OsYBVZFwlYl-i-yAC3HOD3i7oy0AFyKXl-VvqVqauSQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qif01crgpy8kfuBUv5ijNNHYt-IRLJjWIMrlYLvBJH3OsYBVZFwlYl-i-yAC3HOD3i7oy0AFyKXl-VvqVqauSQ== new file mode 100644 index 0000000..e8432e3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qif01crgpy8kfuBUv5ijNNHYt-IRLJjWIMrlYLvBJH3OsYBVZFwlYl-i-yAC3HOD3i7oy0AFyKXl-VvqVqauSQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qifoymvSNuiQSRI-0y6yLbGQBS90cmZUsyUGhbX-OksECU431VYzOzta5sGlCQtg-r2oyrcFK0vrtU-zX8zmkQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qifoymvSNuiQSRI-0y6yLbGQBS90cmZUsyUGhbX-OksECU431VYzOzta5sGlCQtg-r2oyrcFK0vrtU-zX8zmkQ== new file mode 100644 index 0000000..863905f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qifoymvSNuiQSRI-0y6yLbGQBS90cmZUsyUGhbX-OksECU431VYzOzta5sGlCQtg-r2oyrcFK0vrtU-zX8zmkQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qk_8IlfmeZUBsiCK0adpusjADIzZXw9seIDz6kXJsG9XBLQKcYX__tIPmBXUWEQtLEQcheolF-yVnti1nkVblw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qk_8IlfmeZUBsiCK0adpusjADIzZXw9seIDz6kXJsG9XBLQKcYX__tIPmBXUWEQtLEQcheolF-yVnti1nkVblw== new file mode 100644 index 0000000..e4c8248 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qk_8IlfmeZUBsiCK0adpusjADIzZXw9seIDz6kXJsG9XBLQKcYX__tIPmBXUWEQtLEQcheolF-yVnti1nkVblw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qrETdQneq3GXjapyHISxEfwJ5BCYHafybW_nPMjSMqZ2PLmyKZG2QpZN_nZIV3MoGwYAqAZEu7E_R3lagyRhdg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qrETdQneq3GXjapyHISxEfwJ5BCYHafybW_nPMjSMqZ2PLmyKZG2QpZN_nZIV3MoGwYAqAZEu7E_R3lagyRhdg== new file mode 100644 index 0000000..9b22001 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~qrETdQneq3GXjapyHISxEfwJ5BCYHafybW_nPMjSMqZ2PLmyKZG2QpZN_nZIV3MoGwYAqAZEu7E_R3lagyRhdg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~r17WDxw9r0AqKNyBg29KqfCy47REGOiApR9LiITJ6PhGWSUVp45Net0juRk87jEs5dKfpmbYunc7ZRmigRV1ow== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~r17WDxw9r0AqKNyBg29KqfCy47REGOiApR9LiITJ6PhGWSUVp45Net0juRk87jEs5dKfpmbYunc7ZRmigRV1ow== new file mode 100644 index 0000000..49ed542 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~r17WDxw9r0AqKNyBg29KqfCy47REGOiApR9LiITJ6PhGWSUVp45Net0juRk87jEs5dKfpmbYunc7ZRmigRV1ow== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~r35c-7fIRmEt_2UdO35w7u8lp8cUQH0TIhLrfCiB3G2kAlk2xMidwuxt8YE00fq9cwZYsd27sBlM9CV0SHpmHg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~r35c-7fIRmEt_2UdO35w7u8lp8cUQH0TIhLrfCiB3G2kAlk2xMidwuxt8YE00fq9cwZYsd27sBlM9CV0SHpmHg== new file mode 100644 index 0000000..c51c6ac Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~r35c-7fIRmEt_2UdO35w7u8lp8cUQH0TIhLrfCiB3G2kAlk2xMidwuxt8YE00fq9cwZYsd27sBlM9CV0SHpmHg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~r5GYMVQO2EeaYdfcxEUtLs2QjXiobf65qWVxasV1qIt7jDj1dhqbtyJsInRWnjI_c0sRduEQ8cqnipzMnwKIcg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~r5GYMVQO2EeaYdfcxEUtLs2QjXiobf65qWVxasV1qIt7jDj1dhqbtyJsInRWnjI_c0sRduEQ8cqnipzMnwKIcg== new file mode 100644 index 0000000..50af7e8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~r5GYMVQO2EeaYdfcxEUtLs2QjXiobf65qWVxasV1qIt7jDj1dhqbtyJsInRWnjI_c0sRduEQ8cqnipzMnwKIcg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~r62EEO3P_sn_FYEH9V6RSXcYb2SEzbKEOi968RrUrhRgbvYbvUAsRR8o-g06lO1a_ba5JoSDibE7ko841er9dA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~r62EEO3P_sn_FYEH9V6RSXcYb2SEzbKEOi968RrUrhRgbvYbvUAsRR8o-g06lO1a_ba5JoSDibE7ko841er9dA== new file mode 100644 index 0000000..e9927e4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~r62EEO3P_sn_FYEH9V6RSXcYb2SEzbKEOi968RrUrhRgbvYbvUAsRR8o-g06lO1a_ba5JoSDibE7ko841er9dA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rJPAkIYfozXicCv-0rzZt3R5Up8G7HZzD1USkdH6Ou2aA-Np5kI60skY8ovXU1tR4yBbJJaFiY-Ul19lvgVtBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rJPAkIYfozXicCv-0rzZt3R5Up8G7HZzD1USkdH6Ou2aA-Np5kI60skY8ovXU1tR4yBbJJaFiY-Ul19lvgVtBA== new file mode 100644 index 0000000..2a0dda5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rJPAkIYfozXicCv-0rzZt3R5Up8G7HZzD1USkdH6Ou2aA-Np5kI60skY8ovXU1tR4yBbJJaFiY-Ul19lvgVtBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rLxzR-JbC9AmP2D98urjvuLbR47Z6AZRUMwK736rpbHicBSYyMDldZ-rzJYow7SAR_fbaYwTAw36FdquFwBOew== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rLxzR-JbC9AmP2D98urjvuLbR47Z6AZRUMwK736rpbHicBSYyMDldZ-rzJYow7SAR_fbaYwTAw36FdquFwBOew== new file mode 100644 index 0000000..bf77abc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rLxzR-JbC9AmP2D98urjvuLbR47Z6AZRUMwK736rpbHicBSYyMDldZ-rzJYow7SAR_fbaYwTAw36FdquFwBOew== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rOfUXu3UFnqxAjfCvLRsDUXMoDlDNauEyTbEt0UoQl4u_mqebnnsUWF4F3zd6nxnmkRqL92YSstcDmSZ4eRmbQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rOfUXu3UFnqxAjfCvLRsDUXMoDlDNauEyTbEt0UoQl4u_mqebnnsUWF4F3zd6nxnmkRqL92YSstcDmSZ4eRmbQ== new file mode 100644 index 0000000..9116c19 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rOfUXu3UFnqxAjfCvLRsDUXMoDlDNauEyTbEt0UoQl4u_mqebnnsUWF4F3zd6nxnmkRqL92YSstcDmSZ4eRmbQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rS6uSrirGpNoJ8pNu5TZHR5URo4p29jrVWloExZqwVogts72hIcIMYhCCeaQdG3iNW3BjqWhsR-fBdvJb5H0uw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rS6uSrirGpNoJ8pNu5TZHR5URo4p29jrVWloExZqwVogts72hIcIMYhCCeaQdG3iNW3BjqWhsR-fBdvJb5H0uw== new file mode 100644 index 0000000..3455bd8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rS6uSrirGpNoJ8pNu5TZHR5URo4p29jrVWloExZqwVogts72hIcIMYhCCeaQdG3iNW3BjqWhsR-fBdvJb5H0uw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rUCL90o69K7zPuTmZY3yWpNu62x1TwwnhzznUBDnpEXQA0H_Tl1fhvMOQ705fJCHM-t-_NaCHtEK66Pcj_Jlxw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rUCL90o69K7zPuTmZY3yWpNu62x1TwwnhzznUBDnpEXQA0H_Tl1fhvMOQ705fJCHM-t-_NaCHtEK66Pcj_Jlxw== new file mode 100644 index 0000000..38ac3aa Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rUCL90o69K7zPuTmZY3yWpNu62x1TwwnhzznUBDnpEXQA0H_Tl1fhvMOQ705fJCHM-t-_NaCHtEK66Pcj_Jlxw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~razr77ki-E0A_f6ukrdccRcDPyhft8cOFtJwVJE95LLYIWtjifUELSwSMsOn65Y3SIoH6wNQLIDO0MVFUu8-mA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~razr77ki-E0A_f6ukrdccRcDPyhft8cOFtJwVJE95LLYIWtjifUELSwSMsOn65Y3SIoH6wNQLIDO0MVFUu8-mA== new file mode 100644 index 0000000..a1fc2df Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~razr77ki-E0A_f6ukrdccRcDPyhft8cOFtJwVJE95LLYIWtjifUELSwSMsOn65Y3SIoH6wNQLIDO0MVFUu8-mA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rdUA6_fqlj-C6yBMjn-A2-YavzH3iI5-PST1j80lcZ9xzuD4YKkaMHqo8EPF03xRnM82Bf4mSNPgjFOByw5OEA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rdUA6_fqlj-C6yBMjn-A2-YavzH3iI5-PST1j80lcZ9xzuD4YKkaMHqo8EPF03xRnM82Bf4mSNPgjFOByw5OEA== new file mode 100644 index 0000000..9ce1ea7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rdUA6_fqlj-C6yBMjn-A2-YavzH3iI5-PST1j80lcZ9xzuD4YKkaMHqo8EPF03xRnM82Bf4mSNPgjFOByw5OEA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rgIsxHI6b71c2BRMHvcYjw3rDclEfFNmHPUUmGz_JA20wGfiNKNfBY1kWjXwzj0NkaL-1ety5ZUVs90clMQPTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rgIsxHI6b71c2BRMHvcYjw3rDclEfFNmHPUUmGz_JA20wGfiNKNfBY1kWjXwzj0NkaL-1ety5ZUVs90clMQPTw== new file mode 100644 index 0000000..2c0d28d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rgIsxHI6b71c2BRMHvcYjw3rDclEfFNmHPUUmGz_JA20wGfiNKNfBY1kWjXwzj0NkaL-1ety5ZUVs90clMQPTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rjD-ZSFj1u2rZ_ASTr659KpqxN09eUz4NTtmoKQYPpZ-6X606NtI6Gsu6fEiG9CqMU13fkX8KZ4T0bQ_NHuA_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rjD-ZSFj1u2rZ_ASTr659KpqxN09eUz4NTtmoKQYPpZ-6X606NtI6Gsu6fEiG9CqMU13fkX8KZ4T0bQ_NHuA_A== new file mode 100644 index 0000000..52c119d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rjD-ZSFj1u2rZ_ASTr659KpqxN09eUz4NTtmoKQYPpZ-6X606NtI6Gsu6fEiG9CqMU13fkX8KZ4T0bQ_NHuA_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rluRRBsJaIDQdg2PpVI-4dj0jIQAXmMk_blo8AjTrX8IIf-Rv0mR1lt3aadwIlDiK6f2MaGou9SIulsQtSg9TQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rluRRBsJaIDQdg2PpVI-4dj0jIQAXmMk_blo8AjTrX8IIf-Rv0mR1lt3aadwIlDiK6f2MaGou9SIulsQtSg9TQ== new file mode 100644 index 0000000..f0203e5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~rluRRBsJaIDQdg2PpVI-4dj0jIQAXmMk_blo8AjTrX8IIf-Rv0mR1lt3aadwIlDiK6f2MaGou9SIulsQtSg9TQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~s45hfFv3KFZNvR_jj_saURwZ03WAsh3cvQi51tBICCnfbaW9rrZP7tCggtVKgd-YLSSHIe-z3QTxq0vT_qvpPg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~s45hfFv3KFZNvR_jj_saURwZ03WAsh3cvQi51tBICCnfbaW9rrZP7tCggtVKgd-YLSSHIe-z3QTxq0vT_qvpPg== new file mode 100644 index 0000000..9663058 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~s45hfFv3KFZNvR_jj_saURwZ03WAsh3cvQi51tBICCnfbaW9rrZP7tCggtVKgd-YLSSHIe-z3QTxq0vT_qvpPg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sATNSOH9_p0OJV5TUrq6Y2sAkEkI7-XWa0gw9ZosRzt6zR9IAkLwzkp8gLXYjzALjVyolyqymHTyrjhFrdxdpg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sATNSOH9_p0OJV5TUrq6Y2sAkEkI7-XWa0gw9ZosRzt6zR9IAkLwzkp8gLXYjzALjVyolyqymHTyrjhFrdxdpg== new file mode 100644 index 0000000..0e765de Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sATNSOH9_p0OJV5TUrq6Y2sAkEkI7-XWa0gw9ZosRzt6zR9IAkLwzkp8gLXYjzALjVyolyqymHTyrjhFrdxdpg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sHJ-k3B3g63m1115HOAlpFfvk3CAdIQIAu3iN75j4orObGeI9-ikxle7HbvhD22L0Ejsxzs-9kmj5eI3iaCLkw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sHJ-k3B3g63m1115HOAlpFfvk3CAdIQIAu3iN75j4orObGeI9-ikxle7HbvhD22L0Ejsxzs-9kmj5eI3iaCLkw== new file mode 100644 index 0000000..224495c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sHJ-k3B3g63m1115HOAlpFfvk3CAdIQIAu3iN75j4orObGeI9-ikxle7HbvhD22L0Ejsxzs-9kmj5eI3iaCLkw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sOC9dA32cRCdw-6qQs498Ew1Ph1SUNsQNhcRNv_Jxc4RkGtYVfU7Wc55ddSqJXhkzmHXj352HzWghZQoB49IAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sOC9dA32cRCdw-6qQs498Ew1Ph1SUNsQNhcRNv_Jxc4RkGtYVfU7Wc55ddSqJXhkzmHXj352HzWghZQoB49IAg== new file mode 100644 index 0000000..01b7a4f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sOC9dA32cRCdw-6qQs498Ew1Ph1SUNsQNhcRNv_Jxc4RkGtYVfU7Wc55ddSqJXhkzmHXj352HzWghZQoB49IAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sPx8AGHYAdmGN9w1KffBkYp4GY63nW3K1tVw49TI6yyI05abJwCDRXueitEQYOvkCUpA3axKd4zZg7u9g4k_mQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sPx8AGHYAdmGN9w1KffBkYp4GY63nW3K1tVw49TI6yyI05abJwCDRXueitEQYOvkCUpA3axKd4zZg7u9g4k_mQ== new file mode 100644 index 0000000..5a4e34f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sPx8AGHYAdmGN9w1KffBkYp4GY63nW3K1tVw49TI6yyI05abJwCDRXueitEQYOvkCUpA3axKd4zZg7u9g4k_mQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sQCFRna0zGx5B-I6BxKGC5yF42iqXlBgm7hERitQ3XnYsDeCdG2ahkGGc60f4TwMtud30zOR2cg2Z_7Rk7Czxg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sQCFRna0zGx5B-I6BxKGC5yF42iqXlBgm7hERitQ3XnYsDeCdG2ahkGGc60f4TwMtud30zOR2cg2Z_7Rk7Czxg== new file mode 100644 index 0000000..d602d64 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sQCFRna0zGx5B-I6BxKGC5yF42iqXlBgm7hERitQ3XnYsDeCdG2ahkGGc60f4TwMtud30zOR2cg2Z_7Rk7Czxg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sVUnNhhQtdT004paB2daxBH0UCHsUUjU9tHKLzIrSxIJxxBOHj3E-DtbKBQeCI5omoU_h7KlMBc0mQt7lAgWtA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sVUnNhhQtdT004paB2daxBH0UCHsUUjU9tHKLzIrSxIJxxBOHj3E-DtbKBQeCI5omoU_h7KlMBc0mQt7lAgWtA== new file mode 100644 index 0000000..50143f9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sVUnNhhQtdT004paB2daxBH0UCHsUUjU9tHKLzIrSxIJxxBOHj3E-DtbKBQeCI5omoU_h7KlMBc0mQt7lAgWtA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~scJodSvDtR9LrRCXIWYcePU_LvfrhILX-kSV3SX6g23gJJcDVBbuq0nwg7Cf91rcbCfbzQy70jkGBCxTnvQrAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~scJodSvDtR9LrRCXIWYcePU_LvfrhILX-kSV3SX6g23gJJcDVBbuq0nwg7Cf91rcbCfbzQy70jkGBCxTnvQrAg== new file mode 100644 index 0000000..9c503d9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~scJodSvDtR9LrRCXIWYcePU_LvfrhILX-kSV3SX6g23gJJcDVBbuq0nwg7Cf91rcbCfbzQy70jkGBCxTnvQrAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sdv0KA83xCgD0mN3ifcQ-Uh4fVkRPFh37g4DSKDf5dLOGQwfOv8WoIMJWu_t2nfbjH7QZIYstz_-8IlU2j2zAQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sdv0KA83xCgD0mN3ifcQ-Uh4fVkRPFh37g4DSKDf5dLOGQwfOv8WoIMJWu_t2nfbjH7QZIYstz_-8IlU2j2zAQ== new file mode 100644 index 0000000..8a0126c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sdv0KA83xCgD0mN3ifcQ-Uh4fVkRPFh37g4DSKDf5dLOGQwfOv8WoIMJWu_t2nfbjH7QZIYstz_-8IlU2j2zAQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~soNmmg77ZRHua8Ft7w0dCZWE0fKvKvbMrBLWtt3GWJPXge7KLo7YNlc0hGkKu-dGtd3XzLLE7s9djGD4eZhFzA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~soNmmg77ZRHua8Ft7w0dCZWE0fKvKvbMrBLWtt3GWJPXge7KLo7YNlc0hGkKu-dGtd3XzLLE7s9djGD4eZhFzA== new file mode 100644 index 0000000..7e62f77 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~soNmmg77ZRHua8Ft7w0dCZWE0fKvKvbMrBLWtt3GWJPXge7KLo7YNlc0hGkKu-dGtd3XzLLE7s9djGD4eZhFzA== @@ -0,0 +1 @@ +[{"type":1,"name":"C7EAA068A53DA0A0A57AAD83C953CA"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sp_cfTU65_ZUpCuPDRjxiCUozanUpsNkrdple8Y0GuN62DcESjxyEFPGqJ5TuOiPdFHKXSBkerHXIBygMUxwgg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sp_cfTU65_ZUpCuPDRjxiCUozanUpsNkrdple8Y0GuN62DcESjxyEFPGqJ5TuOiPdFHKXSBkerHXIBygMUxwgg== new file mode 100644 index 0000000..95b631e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sp_cfTU65_ZUpCuPDRjxiCUozanUpsNkrdple8Y0GuN62DcESjxyEFPGqJ5TuOiPdFHKXSBkerHXIBygMUxwgg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sxmwTU6UHn10cfNVebD-suA469rAqgELfHaZCUmR1uKmFhkYP3oO0raRPua50PIKjUMSTDDokTsckd1czJdKqw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sxmwTU6UHn10cfNVebD-suA469rAqgELfHaZCUmR1uKmFhkYP3oO0raRPua50PIKjUMSTDDokTsckd1czJdKqw== new file mode 100644 index 0000000..9e20f3b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~sxmwTU6UHn10cfNVebD-suA469rAqgELfHaZCUmR1uKmFhkYP3oO0raRPua50PIKjUMSTDDokTsckd1czJdKqw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~szg-oLKvvyXBADlqEoRNnol-8-6oFWQ8Z8PWG0ybxMoH0pT8G-v5IUtBa0Jv03pqRYxRjDuIxD4FOR7p3u3JQw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~szg-oLKvvyXBADlqEoRNnol-8-6oFWQ8Z8PWG0ybxMoH0pT8G-v5IUtBa0Jv03pqRYxRjDuIxD4FOR7p3u3JQw== new file mode 100644 index 0000000..07b6ead Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~szg-oLKvvyXBADlqEoRNnol-8-6oFWQ8Z8PWG0ybxMoH0pT8G-v5IUtBa0Jv03pqRYxRjDuIxD4FOR7p3u3JQw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t0EGcJH52Av5CnvOIjHEFVxxsBvs-sYbxF4899NLpaQwwAXDxc80CHI1LVgPfyxGt_4oHRaTeyvzuPZT__VTyg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t0EGcJH52Av5CnvOIjHEFVxxsBvs-sYbxF4899NLpaQwwAXDxc80CHI1LVgPfyxGt_4oHRaTeyvzuPZT__VTyg== new file mode 100644 index 0000000..7142812 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t0EGcJH52Av5CnvOIjHEFVxxsBvs-sYbxF4899NLpaQwwAXDxc80CHI1LVgPfyxGt_4oHRaTeyvzuPZT__VTyg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t0VzpDCm94lfJv9d61FXJHFiZppq_0Pb88WyXtP0x8Mn3Rd2MIecM3Z2_8l8cQBLCNhQzAtS2wnNHYUF_Op9IQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t0VzpDCm94lfJv9d61FXJHFiZppq_0Pb88WyXtP0x8Mn3Rd2MIecM3Z2_8l8cQBLCNhQzAtS2wnNHYUF_Op9IQ== new file mode 100644 index 0000000..d3a12d2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t0VzpDCm94lfJv9d61FXJHFiZppq_0Pb88WyXtP0x8Mn3Rd2MIecM3Z2_8l8cQBLCNhQzAtS2wnNHYUF_Op9IQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t3fo27VGvm5zo7DoNNWKfr0WsVJ_vOrmG1MQe5ca-_QIGXLVTWwQQSA8Yhc7iZ-uUaXYxM6XVWaWGb4AEJmkRQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t3fo27VGvm5zo7DoNNWKfr0WsVJ_vOrmG1MQe5ca-_QIGXLVTWwQQSA8Yhc7iZ-uUaXYxM6XVWaWGb4AEJmkRQ== new file mode 100644 index 0000000..06d5370 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t3fo27VGvm5zo7DoNNWKfr0WsVJ_vOrmG1MQe5ca-_QIGXLVTWwQQSA8Yhc7iZ-uUaXYxM6XVWaWGb4AEJmkRQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t5T-IlQlvH1RVvBK_K__PZLzGDpaMEz3BNty2Qod2JeQjD3_OzL4TbhmsJAxdIQCOi_vECPek8tNMxaCiLInKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t5T-IlQlvH1RVvBK_K__PZLzGDpaMEz3BNty2Qod2JeQjD3_OzL4TbhmsJAxdIQCOi_vECPek8tNMxaCiLInKw== new file mode 100644 index 0000000..677eb95 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t5T-IlQlvH1RVvBK_K__PZLzGDpaMEz3BNty2Qod2JeQjD3_OzL4TbhmsJAxdIQCOi_vECPek8tNMxaCiLInKw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t8qUT_0sjDTkjT3cP219mUrRl5naUc2p87DhncUHUi4U7RmVnEghb-QBdL9pe2PhEi6lZB96LmOQRHq-edYweA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t8qUT_0sjDTkjT3cP219mUrRl5naUc2p87DhncUHUi4U7RmVnEghb-QBdL9pe2PhEi6lZB96LmOQRHq-edYweA== new file mode 100644 index 0000000..2c9fde6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~t8qUT_0sjDTkjT3cP219mUrRl5naUc2p87DhncUHUi4U7RmVnEghb-QBdL9pe2PhEi6lZB96LmOQRHq-edYweA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tGQHQ_6-7jxuGvevU8pjSLE6gPK3pHw2hOiJpV24Gcqaif4XNQ4NoHhgfO0NpXEYIBmU44cY836MIwQvp0dkeQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tGQHQ_6-7jxuGvevU8pjSLE6gPK3pHw2hOiJpV24Gcqaif4XNQ4NoHhgfO0NpXEYIBmU44cY836MIwQvp0dkeQ== new file mode 100644 index 0000000..29dbcc0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tGQHQ_6-7jxuGvevU8pjSLE6gPK3pHw2hOiJpV24Gcqaif4XNQ4NoHhgfO0NpXEYIBmU44cY836MIwQvp0dkeQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tODSW4oD-gUnOooEMn_j7IHVv0fHNhjyrAMHX_37_IDlQhggAZT2FLZW5TjEzLEusAZ20XnlUobTDzbK5zxX1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tODSW4oD-gUnOooEMn_j7IHVv0fHNhjyrAMHX_37_IDlQhggAZT2FLZW5TjEzLEusAZ20XnlUobTDzbK5zxX1g== new file mode 100644 index 0000000..3bfd674 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tODSW4oD-gUnOooEMn_j7IHVv0fHNhjyrAMHX_37_IDlQhggAZT2FLZW5TjEzLEusAZ20XnlUobTDzbK5zxX1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tOiSbw5FPDtfhB-gVFbkeVCiCU8ZrEY4hYPyDRyvDDtXrKb5YBzcbCPip0XSt4ixiSz1JvjHuUr-3CsCS7UKVw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tOiSbw5FPDtfhB-gVFbkeVCiCU8ZrEY4hYPyDRyvDDtXrKb5YBzcbCPip0XSt4ixiSz1JvjHuUr-3CsCS7UKVw== new file mode 100644 index 0000000..8fac1b2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tOiSbw5FPDtfhB-gVFbkeVCiCU8ZrEY4hYPyDRyvDDtXrKb5YBzcbCPip0XSt4ixiSz1JvjHuUr-3CsCS7UKVw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tWSWUOZ2ZHU4nJiXQZx7LbzsYykUXrQq5naHeeJJ6HjUkRx6V5XSciIfm6p6LqME1sA5PedYFGWSvYZ2jQC78Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tWSWUOZ2ZHU4nJiXQZx7LbzsYykUXrQq5naHeeJJ6HjUkRx6V5XSciIfm6p6LqME1sA5PedYFGWSvYZ2jQC78Q== new file mode 100644 index 0000000..f09753a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tWSWUOZ2ZHU4nJiXQZx7LbzsYykUXrQq5naHeeJJ6HjUkRx6V5XSciIfm6p6LqME1sA5PedYFGWSvYZ2jQC78Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tdsfMNitVqODtfgwqF-_cONQPOwJbzuunDkQFUgxsBmMWZ4NtcURtVSrWVRdVCRz8AcEEMva2lQMldWi4Gul7g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tdsfMNitVqODtfgwqF-_cONQPOwJbzuunDkQFUgxsBmMWZ4NtcURtVSrWVRdVCRz8AcEEMva2lQMldWi4Gul7g== new file mode 100644 index 0000000..1187184 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tdsfMNitVqODtfgwqF-_cONQPOwJbzuunDkQFUgxsBmMWZ4NtcURtVSrWVRdVCRz8AcEEMva2lQMldWi4Gul7g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tfEXSds1pAoPi0sd1jV_yHudOz6NpMCTMdOMh5uk5spxmUGrWTPPz8dXyA0NYav8xZCrPUznm6-pd-3QQMsJOw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tfEXSds1pAoPi0sd1jV_yHudOz6NpMCTMdOMh5uk5spxmUGrWTPPz8dXyA0NYav8xZCrPUznm6-pd-3QQMsJOw== new file mode 100644 index 0000000..0d0670b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tfEXSds1pAoPi0sd1jV_yHudOz6NpMCTMdOMh5uk5spxmUGrWTPPz8dXyA0NYav8xZCrPUznm6-pd-3QQMsJOw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tjVrncGoq9LKv5c0k05RP64tHvH5ckc0giEUcdarbzDBoBM0Z8tVCcur1nd7c4GuNeNSisFf4zFYrt_O9tbNYw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tjVrncGoq9LKv5c0k05RP64tHvH5ckc0giEUcdarbzDBoBM0Z8tVCcur1nd7c4GuNeNSisFf4zFYrt_O9tbNYw== new file mode 100644 index 0000000..113e170 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tjVrncGoq9LKv5c0k05RP64tHvH5ckc0giEUcdarbzDBoBM0Z8tVCcur1nd7c4GuNeNSisFf4zFYrt_O9tbNYw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tqdpuNDmMos8xkwdENMFGFcOcOZf-TmJwacxCiRqRf-1oxe4DUqEJcc_8huhnkDXdwEBMaJt9uqpm3H560zLiw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tqdpuNDmMos8xkwdENMFGFcOcOZf-TmJwacxCiRqRf-1oxe4DUqEJcc_8huhnkDXdwEBMaJt9uqpm3H560zLiw== new file mode 100644 index 0000000..caac65a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tqdpuNDmMos8xkwdENMFGFcOcOZf-TmJwacxCiRqRf-1oxe4DUqEJcc_8huhnkDXdwEBMaJt9uqpm3H560zLiw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tsedyFq067xFdIHYV1hgoCUxVCC__BoDWNNF7F4Q76i7F0dY-ZeQYmZzbYJ5T-vD7-DeyoiONrfYtcu0XZo9sw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tsedyFq067xFdIHYV1hgoCUxVCC__BoDWNNF7F4Q76i7F0dY-ZeQYmZzbYJ5T-vD7-DeyoiONrfYtcu0XZo9sw== new file mode 100644 index 0000000..be02bcb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tsedyFq067xFdIHYV1hgoCUxVCC__BoDWNNF7F4Q76i7F0dY-ZeQYmZzbYJ5T-vD7-DeyoiONrfYtcu0XZo9sw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tu5KvoougmSBeLCzf6M_W5Y9GYyBtqBHbGPkDCfyxqn-gJzN7k1BtWZG5xXwqyT9y8a4rOzp7HFvEgCh8OqLCw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tu5KvoougmSBeLCzf6M_W5Y9GYyBtqBHbGPkDCfyxqn-gJzN7k1BtWZG5xXwqyT9y8a4rOzp7HFvEgCh8OqLCw== new file mode 100644 index 0000000..060f96b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tu5KvoougmSBeLCzf6M_W5Y9GYyBtqBHbGPkDCfyxqn-gJzN7k1BtWZG5xXwqyT9y8a4rOzp7HFvEgCh8OqLCw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tuXdGEhP7clIqxWJQZh3DIMvSeNkUIjiNhqwsfWZHw3_GQPkibpqjy-cv_w2ipoAsbd14KF-NnNN9I0RQhlY9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tuXdGEhP7clIqxWJQZh3DIMvSeNkUIjiNhqwsfWZHw3_GQPkibpqjy-cv_w2ipoAsbd14KF-NnNN9I0RQhlY9A== new file mode 100644 index 0000000..b246d78 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~tuXdGEhP7clIqxWJQZh3DIMvSeNkUIjiNhqwsfWZHw3_GQPkibpqjy-cv_w2ipoAsbd14KF-NnNN9I0RQhlY9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~twdRo98-8dXCA4ereKJGck5JsKC9V3V9QRGaKdCY8eVhjO8bwP3Aas15ZxOp4p3I437aksFFC94ToBQYF_JSnQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~twdRo98-8dXCA4ereKJGck5JsKC9V3V9QRGaKdCY8eVhjO8bwP3Aas15ZxOp4p3I437aksFFC94ToBQYF_JSnQ== new file mode 100644 index 0000000..971103b --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~twdRo98-8dXCA4ereKJGck5JsKC9V3V9QRGaKdCY8eVhjO8bwP3Aas15ZxOp4p3I437aksFFC94ToBQYF_JSnQ== @@ -0,0 +1 @@ +[{"type":1,"name":"0EEE0645073E69A74C1BF888E4479C"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~u1QShRKaeMBqRoK6rs5ffGWUhEFtShYBEHmU9JYqh9VL9_OWyPhbNLL5i3p53RN0rNd6H2zoiQsKs65wFwZV7w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~u1QShRKaeMBqRoK6rs5ffGWUhEFtShYBEHmU9JYqh9VL9_OWyPhbNLL5i3p53RN0rNd6H2zoiQsKs65wFwZV7w== new file mode 100644 index 0000000..1938356 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~u1QShRKaeMBqRoK6rs5ffGWUhEFtShYBEHmU9JYqh9VL9_OWyPhbNLL5i3p53RN0rNd6H2zoiQsKs65wFwZV7w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~u2OkW3cxvQRncCK38Q4kFH0QHqyWZE4Qe_G8bEBB0Io04LJct-8bKuUe_JpQt_eBI5xt4VbHBO9l-g5s1lCozg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~u2OkW3cxvQRncCK38Q4kFH0QHqyWZE4Qe_G8bEBB0Io04LJct-8bKuUe_JpQt_eBI5xt4VbHBO9l-g5s1lCozg== new file mode 100644 index 0000000..f4704a3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~u2OkW3cxvQRncCK38Q4kFH0QHqyWZE4Qe_G8bEBB0Io04LJct-8bKuUe_JpQt_eBI5xt4VbHBO9l-g5s1lCozg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~u6dgdt56FZWWZOJzN3fl2-QczH9sKDJPxn0LeJE0nbBMMBJyjLafjv1GJNkLekMD-4ac_BrapjnSG8tn6WMR6A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~u6dgdt56FZWWZOJzN3fl2-QczH9sKDJPxn0LeJE0nbBMMBJyjLafjv1GJNkLekMD-4ac_BrapjnSG8tn6WMR6A== new file mode 100644 index 0000000..2bc2b71 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~u6dgdt56FZWWZOJzN3fl2-QczH9sKDJPxn0LeJE0nbBMMBJyjLafjv1GJNkLekMD-4ac_BrapjnSG8tn6WMR6A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uJiS2iT-xuH6yRx8RaEekDtHU7oHLw-HOOw4tQNvQzXaqynaz1dtGOEBG5G7DStcppiu2j-HoZkbOTfCzKtPnQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uJiS2iT-xuH6yRx8RaEekDtHU7oHLw-HOOw4tQNvQzXaqynaz1dtGOEBG5G7DStcppiu2j-HoZkbOTfCzKtPnQ== new file mode 100644 index 0000000..93a75ad Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uJiS2iT-xuH6yRx8RaEekDtHU7oHLw-HOOw4tQNvQzXaqynaz1dtGOEBG5G7DStcppiu2j-HoZkbOTfCzKtPnQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uOlFTtdYZonT9Ti9Gs0qWVOlfgqs-FH0ysYWe45dQjvhqq4KKHhGdT4gIFrDnq6NjMN59rbmeoC_v6ODvN44wQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uOlFTtdYZonT9Ti9Gs0qWVOlfgqs-FH0ysYWe45dQjvhqq4KKHhGdT4gIFrDnq6NjMN59rbmeoC_v6ODvN44wQ== new file mode 100644 index 0000000..a67b2f9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uOlFTtdYZonT9Ti9Gs0qWVOlfgqs-FH0ysYWe45dQjvhqq4KKHhGdT4gIFrDnq6NjMN59rbmeoC_v6ODvN44wQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uQbgxY-i8yPgohOFuMAvmtPGl5wuFQkAP92QpE34d1AxUVFDSjBtlJL9wlw_xOWaCKtgGvwOEvhJUjA7mRghmQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uQbgxY-i8yPgohOFuMAvmtPGl5wuFQkAP92QpE34d1AxUVFDSjBtlJL9wlw_xOWaCKtgGvwOEvhJUjA7mRghmQ== new file mode 100644 index 0000000..32bc1e0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uQbgxY-i8yPgohOFuMAvmtPGl5wuFQkAP92QpE34d1AxUVFDSjBtlJL9wlw_xOWaCKtgGvwOEvhJUjA7mRghmQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uVtmXIwy3XGk7EzXl6eqwEYsmmwGPBqbUFd8JiDFW4wqpdi_ihRrhwd68zHZPpaQSJVvWpEUsPPyqHGCsH-vdQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uVtmXIwy3XGk7EzXl6eqwEYsmmwGPBqbUFd8JiDFW4wqpdi_ihRrhwd68zHZPpaQSJVvWpEUsPPyqHGCsH-vdQ== new file mode 100644 index 0000000..c8d0464 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uVtmXIwy3XGk7EzXl6eqwEYsmmwGPBqbUFd8JiDFW4wqpdi_ihRrhwd68zHZPpaQSJVvWpEUsPPyqHGCsH-vdQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uWX7Ysa3HkJep3G_Xb1_pT8j85XA8SERbv4b-_G8VkR-vpJPhoB-CxDUfET8mtlqydjTXkaT69h7-BKyyDQQnA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uWX7Ysa3HkJep3G_Xb1_pT8j85XA8SERbv4b-_G8VkR-vpJPhoB-CxDUfET8mtlqydjTXkaT69h7-BKyyDQQnA== new file mode 100644 index 0000000..ea608e0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uWX7Ysa3HkJep3G_Xb1_pT8j85XA8SERbv4b-_G8VkR-vpJPhoB-CxDUfET8mtlqydjTXkaT69h7-BKyyDQQnA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uZA2ROnceLuqyQwqKuXJBhQfPMWZd60R_f7ovnNnAjneW3SOkKco2CbDHgjn4keTGHMA--yUialaFoLix2Wyvg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uZA2ROnceLuqyQwqKuXJBhQfPMWZd60R_f7ovnNnAjneW3SOkKco2CbDHgjn4keTGHMA--yUialaFoLix2Wyvg== new file mode 100644 index 0000000..e40ae77 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uZA2ROnceLuqyQwqKuXJBhQfPMWZd60R_f7ovnNnAjneW3SOkKco2CbDHgjn4keTGHMA--yUialaFoLix2Wyvg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uamUaYLQuNnFTIPfDpJjHBEmD2MitWOqjc2hztrVRwlUeGNet0jMbcAbx2xC0eMjCeCbcqxxJ3Bi2dmmFh9y0g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uamUaYLQuNnFTIPfDpJjHBEmD2MitWOqjc2hztrVRwlUeGNet0jMbcAbx2xC0eMjCeCbcqxxJ3Bi2dmmFh9y0g== new file mode 100644 index 0000000..f1f5c4e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uamUaYLQuNnFTIPfDpJjHBEmD2MitWOqjc2hztrVRwlUeGNet0jMbcAbx2xC0eMjCeCbcqxxJ3Bi2dmmFh9y0g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ud9Fn1rphN5TBIwrCMi3uVgO288tvlYzjjNnYWlvGwzU7AI8Bz0T1TYwqFlmQ5Q12ngvOfNHPDwg9uLArV1bEA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ud9Fn1rphN5TBIwrCMi3uVgO288tvlYzjjNnYWlvGwzU7AI8Bz0T1TYwqFlmQ5Q12ngvOfNHPDwg9uLArV1bEA== new file mode 100644 index 0000000..e26a52c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ud9Fn1rphN5TBIwrCMi3uVgO288tvlYzjjNnYWlvGwzU7AI8Bz0T1TYwqFlmQ5Q12ngvOfNHPDwg9uLArV1bEA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~udBtZjgan_RYeh_bg3_PFhAGf9J43rEmIZKrphZzW2QxxsKAws6Jb1wOWncAew0M02IkYkvbv_Lj418eu0bM7g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~udBtZjgan_RYeh_bg3_PFhAGf9J43rEmIZKrphZzW2QxxsKAws6Jb1wOWncAew0M02IkYkvbv_Lj418eu0bM7g== new file mode 100644 index 0000000..f7dccff Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~udBtZjgan_RYeh_bg3_PFhAGf9J43rEmIZKrphZzW2QxxsKAws6Jb1wOWncAew0M02IkYkvbv_Lj418eu0bM7g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ueKY5EM0bGnmMXdo1YO0fuPgdYzLejZShIqqjvyph3D2SkSvji8jGqY0wlpV6nKl8fB8GHbUSbj8bU1e8hi5nQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ueKY5EM0bGnmMXdo1YO0fuPgdYzLejZShIqqjvyph3D2SkSvji8jGqY0wlpV6nKl8fB8GHbUSbj8bU1e8hi5nQ== new file mode 100644 index 0000000..8d28d0b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ueKY5EM0bGnmMXdo1YO0fuPgdYzLejZShIqqjvyph3D2SkSvji8jGqY0wlpV6nKl8fB8GHbUSbj8bU1e8hi5nQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ujv1tn7wglG76t6yzqJogwGKG-LH_tUNeGqmMQ1I7x7v6Cd8uu0CncwcOhYUdX7EMzBxbEZRH8MvWpH43EdKQQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ujv1tn7wglG76t6yzqJogwGKG-LH_tUNeGqmMQ1I7x7v6Cd8uu0CncwcOhYUdX7EMzBxbEZRH8MvWpH43EdKQQ== new file mode 100644 index 0000000..60f956b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ujv1tn7wglG76t6yzqJogwGKG-LH_tUNeGqmMQ1I7x7v6Cd8uu0CncwcOhYUdX7EMzBxbEZRH8MvWpH43EdKQQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uosJNplaOGxcEhq55fbYfK7abrCZjDH-WWAIGqCMN4KQaKYqByw984tO8H8bJQhKM2R27boUSwKcqRr-7ArEqw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uosJNplaOGxcEhq55fbYfK7abrCZjDH-WWAIGqCMN4KQaKYqByw984tO8H8bJQhKM2R27boUSwKcqRr-7ArEqw== new file mode 100644 index 0000000..00aa167 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~uosJNplaOGxcEhq55fbYfK7abrCZjDH-WWAIGqCMN4KQaKYqByw984tO8H8bJQhKM2R27boUSwKcqRr-7ArEqw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~upzDQG53NbUVvHEGxK08i-2c7o5kj-OO8ICI5KpGBeGHhuqv2MSP4NNAb1mWMFrCEYbB83vabeTm44GeMeQyvw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~upzDQG53NbUVvHEGxK08i-2c7o5kj-OO8ICI5KpGBeGHhuqv2MSP4NNAb1mWMFrCEYbB83vabeTm44GeMeQyvw== new file mode 100644 index 0000000..9519255 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~upzDQG53NbUVvHEGxK08i-2c7o5kj-OO8ICI5KpGBeGHhuqv2MSP4NNAb1mWMFrCEYbB83vabeTm44GeMeQyvw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~urfmM-Rsc8KQx3MNd05zrnOnmSXSsUFJ_pJ1GeUpl1uHY9WUDdpkXX5AqyQDLUd0NbwGL2NYq7W1uZ5sM7x3Tg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~urfmM-Rsc8KQx3MNd05zrnOnmSXSsUFJ_pJ1GeUpl1uHY9WUDdpkXX5AqyQDLUd0NbwGL2NYq7W1uZ5sM7x3Tg== new file mode 100644 index 0000000..85bb28e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~urfmM-Rsc8KQx3MNd05zrnOnmSXSsUFJ_pJ1GeUpl1uHY9WUDdpkXX5AqyQDLUd0NbwGL2NYq7W1uZ5sM7x3Tg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ut82Zq8iGPpJYDeKtwEbhnvmwcog1I7gZvfhSERLw6LT9ubL1oVnbDARNYPwDu8LpDKLnsIBpwB-K-zy9t0G5w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ut82Zq8iGPpJYDeKtwEbhnvmwcog1I7gZvfhSERLw6LT9ubL1oVnbDARNYPwDu8LpDKLnsIBpwB-K-zy9t0G5w== new file mode 100644 index 0000000..634b29e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ut82Zq8iGPpJYDeKtwEbhnvmwcog1I7gZvfhSERLw6LT9ubL1oVnbDARNYPwDu8LpDKLnsIBpwB-K-zy9t0G5w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~v-CBDCzwFBEmUz5Z3mATDEo01XQP7qjv8o_yjHG-Isieda0JP33zDc51Wj0u77TRJdAweXQ8m2bNtaayDkyD2A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~v-CBDCzwFBEmUz5Z3mATDEo01XQP7qjv8o_yjHG-Isieda0JP33zDc51Wj0u77TRJdAweXQ8m2bNtaayDkyD2A== new file mode 100644 index 0000000..7288c4a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~v-CBDCzwFBEmUz5Z3mATDEo01XQP7qjv8o_yjHG-Isieda0JP33zDc51Wj0u77TRJdAweXQ8m2bNtaayDkyD2A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~v3G33Hhfle5gwurMt2XlZvT9y64O0cvjV744yHdeaKLaQBQ9AQod90aWSWZFXWM4DiGfMFbkE11JdkgxHE4-vQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~v3G33Hhfle5gwurMt2XlZvT9y64O0cvjV744yHdeaKLaQBQ9AQod90aWSWZFXWM4DiGfMFbkE11JdkgxHE4-vQ== new file mode 100644 index 0000000..27bd719 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~v3G33Hhfle5gwurMt2XlZvT9y64O0cvjV744yHdeaKLaQBQ9AQod90aWSWZFXWM4DiGfMFbkE11JdkgxHE4-vQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~v5dej7jVyRbWAi_n7Kym98RPsyRfawk0X-s1Zr4ntmBkHXdWkdCzat06V0hqigPDm8pZq1GkSWEBi0j8MJoIaA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~v5dej7jVyRbWAi_n7Kym98RPsyRfawk0X-s1Zr4ntmBkHXdWkdCzat06V0hqigPDm8pZq1GkSWEBi0j8MJoIaA== new file mode 100644 index 0000000..0792c0e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~v5dej7jVyRbWAi_n7Kym98RPsyRfawk0X-s1Zr4ntmBkHXdWkdCzat06V0hqigPDm8pZq1GkSWEBi0j8MJoIaA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vB-IdxEwsZtVf5qDn_bbttppfncYkC93eZ356Ow9Zc_fgJw94msGPWgtY2e37bi2Bvbz8IyzWALAzYl8DkBiTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vB-IdxEwsZtVf5qDn_bbttppfncYkC93eZ356Ow9Zc_fgJw94msGPWgtY2e37bi2Bvbz8IyzWALAzYl8DkBiTw== new file mode 100644 index 0000000..944ef11 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vB-IdxEwsZtVf5qDn_bbttppfncYkC93eZ356Ow9Zc_fgJw94msGPWgtY2e37bi2Bvbz8IyzWALAzYl8DkBiTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vCOYWEYDAafBXw2ys_WMqJWw-Ec43aYv5ndEu6WqeCNRBc18sSr-1H8IiyPD92OlpgWM3Lgfkb3E_9OGUbf6gA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vCOYWEYDAafBXw2ys_WMqJWw-Ec43aYv5ndEu6WqeCNRBc18sSr-1H8IiyPD92OlpgWM3Lgfkb3E_9OGUbf6gA== new file mode 100644 index 0000000..9d5c2ed Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vCOYWEYDAafBXw2ys_WMqJWw-Ec43aYv5ndEu6WqeCNRBc18sSr-1H8IiyPD92OlpgWM3Lgfkb3E_9OGUbf6gA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vHitvGHg0O1OrQUWWE2UVXPrO6UelUKLObARUyT4JzHuvv6j8pqnMDBd0ObiYFA_SoP39ychS170buApBNjHuA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vHitvGHg0O1OrQUWWE2UVXPrO6UelUKLObARUyT4JzHuvv6j8pqnMDBd0ObiYFA_SoP39ychS170buApBNjHuA== new file mode 100644 index 0000000..991721a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vHitvGHg0O1OrQUWWE2UVXPrO6UelUKLObARUyT4JzHuvv6j8pqnMDBd0ObiYFA_SoP39ychS170buApBNjHuA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vIlNs5NobBgaLp1ez2QPyAYLtVV5P16Qh7HxksZOlsSGf-ARjQuUCarDrdwIelgY760Vt3km7qFhZb7fYhIWdg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vIlNs5NobBgaLp1ez2QPyAYLtVV5P16Qh7HxksZOlsSGf-ARjQuUCarDrdwIelgY760Vt3km7qFhZb7fYhIWdg== new file mode 100644 index 0000000..40a878a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vIlNs5NobBgaLp1ez2QPyAYLtVV5P16Qh7HxksZOlsSGf-ARjQuUCarDrdwIelgY760Vt3km7qFhZb7fYhIWdg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vZxSlu2k-3B0ODEhxuLUhojEyCmF8I1g8RE8J6BDN4_1VF3qvwIiQvDxEUnusuC3tWctjpYr_j_EluBcB0KKPg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vZxSlu2k-3B0ODEhxuLUhojEyCmF8I1g8RE8J6BDN4_1VF3qvwIiQvDxEUnusuC3tWctjpYr_j_EluBcB0KKPg== new file mode 100644 index 0000000..ebb1e73 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vZxSlu2k-3B0ODEhxuLUhojEyCmF8I1g8RE8J6BDN4_1VF3qvwIiQvDxEUnusuC3tWctjpYr_j_EluBcB0KKPg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vb3reMoxPZQt7xQ82xuN05yohRdBgeMHyPEHm4zA6uxY2EvxGc6bW6MR6EkRsRtrfIAOidL1UTPRl0tVZC3k9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vb3reMoxPZQt7xQ82xuN05yohRdBgeMHyPEHm4zA6uxY2EvxGc6bW6MR6EkRsRtrfIAOidL1UTPRl0tVZC3k9A== new file mode 100644 index 0000000..103e13f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vb3reMoxPZQt7xQ82xuN05yohRdBgeMHyPEHm4zA6uxY2EvxGc6bW6MR6EkRsRtrfIAOidL1UTPRl0tVZC3k9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vb9jOHr-4hAwpyVRvbHs28U9vzdL2-UCVML53bCckYR4iJUyEOrmAFZO4XDuw5G3BJ6fxto-iX9VxJvLfGtp-w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vb9jOHr-4hAwpyVRvbHs28U9vzdL2-UCVML53bCckYR4iJUyEOrmAFZO4XDuw5G3BJ6fxto-iX9VxJvLfGtp-w== new file mode 100644 index 0000000..08368d7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vb9jOHr-4hAwpyVRvbHs28U9vzdL2-UCVML53bCckYR4iJUyEOrmAFZO4XDuw5G3BJ6fxto-iX9VxJvLfGtp-w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vh4JBLIkvW-CzL2idnF_UQHJ-vkkzQfgC5NAmJn8ymHqhWcHXaR9u9WDiOzEBu6mvAOdcF-e6HrN7NjduNdjxw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vh4JBLIkvW-CzL2idnF_UQHJ-vkkzQfgC5NAmJn8ymHqhWcHXaR9u9WDiOzEBu6mvAOdcF-e6HrN7NjduNdjxw== new file mode 100644 index 0000000..c264f33 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vh4JBLIkvW-CzL2idnF_UQHJ-vkkzQfgC5NAmJn8ymHqhWcHXaR9u9WDiOzEBu6mvAOdcF-e6HrN7NjduNdjxw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vjSNo44CIBTz9cDC3hF_r71z_aMZCXZZSIcIDkudRUnLAolT7LTocXTMwpvHCrYIdKE-52Tc7QLGvBTRlLBYbQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vjSNo44CIBTz9cDC3hF_r71z_aMZCXZZSIcIDkudRUnLAolT7LTocXTMwpvHCrYIdKE-52Tc7QLGvBTRlLBYbQ== new file mode 100644 index 0000000..37bbf08 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vjSNo44CIBTz9cDC3hF_r71z_aMZCXZZSIcIDkudRUnLAolT7LTocXTMwpvHCrYIdKE-52Tc7QLGvBTRlLBYbQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vnWgGy0grprOFYiiAcImGwuD9LvnR4S7a0RtJbiUkKkxgAZmXwVkpJPOe7o-XimLH3mi7068PNH4hHJ_tUb0dQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vnWgGy0grprOFYiiAcImGwuD9LvnR4S7a0RtJbiUkKkxgAZmXwVkpJPOe7o-XimLH3mi7068PNH4hHJ_tUb0dQ== new file mode 100644 index 0000000..8b6593b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vnWgGy0grprOFYiiAcImGwuD9LvnR4S7a0RtJbiUkKkxgAZmXwVkpJPOe7o-XimLH3mi7068PNH4hHJ_tUb0dQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vomMb6e4bvPtiIN1Kf6Ew_WXxbmZtPy3N2CTB_7lO1Z3xILc3HpnKY8OelAY1WGYqJDfUDgJ1_wIaSDTW2-eEA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vomMb6e4bvPtiIN1Kf6Ew_WXxbmZtPy3N2CTB_7lO1Z3xILc3HpnKY8OelAY1WGYqJDfUDgJ1_wIaSDTW2-eEA== new file mode 100644 index 0000000..c812903 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vomMb6e4bvPtiIN1Kf6Ew_WXxbmZtPy3N2CTB_7lO1Z3xILc3HpnKY8OelAY1WGYqJDfUDgJ1_wIaSDTW2-eEA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vqJTkIVpKoRg38sijVf0e03egKtrK_rSbGLYlG6TrYWxsWQB3U379W9wfSusJtatJIWhTyXxC2-E6TcYTgHlbg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vqJTkIVpKoRg38sijVf0e03egKtrK_rSbGLYlG6TrYWxsWQB3U379W9wfSusJtatJIWhTyXxC2-E6TcYTgHlbg== new file mode 100644 index 0000000..40949ce Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vqJTkIVpKoRg38sijVf0e03egKtrK_rSbGLYlG6TrYWxsWQB3U379W9wfSusJtatJIWhTyXxC2-E6TcYTgHlbg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vqeoYSvpFWXEzWJWTXZnzjR3x1tbSxnnMutdxzRVJGQxbqeZtPOpxJwrHMLuMX8ahB9gDyItUXJ0L33ZMAQ-Sw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vqeoYSvpFWXEzWJWTXZnzjR3x1tbSxnnMutdxzRVJGQxbqeZtPOpxJwrHMLuMX8ahB9gDyItUXJ0L33ZMAQ-Sw== new file mode 100644 index 0000000..f1361f9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vqeoYSvpFWXEzWJWTXZnzjR3x1tbSxnnMutdxzRVJGQxbqeZtPOpxJwrHMLuMX8ahB9gDyItUXJ0L33ZMAQ-Sw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vvk2LYtEkD31Cv5Zum1Vl9UtjJHI_8Q7rUuo_cjnvc2m5VYYY9Hx4Qzf-x6VXQZHUd0uMo17m_R6ABfYAcwwoA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vvk2LYtEkD31Cv5Zum1Vl9UtjJHI_8Q7rUuo_cjnvc2m5VYYY9Hx4Qzf-x6VXQZHUd0uMo17m_R6ABfYAcwwoA== new file mode 100644 index 0000000..551ad31 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vvk2LYtEkD31Cv5Zum1Vl9UtjJHI_8Q7rUuo_cjnvc2m5VYYY9Hx4Qzf-x6VXQZHUd0uMo17m_R6ABfYAcwwoA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vxw7-VQwZ8VOSDUzEKYnYweYcuEgX3pXINYStD3-h3IPQ4r39q4ReK4MSdpIZojeRsv20AYQnM8Zvf15KmgwnQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vxw7-VQwZ8VOSDUzEKYnYweYcuEgX3pXINYStD3-h3IPQ4r39q4ReK4MSdpIZojeRsv20AYQnM8Zvf15KmgwnQ== new file mode 100644 index 0000000..62eb490 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~vxw7-VQwZ8VOSDUzEKYnYweYcuEgX3pXINYStD3-h3IPQ4r39q4ReK4MSdpIZojeRsv20AYQnM8Zvf15KmgwnQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~w2qpuonY8-PgD5H8eFDNJc6AZULQ_R2tYssS72PIavzQGL6pf0HUPG_MFHPLPgExElgJXSbRjxeCKI9vz167wQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~w2qpuonY8-PgD5H8eFDNJc6AZULQ_R2tYssS72PIavzQGL6pf0HUPG_MFHPLPgExElgJXSbRjxeCKI9vz167wQ== new file mode 100644 index 0000000..3bd30ae Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~w2qpuonY8-PgD5H8eFDNJc6AZULQ_R2tYssS72PIavzQGL6pf0HUPG_MFHPLPgExElgJXSbRjxeCKI9vz167wQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wH0JeF2vvgk02I6-8n9mv7-VxDg0nqv8mG8ZA6uWaIpG1W6K9oPpGLNplRLgn63_F5lqf__rbqcH5XXe6_g-fw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wH0JeF2vvgk02I6-8n9mv7-VxDg0nqv8mG8ZA6uWaIpG1W6K9oPpGLNplRLgn63_F5lqf__rbqcH5XXe6_g-fw== new file mode 100644 index 0000000..0d013e7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wH0JeF2vvgk02I6-8n9mv7-VxDg0nqv8mG8ZA6uWaIpG1W6K9oPpGLNplRLgn63_F5lqf__rbqcH5XXe6_g-fw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wHQEWcDnCbFAoB5eJlOBwTa3yad4NncNFnrIEh_zvTzAPDk_WVY2zD8zOY2OUBJIqancJy7MGqgvrs3ZEFPifg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wHQEWcDnCbFAoB5eJlOBwTa3yad4NncNFnrIEh_zvTzAPDk_WVY2zD8zOY2OUBJIqancJy7MGqgvrs3ZEFPifg== new file mode 100644 index 0000000..0763559 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wHQEWcDnCbFAoB5eJlOBwTa3yad4NncNFnrIEh_zvTzAPDk_WVY2zD8zOY2OUBJIqancJy7MGqgvrs3ZEFPifg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wNi2SHK3NfdqbbAgxTrnp_hf6Xok0mLlia8IPb0x0owSftN294RS0QQInAv4Mc5hFpfa1mu2owd_SxCiKVXMaA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wNi2SHK3NfdqbbAgxTrnp_hf6Xok0mLlia8IPb0x0owSftN294RS0QQInAv4Mc5hFpfa1mu2owd_SxCiKVXMaA== new file mode 100644 index 0000000..10fac1a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wNi2SHK3NfdqbbAgxTrnp_hf6Xok0mLlia8IPb0x0owSftN294RS0QQInAv4Mc5hFpfa1mu2owd_SxCiKVXMaA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wOwaKiixu0cc3nCg_qnq3E94Rq25ayDxvPwgZUW9noandpTFa_NHBv9ijy8dr9BS9iSna9_OTJzY-c2CmPk86g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wOwaKiixu0cc3nCg_qnq3E94Rq25ayDxvPwgZUW9noandpTFa_NHBv9ijy8dr9BS9iSna9_OTJzY-c2CmPk86g== new file mode 100644 index 0000000..4ee48bd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wOwaKiixu0cc3nCg_qnq3E94Rq25ayDxvPwgZUW9noandpTFa_NHBv9ijy8dr9BS9iSna9_OTJzY-c2CmPk86g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wR5jaNs55H2BeYDr6RzDohTppcTKUrfmif_9aHN3gnx_Vf5qkpoQaQIRfUv6G3bBxb_UUG6Si_ln4hT87OHkZg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wR5jaNs55H2BeYDr6RzDohTppcTKUrfmif_9aHN3gnx_Vf5qkpoQaQIRfUv6G3bBxb_UUG6Si_ln4hT87OHkZg== new file mode 100644 index 0000000..870d7aa Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wR5jaNs55H2BeYDr6RzDohTppcTKUrfmif_9aHN3gnx_Vf5qkpoQaQIRfUv6G3bBxb_UUG6Si_ln4hT87OHkZg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wXBPhGHDfr0sibrTIs83yaC97X7qGur1PSE8nHFzlEaDPRWV5UCip2YEsvuy0Qd5fArkCiZ_pMjtv3OhGQmUsw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wXBPhGHDfr0sibrTIs83yaC97X7qGur1PSE8nHFzlEaDPRWV5UCip2YEsvuy0Qd5fArkCiZ_pMjtv3OhGQmUsw== new file mode 100644 index 0000000..94f13ab Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wXBPhGHDfr0sibrTIs83yaC97X7qGur1PSE8nHFzlEaDPRWV5UCip2YEsvuy0Qd5fArkCiZ_pMjtv3OhGQmUsw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wYHWUU6O08qu51pcL3YI14RrMPmFkrPhyavaq1MJDzRC0A_8jEpR2v7UYM_zbHvkx-ILEvIWp_dVfAW9e-EtYA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wYHWUU6O08qu51pcL3YI14RrMPmFkrPhyavaq1MJDzRC0A_8jEpR2v7UYM_zbHvkx-ILEvIWp_dVfAW9e-EtYA== new file mode 100644 index 0000000..386da10 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wYHWUU6O08qu51pcL3YI14RrMPmFkrPhyavaq1MJDzRC0A_8jEpR2v7UYM_zbHvkx-ILEvIWp_dVfAW9e-EtYA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wa33e2JbIJdujKec4HsZZEBGFYpEUEzn6nqrxmrvLqDHL2d9jK6VJO6FmLz9snlqLh7xxb33G3A1LejXwjlc9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wa33e2JbIJdujKec4HsZZEBGFYpEUEzn6nqrxmrvLqDHL2d9jK6VJO6FmLz9snlqLh7xxb33G3A1LejXwjlc9A== new file mode 100644 index 0000000..8a95c66 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wa33e2JbIJdujKec4HsZZEBGFYpEUEzn6nqrxmrvLqDHL2d9jK6VJO6FmLz9snlqLh7xxb33G3A1LejXwjlc9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~weeVAgr8uqJwkNobn0vj7oMLbyO-zRza2FOder6rQ_YoVMWiKgeYt4yW2BEYpamrrkIQnt8wUoOR-BLQcDSKGA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~weeVAgr8uqJwkNobn0vj7oMLbyO-zRza2FOder6rQ_YoVMWiKgeYt4yW2BEYpamrrkIQnt8wUoOR-BLQcDSKGA== new file mode 100644 index 0000000..b7ec356 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~weeVAgr8uqJwkNobn0vj7oMLbyO-zRza2FOder6rQ_YoVMWiKgeYt4yW2BEYpamrrkIQnt8wUoOR-BLQcDSKGA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wfLOsF0Wqoqjo6Ep7HoWAiMpD5gZgY3MqY_9TCKrLnnInPJ9NVC9fBsSjoU-BLmYgtUIdc42Bjkmk6CLeCDLMQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wfLOsF0Wqoqjo6Ep7HoWAiMpD5gZgY3MqY_9TCKrLnnInPJ9NVC9fBsSjoU-BLmYgtUIdc42Bjkmk6CLeCDLMQ== new file mode 100644 index 0000000..faea101 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wfLOsF0Wqoqjo6Ep7HoWAiMpD5gZgY3MqY_9TCKrLnnInPJ9NVC9fBsSjoU-BLmYgtUIdc42Bjkmk6CLeCDLMQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wkWpUxrLk_bWCaJWCrqm2D5Co3bd3oumXdTTHa3qmbbE9k6Cf8rlhGba-LzJS5N6MIV6RZWWTmYZ-IOkaScbDQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wkWpUxrLk_bWCaJWCrqm2D5Co3bd3oumXdTTHa3qmbbE9k6Cf8rlhGba-LzJS5N6MIV6RZWWTmYZ-IOkaScbDQ== new file mode 100644 index 0000000..4e3cfe0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wkWpUxrLk_bWCaJWCrqm2D5Co3bd3oumXdTTHa3qmbbE9k6Cf8rlhGba-LzJS5N6MIV6RZWWTmYZ-IOkaScbDQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wkrSTxa9ijadTgzEQGOAmjN6R17sbrO8Y0UYQDW3wD6IP4xowoUYwIEiUJkWW3ZihsxnpYln50XKjBgFItZEBQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wkrSTxa9ijadTgzEQGOAmjN6R17sbrO8Y0UYQDW3wD6IP4xowoUYwIEiUJkWW3ZihsxnpYln50XKjBgFItZEBQ== new file mode 100644 index 0000000..e4c6ca1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wkrSTxa9ijadTgzEQGOAmjN6R17sbrO8Y0UYQDW3wD6IP4xowoUYwIEiUJkWW3ZihsxnpYln50XKjBgFItZEBQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wriKlwm5iRXj7YB3TZo9Ov7DORPAD7jp6iYOFfqfUMYfnF7rPlcmKYvdaw2F1xML-fE3nADEOW1wtGz0NMReXA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wriKlwm5iRXj7YB3TZo9Ov7DORPAD7jp6iYOFfqfUMYfnF7rPlcmKYvdaw2F1xML-fE3nADEOW1wtGz0NMReXA== new file mode 100644 index 0000000..11abafc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wriKlwm5iRXj7YB3TZo9Ov7DORPAD7jp6iYOFfqfUMYfnF7rPlcmKYvdaw2F1xML-fE3nADEOW1wtGz0NMReXA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wtlwRiXgjLS9oSKt40vGTKB7qaXXScVmQGX3pQhMU4HOd_8FC0dozWS1akavGweiXbOLlKESSEDrR4RepzT9Qg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wtlwRiXgjLS9oSKt40vGTKB7qaXXScVmQGX3pQhMU4HOd_8FC0dozWS1akavGweiXbOLlKESSEDrR4RepzT9Qg== new file mode 100644 index 0000000..94b556a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~wtlwRiXgjLS9oSKt40vGTKB7qaXXScVmQGX3pQhMU4HOd_8FC0dozWS1akavGweiXbOLlKESSEDrR4RepzT9Qg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~x-ZWXZMUioOjwFG1ZW1TmU-kesXW-b4jnXLy67ZOKF0icbWNElTMP-HVCEOWaISAJXoKWkESIA3tl0LlTPmwbA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~x-ZWXZMUioOjwFG1ZW1TmU-kesXW-b4jnXLy67ZOKF0icbWNElTMP-HVCEOWaISAJXoKWkESIA3tl0LlTPmwbA== new file mode 100644 index 0000000..97179ca Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~x-ZWXZMUioOjwFG1ZW1TmU-kesXW-b4jnXLy67ZOKF0icbWNElTMP-HVCEOWaISAJXoKWkESIA3tl0LlTPmwbA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~x3pG2wx4EZL4uaRi39hmYO2yGw82yHh8Z869Ywqyw6PC6sChhA_CYYdnkjmsiAZtT_gf4k8_1TChIc7bPXi-kQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~x3pG2wx4EZL4uaRi39hmYO2yGw82yHh8Z869Ywqyw6PC6sChhA_CYYdnkjmsiAZtT_gf4k8_1TChIc7bPXi-kQ== new file mode 100644 index 0000000..a891513 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~x3pG2wx4EZL4uaRi39hmYO2yGw82yHh8Z869Ywqyw6PC6sChhA_CYYdnkjmsiAZtT_gf4k8_1TChIc7bPXi-kQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xDqnX_GQyEYIbw_W_AzpBOwKyoRK_6Dqp__kTi8gxB1jKKFSgIxeVKW4yZ7e4halL8VYClEhfEu1heTU4xoZ1A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xDqnX_GQyEYIbw_W_AzpBOwKyoRK_6Dqp__kTi8gxB1jKKFSgIxeVKW4yZ7e4halL8VYClEhfEu1heTU4xoZ1A== new file mode 100644 index 0000000..45d454b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xDqnX_GQyEYIbw_W_AzpBOwKyoRK_6Dqp__kTi8gxB1jKKFSgIxeVKW4yZ7e4halL8VYClEhfEu1heTU4xoZ1A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xEPbVKJgI18BLAxh_LjkamCp13Z7M-IPmRwvgmGt4UG00OoPm1IxnzW51q1GFfS-s7PbV-8lNhnPOiT7vP7IFQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xEPbVKJgI18BLAxh_LjkamCp13Z7M-IPmRwvgmGt4UG00OoPm1IxnzW51q1GFfS-s7PbV-8lNhnPOiT7vP7IFQ== new file mode 100644 index 0000000..8cf0012 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xEPbVKJgI18BLAxh_LjkamCp13Z7M-IPmRwvgmGt4UG00OoPm1IxnzW51q1GFfS-s7PbV-8lNhnPOiT7vP7IFQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xLhYOVOaFBb0DYLHGiEIVp8myPh9_pfLltp5wMQAryDa3DWrcFsNqxxIiEbCwt4AWpdYYmJnjdoJkQJ3X6qFvg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xLhYOVOaFBb0DYLHGiEIVp8myPh9_pfLltp5wMQAryDa3DWrcFsNqxxIiEbCwt4AWpdYYmJnjdoJkQJ3X6qFvg== new file mode 100644 index 0000000..bdf2c04 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xLhYOVOaFBb0DYLHGiEIVp8myPh9_pfLltp5wMQAryDa3DWrcFsNqxxIiEbCwt4AWpdYYmJnjdoJkQJ3X6qFvg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xQQtmslhu8pBWCiHCpePJcV2InDyyQwVg-5fDC0dlg_V7efiUntpB_yoMNLqyHt-5qcoL6gigF4JX8zr1zVxrw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xQQtmslhu8pBWCiHCpePJcV2InDyyQwVg-5fDC0dlg_V7efiUntpB_yoMNLqyHt-5qcoL6gigF4JX8zr1zVxrw== new file mode 100644 index 0000000..df20bce Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xQQtmslhu8pBWCiHCpePJcV2InDyyQwVg-5fDC0dlg_V7efiUntpB_yoMNLqyHt-5qcoL6gigF4JX8zr1zVxrw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xSqPIrEv5cVLWmEWtem0u9YM643qLQQQLZfFILQlH3XDUpN3QRN7fOKR2Nddo7xI8f7hcv7PIAXQRzkao5UsLA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xSqPIrEv5cVLWmEWtem0u9YM643qLQQQLZfFILQlH3XDUpN3QRN7fOKR2Nddo7xI8f7hcv7PIAXQRzkao5UsLA== new file mode 100644 index 0000000..035ac25 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xSqPIrEv5cVLWmEWtem0u9YM643qLQQQLZfFILQlH3XDUpN3QRN7fOKR2Nddo7xI8f7hcv7PIAXQRzkao5UsLA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xVCfOPVlxSijbj59md8qB4nO-JphdDZuRLKliwZ11Lxm-zuiZqNlKle4Rfx4NQJ_ktRgPohkiOZPhq_xHFn-yQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xVCfOPVlxSijbj59md8qB4nO-JphdDZuRLKliwZ11Lxm-zuiZqNlKle4Rfx4NQJ_ktRgPohkiOZPhq_xHFn-yQ== new file mode 100644 index 0000000..7b1b498 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xVCfOPVlxSijbj59md8qB4nO-JphdDZuRLKliwZ11Lxm-zuiZqNlKle4Rfx4NQJ_ktRgPohkiOZPhq_xHFn-yQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xVI3-ue9L1131Uq8Kco5wZk51hmFT4LmHTm7msvMjkkN_8qKoWF_NGS6-praa6CXj4aYaZvMprf6NCOYwdXaWw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xVI3-ue9L1131Uq8Kco5wZk51hmFT4LmHTm7msvMjkkN_8qKoWF_NGS6-praa6CXj4aYaZvMprf6NCOYwdXaWw== new file mode 100644 index 0000000..6ab94f0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xVI3-ue9L1131Uq8Kco5wZk51hmFT4LmHTm7msvMjkkN_8qKoWF_NGS6-praa6CXj4aYaZvMprf6NCOYwdXaWw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xbN9BYMDyB7554_-k2EjgYRLsijf4vA-jFJqiGGcW9zMf4FzOuZoEmcmJrnOlc-PS1vV61w5MgxQqmdDTn2d8g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xbN9BYMDyB7554_-k2EjgYRLsijf4vA-jFJqiGGcW9zMf4FzOuZoEmcmJrnOlc-PS1vV61w5MgxQqmdDTn2d8g== new file mode 100644 index 0000000..7c9e129 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xbN9BYMDyB7554_-k2EjgYRLsijf4vA-jFJqiGGcW9zMf4FzOuZoEmcmJrnOlc-PS1vV61w5MgxQqmdDTn2d8g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xceLUs3FYvEDTV_j873mQGU2LGq8JXW0e7WPMPUm7wKo31Edr43z_KftrVwYM17iZP9-xHiMub_S3X06jSFROQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xceLUs3FYvEDTV_j873mQGU2LGq8JXW0e7WPMPUm7wKo31Edr43z_KftrVwYM17iZP9-xHiMub_S3X06jSFROQ== new file mode 100644 index 0000000..e86d81d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xceLUs3FYvEDTV_j873mQGU2LGq8JXW0e7WPMPUm7wKo31Edr43z_KftrVwYM17iZP9-xHiMub_S3X06jSFROQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xg-7ZzrCeEpw1FAJ0OIkiYzgYIwK0n-Hgwt7XeaL6L7FL9-4inh48jVMlOLUfaqFRJHvePl8AuBy77cnfV4csQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xg-7ZzrCeEpw1FAJ0OIkiYzgYIwK0n-Hgwt7XeaL6L7FL9-4inh48jVMlOLUfaqFRJHvePl8AuBy77cnfV4csQ== new file mode 100644 index 0000000..17dd296 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xg-7ZzrCeEpw1FAJ0OIkiYzgYIwK0n-Hgwt7XeaL6L7FL9-4inh48jVMlOLUfaqFRJHvePl8AuBy77cnfV4csQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xh81QqPKJoKvab5YVfR3KI7EXTbdrJPngg5yBitGl-eQwLpHmWE2GW796q3Y1pia-Ze3EigLbMREGh2G-R5xYw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xh81QqPKJoKvab5YVfR3KI7EXTbdrJPngg5yBitGl-eQwLpHmWE2GW796q3Y1pia-Ze3EigLbMREGh2G-R5xYw== new file mode 100644 index 0000000..a757505 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xh81QqPKJoKvab5YVfR3KI7EXTbdrJPngg5yBitGl-eQwLpHmWE2GW796q3Y1pia-Ze3EigLbMREGh2G-R5xYw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xp119iJSQCqNFue3lj4LVjuGPsOpJw8FGp5ngRrLfVbtFfBBy-J6h5wQmGbJMVGRJDeDCMxsQFystgUlNb19Mg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xp119iJSQCqNFue3lj4LVjuGPsOpJw8FGp5ngRrLfVbtFfBBy-J6h5wQmGbJMVGRJDeDCMxsQFystgUlNb19Mg== new file mode 100644 index 0000000..d742060 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xp119iJSQCqNFue3lj4LVjuGPsOpJw8FGp5ngRrLfVbtFfBBy-J6h5wQmGbJMVGRJDeDCMxsQFystgUlNb19Mg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xpEBsrCjRGJs3vkkPvSPdcZk5wwbRiusFtl5W0vkQRQsvgU7g4IYEWwU5Xhx2iZK1BqK0rum-gYdPkKuXF0DTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xpEBsrCjRGJs3vkkPvSPdcZk5wwbRiusFtl5W0vkQRQsvgU7g4IYEWwU5Xhx2iZK1BqK0rum-gYdPkKuXF0DTw== new file mode 100644 index 0000000..662a742 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xpEBsrCjRGJs3vkkPvSPdcZk5wwbRiusFtl5W0vkQRQsvgU7g4IYEWwU5Xhx2iZK1BqK0rum-gYdPkKuXF0DTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xxk_9ZrIaVN_kYp6aK-6QFyeA_5DSFIVNyCkBLS4WUV0h5P_0BUX1FdsjfYPV3YwsdhKhOOclfADuu3XOZjK8g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xxk_9ZrIaVN_kYp6aK-6QFyeA_5DSFIVNyCkBLS4WUV0h5P_0BUX1FdsjfYPV3YwsdhKhOOclfADuu3XOZjK8g== new file mode 100644 index 0000000..69c29c4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~xxk_9ZrIaVN_kYp6aK-6QFyeA_5DSFIVNyCkBLS4WUV0h5P_0BUX1FdsjfYPV3YwsdhKhOOclfADuu3XOZjK8g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~y2WNPH_CHlsY_jVaJT1ohvEfizyycyjcS2bcAvRwl-y-3Vd2HboOONdc_UD9sEGm96ntBI38eYESlybbjLfYSQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~y2WNPH_CHlsY_jVaJT1ohvEfizyycyjcS2bcAvRwl-y-3Vd2HboOONdc_UD9sEGm96ntBI38eYESlybbjLfYSQ== new file mode 100644 index 0000000..e3613aa Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~y2WNPH_CHlsY_jVaJT1ohvEfizyycyjcS2bcAvRwl-y-3Vd2HboOONdc_UD9sEGm96ntBI38eYESlybbjLfYSQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~y8uR9aO8K2dBLwiz7v0CRL9vBYQQ9BQOZ0eBISgsYnT3rpmCLaXGZ8kxB9GToj0GMo0NHM0n4IfMS-Hf6I7Jgg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~y8uR9aO8K2dBLwiz7v0CRL9vBYQQ9BQOZ0eBISgsYnT3rpmCLaXGZ8kxB9GToj0GMo0NHM0n4IfMS-Hf6I7Jgg== new file mode 100644 index 0000000..57c4da1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~y8uR9aO8K2dBLwiz7v0CRL9vBYQQ9BQOZ0eBISgsYnT3rpmCLaXGZ8kxB9GToj0GMo0NHM0n4IfMS-Hf6I7Jgg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yAaiUN0WmUupKZdk1eQM1LCT6nYY1vwndL2TmhyTkwDGsYHWjPhooXTIQIgtYsnRBHhJWSqr9Tcz9rK-nWPU1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yAaiUN0WmUupKZdk1eQM1LCT6nYY1vwndL2TmhyTkwDGsYHWjPhooXTIQIgtYsnRBHhJWSqr9Tcz9rK-nWPU1g== new file mode 100644 index 0000000..ed57ac7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yAaiUN0WmUupKZdk1eQM1LCT6nYY1vwndL2TmhyTkwDGsYHWjPhooXTIQIgtYsnRBHhJWSqr9Tcz9rK-nWPU1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yC02gFRWUNlVr6hsZyoE39h8KsJOxlrRx4zLHML4XRsH4XTgwpYOSTG6s884LzmNeLIvWZauRCLSChGDlNE-xA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yC02gFRWUNlVr6hsZyoE39h8KsJOxlrRx4zLHML4XRsH4XTgwpYOSTG6s884LzmNeLIvWZauRCLSChGDlNE-xA== new file mode 100644 index 0000000..bed186d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yC02gFRWUNlVr6hsZyoE39h8KsJOxlrRx4zLHML4XRsH4XTgwpYOSTG6s884LzmNeLIvWZauRCLSChGDlNE-xA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yETPYdzMv86nwK01Lonj7-Rdl34aPUOzDZpHMWaxQh1mkYzAYGMf5NTpIUwzGL5_pIAT3GwAGwhiqktM_oSxmA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yETPYdzMv86nwK01Lonj7-Rdl34aPUOzDZpHMWaxQh1mkYzAYGMf5NTpIUwzGL5_pIAT3GwAGwhiqktM_oSxmA== new file mode 100644 index 0000000..206ed91 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yETPYdzMv86nwK01Lonj7-Rdl34aPUOzDZpHMWaxQh1mkYzAYGMf5NTpIUwzGL5_pIAT3GwAGwhiqktM_oSxmA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yEgwPsIzSVxeU-4GqpxzXzt7YHIun8QnF1ogMfkZ-Eu_MaoFancLXe--pL6t92jNDGqhPBbanB7XxfQuPfnf-Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yEgwPsIzSVxeU-4GqpxzXzt7YHIun8QnF1ogMfkZ-Eu_MaoFancLXe--pL6t92jNDGqhPBbanB7XxfQuPfnf-Q== new file mode 100644 index 0000000..4d7250c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yEgwPsIzSVxeU-4GqpxzXzt7YHIun8QnF1ogMfkZ-Eu_MaoFancLXe--pL6t92jNDGqhPBbanB7XxfQuPfnf-Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yJD8CkxUI_1SsILIp1z-MDksVDE-5WHUD1zkddiinMa3dYExnW6d7zDvcahbxCjOdOUUvhm0b8TVTIo9PAqvLA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yJD8CkxUI_1SsILIp1z-MDksVDE-5WHUD1zkddiinMa3dYExnW6d7zDvcahbxCjOdOUUvhm0b8TVTIo9PAqvLA== new file mode 100644 index 0000000..f78921e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yJD8CkxUI_1SsILIp1z-MDksVDE-5WHUD1zkddiinMa3dYExnW6d7zDvcahbxCjOdOUUvhm0b8TVTIo9PAqvLA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yMuWdhvf0zUqqz3SxIzJP_bocA_7Qiw1Qw6VOSa9xI91tICGsgM4955a0Mo_9JOKjiasYyzIdz2lmhEedBImLQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yMuWdhvf0zUqqz3SxIzJP_bocA_7Qiw1Qw6VOSa9xI91tICGsgM4955a0Mo_9JOKjiasYyzIdz2lmhEedBImLQ== new file mode 100644 index 0000000..5c78f84 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yMuWdhvf0zUqqz3SxIzJP_bocA_7Qiw1Qw6VOSa9xI91tICGsgM4955a0Mo_9JOKjiasYyzIdz2lmhEedBImLQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yQkDMMX9omcJUx8EYUbmCSivSn-rRmsL4LskV7UVDPQUaC5OEoVBOiVYeKkunWoqXfGvdh-NwWTzQU9wenMBiw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yQkDMMX9omcJUx8EYUbmCSivSn-rRmsL4LskV7UVDPQUaC5OEoVBOiVYeKkunWoqXfGvdh-NwWTzQU9wenMBiw== new file mode 100644 index 0000000..b9f88e4 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yQkDMMX9omcJUx8EYUbmCSivSn-rRmsL4LskV7UVDPQUaC5OEoVBOiVYeKkunWoqXfGvdh-NwWTzQU9wenMBiw== @@ -0,0 +1 @@ +[{"type":2,"name":"SpeechLogs"}] \ No newline at end of file diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ySy2C6my5EvZQ6jJLgRSXoP3caqZAel-9hI5F1_zuol8WEAot0pQ-adeWcQs68Eps2QEUge7Q6jlvuumE-guAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ySy2C6my5EvZQ6jJLgRSXoP3caqZAel-9hI5F1_zuol8WEAot0pQ-adeWcQs68Eps2QEUge7Q6jlvuumE-guAg== new file mode 100644 index 0000000..c595ad9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ySy2C6my5EvZQ6jJLgRSXoP3caqZAel-9hI5F1_zuol8WEAot0pQ-adeWcQs68Eps2QEUge7Q6jlvuumE-guAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yV3FK9MMHcOGnmVpAqarRbkZtHI4d0Fq5UO_Bpp2GC_XSgGdEw5zv98UMm4Y5K89_SFwIPF4zBH0yeX7_u02cg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yV3FK9MMHcOGnmVpAqarRbkZtHI4d0Fq5UO_Bpp2GC_XSgGdEw5zv98UMm4Y5K89_SFwIPF4zBH0yeX7_u02cg== new file mode 100644 index 0000000..4a6f0b8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yV3FK9MMHcOGnmVpAqarRbkZtHI4d0Fq5UO_Bpp2GC_XSgGdEw5zv98UMm4Y5K89_SFwIPF4zBH0yeX7_u02cg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ynfEX8mYzZyiDaifOjF3S40TeBLM8VVgasHJ7Prfa8_iCX7kgHsrd-9rzCtDeudpQLoaE2ccV_BAs7JBz7Fzdg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ynfEX8mYzZyiDaifOjF3S40TeBLM8VVgasHJ7Prfa8_iCX7kgHsrd-9rzCtDeudpQLoaE2ccV_BAs7JBz7Fzdg== new file mode 100644 index 0000000..a8b9e36 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ynfEX8mYzZyiDaifOjF3S40TeBLM8VVgasHJ7Prfa8_iCX7kgHsrd-9rzCtDeudpQLoaE2ccV_BAs7JBz7Fzdg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ysLqjzVSKBKREC2w2nYPMLKYELMUKsfSGPjfq-cplWxCZ-mwRiiCVbdCma58q73vfyi8gP4S7Hpg2mO3PnFg1Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ysLqjzVSKBKREC2w2nYPMLKYELMUKsfSGPjfq-cplWxCZ-mwRiiCVbdCma58q73vfyi8gP4S7Hpg2mO3PnFg1Q== new file mode 100644 index 0000000..702e090 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ysLqjzVSKBKREC2w2nYPMLKYELMUKsfSGPjfq-cplWxCZ-mwRiiCVbdCma58q73vfyi8gP4S7Hpg2mO3PnFg1Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yuCOIeGMlr1sxGwTv9yF4zBA0khHnwuxUiaxBRUK9NUJbKDR84ghtk1R3rGJCi3BUnT7EQumaCFQ8dhbfOoQYw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yuCOIeGMlr1sxGwTv9yF4zBA0khHnwuxUiaxBRUK9NUJbKDR84ghtk1R3rGJCi3BUnT7EQumaCFQ8dhbfOoQYw== new file mode 100644 index 0000000..2993df8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yuCOIeGMlr1sxGwTv9yF4zBA0khHnwuxUiaxBRUK9NUJbKDR84ghtk1R3rGJCi3BUnT7EQumaCFQ8dhbfOoQYw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ywf1G4dDtADbdy9pBYSpV9IJ2_6g-1z-ZLU8YG4sucJYgp1Cyz0etUlk-vdxoCIxcSquzPH2kRoE9NlfooxahA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ywf1G4dDtADbdy9pBYSpV9IJ2_6g-1z-ZLU8YG4sucJYgp1Cyz0etUlk-vdxoCIxcSquzPH2kRoE9NlfooxahA== new file mode 100644 index 0000000..dad7cec Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ywf1G4dDtADbdy9pBYSpV9IJ2_6g-1z-ZLU8YG4sucJYgp1Cyz0etUlk-vdxoCIxcSquzPH2kRoE9NlfooxahA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yy8m2DfmWqaWfPq2IHJHRhospkJYSNzQLzywlGTfon-rolgmPR7w2WpoJud7optTEd7nlDQ0UFMjuBAYvmhCYQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yy8m2DfmWqaWfPq2IHJHRhospkJYSNzQLzywlGTfon-rolgmPR7w2WpoJud7optTEd7nlDQ0UFMjuBAYvmhCYQ== new file mode 100644 index 0000000..cd2665d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yy8m2DfmWqaWfPq2IHJHRhospkJYSNzQLzywlGTfon-rolgmPR7w2WpoJud7optTEd7nlDQ0UFMjuBAYvmhCYQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yyXManYewUav9Cd6jiw21Vpq2T4RX0gSvMO9k9f45i-wCqyZtnPAFkG8yZ76ETV_TUCoH5VOFUSmRwi6PyXxsw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yyXManYewUav9Cd6jiw21Vpq2T4RX0gSvMO9k9f45i-wCqyZtnPAFkG8yZ76ETV_TUCoH5VOFUSmRwi6PyXxsw== new file mode 100644 index 0000000..5bf8980 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~yyXManYewUav9Cd6jiw21Vpq2T4RX0gSvMO9k9f45i-wCqyZtnPAFkG8yZ76ETV_TUCoH5VOFUSmRwi6PyXxsw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~z-quN9yClo53Yvl93Ee0H4OVg8cTzRPlqCXeTCBy3oSvh8Kp4GQhMJPHwYtwoq2uBbG8yIqgImDYK_MKxbNaLQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~z-quN9yClo53Yvl93Ee0H4OVg8cTzRPlqCXeTCBy3oSvh8Kp4GQhMJPHwYtwoq2uBbG8yIqgImDYK_MKxbNaLQ== new file mode 100644 index 0000000..2b0bc54 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~z-quN9yClo53Yvl93Ee0H4OVg8cTzRPlqCXeTCBy3oSvh8Kp4GQhMJPHwYtwoq2uBbG8yIqgImDYK_MKxbNaLQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~z1l5mrVymacBVP9-qI5ChWDue5BotV0tlL75wuwqueJxeo_56REiOo6k7KtIKLaDgWAaBriYW9wwR7NfRrGF3A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~z1l5mrVymacBVP9-qI5ChWDue5BotV0tlL75wuwqueJxeo_56REiOo6k7KtIKLaDgWAaBriYW9wwR7NfRrGF3A== new file mode 100644 index 0000000..f8df7ba Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~z1l5mrVymacBVP9-qI5ChWDue5BotV0tlL75wuwqueJxeo_56REiOo6k7KtIKLaDgWAaBriYW9wwR7NfRrGF3A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zKPBCK04_ajFs8rsWZVhpXQ_QocJDVa45MLNwyxExLZdbWJAvunO7yRHUWCflO-3emAzNxoYiAvrsOqfI0h0gw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zKPBCK04_ajFs8rsWZVhpXQ_QocJDVa45MLNwyxExLZdbWJAvunO7yRHUWCflO-3emAzNxoYiAvrsOqfI0h0gw== new file mode 100644 index 0000000..5de32bc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zKPBCK04_ajFs8rsWZVhpXQ_QocJDVa45MLNwyxExLZdbWJAvunO7yRHUWCflO-3emAzNxoYiAvrsOqfI0h0gw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zO_y7c2IXC8gfTbnN2oxPFiuP8q8phMiMNz7v8YwnCLQa0BTxfcwxVMK-6Bz7yE7GjczKISauKoK6CwluB2Axw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zO_y7c2IXC8gfTbnN2oxPFiuP8q8phMiMNz7v8YwnCLQa0BTxfcwxVMK-6Bz7yE7GjczKISauKoK6CwluB2Axw== new file mode 100644 index 0000000..8d7c355 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zO_y7c2IXC8gfTbnN2oxPFiuP8q8phMiMNz7v8YwnCLQa0BTxfcwxVMK-6Bz7yE7GjczKISauKoK6CwluB2Axw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zdBXtN_sxLzUrvM0ORhQPmJHwBs4Q_X4lboD6S4JEhP-w9R19WVW4U9lnR7XrR27ZFRkmE6Yl3SyKDPAt7Lt9g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zdBXtN_sxLzUrvM0ORhQPmJHwBs4Q_X4lboD6S4JEhP-w9R19WVW4U9lnR7XrR27ZFRkmE6Yl3SyKDPAt7Lt9g== new file mode 100644 index 0000000..2cb9156 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zdBXtN_sxLzUrvM0ORhQPmJHwBs4Q_X4lboD6S4JEhP-w9R19WVW4U9lnR7XrR27ZFRkmE6Yl3SyKDPAt7Lt9g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zkvrVNEP5NeVateuhM-PjHQFRXYQxRgDoTMeh1Gl_mhy5Tl_LlDbyErGemMzUeFtRFszknbOVWP2MuFiGuqwrA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zkvrVNEP5NeVateuhM-PjHQFRXYQxRgDoTMeh1Gl_mhy5Tl_LlDbyErGemMzUeFtRFszknbOVWP2MuFiGuqwrA== new file mode 100644 index 0000000..4703d51 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zkvrVNEP5NeVateuhM-PjHQFRXYQxRgDoTMeh1Gl_mhy5Tl_LlDbyErGemMzUeFtRFszknbOVWP2MuFiGuqwrA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zlh1QBogHzjt4N12Y7XUS_MRBy3anLfFNjuxZfA5fakzgoTnKWBrBOPt1nf2JhYUrTS6XdKgs3UXBAF2nX3Fsw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zlh1QBogHzjt4N12Y7XUS_MRBy3anLfFNjuxZfA5fakzgoTnKWBrBOPt1nf2JhYUrTS6XdKgs3UXBAF2nX3Fsw== new file mode 100644 index 0000000..c35aa69 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zlh1QBogHzjt4N12Y7XUS_MRBy3anLfFNjuxZfA5fakzgoTnKWBrBOPt1nf2JhYUrTS6XdKgs3UXBAF2nX3Fsw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ztR2y5kMupz0AtncDgQPR_Z3royuRdAzNqY6Ynu-bszW9rKcLr3W6Uw3zpkOseEFa1Ze1MK28ciLW-Ar5jl7pg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ztR2y5kMupz0AtncDgQPR_Z3royuRdAzNqY6Ynu-bszW9rKcLr3W6Uw3zpkOseEFa1Ze1MK28ciLW-Ar5jl7pg== new file mode 100644 index 0000000..7971b31 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~ztR2y5kMupz0AtncDgQPR_Z3royuRdAzNqY6Ynu-bszW9rKcLr3W6Uw3zpkOseEFa1Ze1MK28ciLW-Ar5jl7pg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zxVzMP8J82ODSUSPCxkOY1va2D2dit0OTr-y-iHnjR7JBzuIpDgniTm2Uz3xALawd8mLpSKsacAH_w0TzagC5g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zxVzMP8J82ODSUSPCxkOY1va2D2dit0OTr-y-iHnjR7JBzuIpDgniTm2Uz3xALawd8mLpSKsacAH_w0TzagC5g== new file mode 100644 index 0000000..829fd02 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zxVzMP8J82ODSUSPCxkOY1va2D2dit0OTr-y-iHnjR7JBzuIpDgniTm2Uz3xALawd8mLpSKsacAH_w0TzagC5g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zyUYAVbDp9oJ3HV8Xgzr8qpyXnTX2dUAmsSbSqvH-_Se6njshg3UOBRaoPwEPLJux5UV7hlVHLaCOTI4FYVb_Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zyUYAVbDp9oJ3HV8Xgzr8qpyXnTX2dUAmsSbSqvH-_Se6njshg3UOBRaoPwEPLJux5UV7hlVHLaCOTI4FYVb_Q== new file mode 100644 index 0000000..84ffe70 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zyUYAVbDp9oJ3HV8Xgzr8qpyXnTX2dUAmsSbSqvH-_Se6njshg3UOBRaoPwEPLJux5UV7hlVHLaCOTI4FYVb_Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zzTRYXhKbElMT1LGBv4S6Q-ziAq-hgM9jJ8O2imyA2Q7WHSzzgbB7wufRSfk2s2jCa8nq7zTSSLAFiRfgoxOgA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zzTRYXhKbElMT1LGBv4S6Q-ziAq-hgM9jJ8O2imyA2Q7WHSzzgbB7wufRSfk2s2jCa8nq7zTSSLAFiRfgoxOgA== new file mode 100644 index 0000000..c55ba75 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/data.0~zzTRYXhKbElMT1LGBv4S6Q-ziAq-hgM9jJ8O2imyA2Q7WHSzzgbB7wufRSfk2s2jCa8nq7zTSSLAFiRfgoxOgA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-F3ENvqJLTYuSPeFk6chby1RZlU-SU_C8lCw0IaDJN6uc8eYA8Z0bzdgp-yTHsZo5E3aDSOgnp3NSpW1-k5G5g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-F3ENvqJLTYuSPeFk6chby1RZlU-SU_C8lCw0IaDJN6uc8eYA8Z0bzdgp-yTHsZo5E3aDSOgnp3NSpW1-k5G5g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-F3ENvqJLTYuSPeFk6chby1RZlU-SU_C8lCw0IaDJN6uc8eYA8Z0bzdgp-yTHsZo5E3aDSOgnp3NSpW1-k5G5g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-MC1wZUWC3FdI4gEXhxwP8TWNNC_Q3RkdF8lKr3WwThyJTNmnlx37WQjiK2ywmtmyB495louBWAHU7_bPJnPkw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-MC1wZUWC3FdI4gEXhxwP8TWNNC_Q3RkdF8lKr3WwThyJTNmnlx37WQjiK2ywmtmyB495louBWAHU7_bPJnPkw== new file mode 100644 index 0000000..5bb9a7e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-MC1wZUWC3FdI4gEXhxwP8TWNNC_Q3RkdF8lKr3WwThyJTNmnlx37WQjiK2ywmtmyB495louBWAHU7_bPJnPkw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-MrJR0kehlHwRngkp-YiOs835bWvPDem5fDKLwGhrEjCwIRL373LtHwydfhp98UDoFanQhJz3Ky37tnYIzlUtw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-MrJR0kehlHwRngkp-YiOs835bWvPDem5fDKLwGhrEjCwIRL373LtHwydfhp98UDoFanQhJz3Ky37tnYIzlUtw== new file mode 100644 index 0000000..c79d6fc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-MrJR0kehlHwRngkp-YiOs835bWvPDem5fDKLwGhrEjCwIRL373LtHwydfhp98UDoFanQhJz3Ky37tnYIzlUtw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-Zh0FxvJ8wF6szOkbyH2x6p6MHAVAJX5hO_u_zS2PzmSqFnmpyPITs1H87ji76S-64AmtlsdO0a6LJuPfhcH_Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-Zh0FxvJ8wF6szOkbyH2x6p6MHAVAJX5hO_u_zS2PzmSqFnmpyPITs1H87ji76S-64AmtlsdO0a6LJuPfhcH_Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-Zh0FxvJ8wF6szOkbyH2x6p6MHAVAJX5hO_u_zS2PzmSqFnmpyPITs1H87ji76S-64AmtlsdO0a6LJuPfhcH_Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-_cp67sUaGPrYXR6PCRzhszN9Zu1hLLQGaQHs2zKvNT0ITevOk8rZbYluhiIdpHYD9dGJ2vpkI9IdNaY5Nfs4g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-_cp67sUaGPrYXR6PCRzhszN9Zu1hLLQGaQHs2zKvNT0ITevOk8rZbYluhiIdpHYD9dGJ2vpkI9IdNaY5Nfs4g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-_cp67sUaGPrYXR6PCRzhszN9Zu1hLLQGaQHs2zKvNT0ITevOk8rZbYluhiIdpHYD9dGJ2vpkI9IdNaY5Nfs4g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-dv1SX05ytulGJDm0CugshK0Yj0MLmkXqqvTVc8qgaVUOmaerut6dioocIGBwWrzuGtNmEnq1v9UVnzy8Q3j7g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-dv1SX05ytulGJDm0CugshK0Yj0MLmkXqqvTVc8qgaVUOmaerut6dioocIGBwWrzuGtNmEnq1v9UVnzy8Q3j7g== new file mode 100644 index 0000000..4d06a0f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-dv1SX05ytulGJDm0CugshK0Yj0MLmkXqqvTVc8qgaVUOmaerut6dioocIGBwWrzuGtNmEnq1v9UVnzy8Q3j7g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-lQRBjtkRCL86pXtqv_aNbNY1-_EgiMG-xsSr3rSDgL5FvUIUjqSkfpZQgfxXaUL5QJ912KNa1UOFrNLHkef1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-lQRBjtkRCL86pXtqv_aNbNY1-_EgiMG-xsSr3rSDgL5FvUIUjqSkfpZQgfxXaUL5QJ912KNa1UOFrNLHkef1g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-lQRBjtkRCL86pXtqv_aNbNY1-_EgiMG-xsSr3rSDgL5FvUIUjqSkfpZQgfxXaUL5QJ912KNa1UOFrNLHkef1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-pJejhFmnAFWmJ__IKgfr1RLgTnenVBg0lJzylXh0cg8fsFCwpwVCsh-I79nmCjTQagylnZ2huBW7OcQMKYTAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-pJejhFmnAFWmJ__IKgfr1RLgTnenVBg0lJzylXh0cg8fsFCwpwVCsh-I79nmCjTQagylnZ2huBW7OcQMKYTAg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-pJejhFmnAFWmJ__IKgfr1RLgTnenVBg0lJzylXh0cg8fsFCwpwVCsh-I79nmCjTQagylnZ2huBW7OcQMKYTAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-tr1SQ77h-lx1AySC-Q0WtIYUJZxtVWhd4d84AV1JFk6yQhiNgNsIMVcGIOkEvkb3hGkbXxe0pFFCv5tShaeBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-tr1SQ77h-lx1AySC-Q0WtIYUJZxtVWhd4d84AV1JFk6yQhiNgNsIMVcGIOkEvkb3hGkbXxe0pFFCv5tShaeBA== new file mode 100644 index 0000000..cfbdca8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-tr1SQ77h-lx1AySC-Q0WtIYUJZxtVWhd4d84AV1JFk6yQhiNgNsIMVcGIOkEvkb3hGkbXxe0pFFCv5tShaeBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-ut6GyP8-BpM0CGnAyWRF2qx6coHV0f75ZgNLFfoAa4BL4Crk_TnP0ArncVaXm2WCkV0bwJ9fnFOHrkEgzQo-A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-ut6GyP8-BpM0CGnAyWRF2qx6coHV0f75ZgNLFfoAa4BL4Crk_TnP0ArncVaXm2WCkV0bwJ9fnFOHrkEgzQo-A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-ut6GyP8-BpM0CGnAyWRF2qx6coHV0f75ZgNLFfoAa4BL4Crk_TnP0ArncVaXm2WCkV0bwJ9fnFOHrkEgzQo-A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-vNA8BXUDlMRGjxTGsN3_BfpQ94vgXuCoT8aBuBqvMyVZrsWEPORhzBZrEe_11EQ2GqXHoAmH0WAhQwYzgCtjA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-vNA8BXUDlMRGjxTGsN3_BfpQ94vgXuCoT8aBuBqvMyVZrsWEPORhzBZrEe_11EQ2GqXHoAmH0WAhQwYzgCtjA== new file mode 100644 index 0000000..19dc889 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-vNA8BXUDlMRGjxTGsN3_BfpQ94vgXuCoT8aBuBqvMyVZrsWEPORhzBZrEe_11EQ2GqXHoAmH0WAhQwYzgCtjA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-wlrk1c_t0_Ek_P9qyksYZ07-d4MKIqlqPBR7p4_5CE5qTtANaMA4eOBhl8bgHJrjSFgN0Bp5nyqN5jgVlHWVg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-wlrk1c_t0_Ek_P9qyksYZ07-d4MKIqlqPBR7p4_5CE5qTtANaMA4eOBhl8bgHJrjSFgN0Bp5nyqN5jgVlHWVg== new file mode 100644 index 0000000..d6416d0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~-wlrk1c_t0_Ek_P9qyksYZ07-d4MKIqlqPBR7p4_5CE5qTtANaMA4eOBhl8bgHJrjSFgN0Bp5nyqN5jgVlHWVg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~07ZDLx2cBnQdBo9PYwh2TG90P0C0TlBhR31RF4ETbXxYc6FqZv7leLBQSsR06PvoFeyRxQt6ILiWAC7QpT8hOw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~07ZDLx2cBnQdBo9PYwh2TG90P0C0TlBhR31RF4ETbXxYc6FqZv7leLBQSsR06PvoFeyRxQt6ILiWAC7QpT8hOw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~07ZDLx2cBnQdBo9PYwh2TG90P0C0TlBhR31RF4ETbXxYc6FqZv7leLBQSsR06PvoFeyRxQt6ILiWAC7QpT8hOw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~08AhkoKRYKo5HeY6pMzGs6CG-g0Ou1tMOrUvw2o8avvXgDHmOPi8gAMvJgYmpLrgXm9YJdtLz1glAyx5FZ7HpA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~08AhkoKRYKo5HeY6pMzGs6CG-g0Ou1tMOrUvw2o8avvXgDHmOPi8gAMvJgYmpLrgXm9YJdtLz1glAyx5FZ7HpA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~08AhkoKRYKo5HeY6pMzGs6CG-g0Ou1tMOrUvw2o8avvXgDHmOPi8gAMvJgYmpLrgXm9YJdtLz1glAyx5FZ7HpA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0DsqvI8QidR0RScn3a7oQ41E_DzXw4P2YX2VxoOO8UwI32tmxDbzrT7YC_Xr5D5b4cMzGgOXDhrVRAKeWl6ksw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0DsqvI8QidR0RScn3a7oQ41E_DzXw4P2YX2VxoOO8UwI32tmxDbzrT7YC_Xr5D5b4cMzGgOXDhrVRAKeWl6ksw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0DsqvI8QidR0RScn3a7oQ41E_DzXw4P2YX2VxoOO8UwI32tmxDbzrT7YC_Xr5D5b4cMzGgOXDhrVRAKeWl6ksw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0F9Tpx2P730NFCOL6nitzxtf59JsPH8PF5Z_CYTZDJLagRhnZbCR8UJjex5OC3yqcy_abuDfdvRb3XCsY1bq6w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0F9Tpx2P730NFCOL6nitzxtf59JsPH8PF5Z_CYTZDJLagRhnZbCR8UJjex5OC3yqcy_abuDfdvRb3XCsY1bq6w== new file mode 100644 index 0000000..b87f85c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0F9Tpx2P730NFCOL6nitzxtf59JsPH8PF5Z_CYTZDJLagRhnZbCR8UJjex5OC3yqcy_abuDfdvRb3XCsY1bq6w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0FtAfzU6bgitp01oxMIKRHcied2eu-IXpY8QZEirZXi8XYbLDIfxQggn_BrmfsV9sA4zU6K5ggdAyp0OdfOpSg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0FtAfzU6bgitp01oxMIKRHcied2eu-IXpY8QZEirZXi8XYbLDIfxQggn_BrmfsV9sA4zU6K5ggdAyp0OdfOpSg== new file mode 100644 index 0000000..d42d36f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0FtAfzU6bgitp01oxMIKRHcied2eu-IXpY8QZEirZXi8XYbLDIfxQggn_BrmfsV9sA4zU6K5ggdAyp0OdfOpSg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0HwEN6RBxkvT67z_fJGVvtREKOPn_ZfX77GvcFktDdO4sqjh5Vs-z-LUdbTj5bgFjV_7ue3k7NXCpqoiuJ6o-Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0HwEN6RBxkvT67z_fJGVvtREKOPn_ZfX77GvcFktDdO4sqjh5Vs-z-LUdbTj5bgFjV_7ue3k7NXCpqoiuJ6o-Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0HwEN6RBxkvT67z_fJGVvtREKOPn_ZfX77GvcFktDdO4sqjh5Vs-z-LUdbTj5bgFjV_7ue3k7NXCpqoiuJ6o-Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0IgGKgY-0szEKza8bhtBLRYlyX6W5ah0zPYn0ESKBLmm_uYxNy_0f1USUIzvtE0AX6K-PPJu_CoeIAsZQMIhOQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0IgGKgY-0szEKza8bhtBLRYlyX6W5ah0zPYn0ESKBLmm_uYxNy_0f1USUIzvtE0AX6K-PPJu_CoeIAsZQMIhOQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0IgGKgY-0szEKza8bhtBLRYlyX6W5ah0zPYn0ESKBLmm_uYxNy_0f1USUIzvtE0AX6K-PPJu_CoeIAsZQMIhOQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0Jvoe2pswjwRKhGXcPcKSCvNxlY06eQDLpYlI1LdWV_YHXJ2A4dY7kKm-bbns4eM889ry9H4bEJkyQEmuQzUkQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0Jvoe2pswjwRKhGXcPcKSCvNxlY06eQDLpYlI1LdWV_YHXJ2A4dY7kKm-bbns4eM889ry9H4bEJkyQEmuQzUkQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0Jvoe2pswjwRKhGXcPcKSCvNxlY06eQDLpYlI1LdWV_YHXJ2A4dY7kKm-bbns4eM889ry9H4bEJkyQEmuQzUkQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0QPZQh0VeYmzr0DmdR6SBesCbLFU1I7ZcvZLjiSIEMc70EiQWb5lyxRxzYuLds4FpCFySx9yLImt_tujtFgaQg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0QPZQh0VeYmzr0DmdR6SBesCbLFU1I7ZcvZLjiSIEMc70EiQWb5lyxRxzYuLds4FpCFySx9yLImt_tujtFgaQg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0QPZQh0VeYmzr0DmdR6SBesCbLFU1I7ZcvZLjiSIEMc70EiQWb5lyxRxzYuLds4FpCFySx9yLImt_tujtFgaQg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0RQ0xe7jVlgnqIeR5QnnevkGt3vJmqzZRypv4g522qyoG-kLBgIKRC_uNaCxtwQIZfcexYN2iSXsreVcuPC-7w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0RQ0xe7jVlgnqIeR5QnnevkGt3vJmqzZRypv4g522qyoG-kLBgIKRC_uNaCxtwQIZfcexYN2iSXsreVcuPC-7w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0RQ0xe7jVlgnqIeR5QnnevkGt3vJmqzZRypv4g522qyoG-kLBgIKRC_uNaCxtwQIZfcexYN2iSXsreVcuPC-7w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0UstVjdAO3Rk8EMmQ57SlYiyg6vF07f-0_F3k5ZacViWBDQOs8LXZIX1-9FzcLSjHdUOfKHMArXq6g_piXmOZQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0UstVjdAO3Rk8EMmQ57SlYiyg6vF07f-0_F3k5ZacViWBDQOs8LXZIX1-9FzcLSjHdUOfKHMArXq6g_piXmOZQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0UstVjdAO3Rk8EMmQ57SlYiyg6vF07f-0_F3k5ZacViWBDQOs8LXZIX1-9FzcLSjHdUOfKHMArXq6g_piXmOZQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0W-9nihK4PbG9TpkoJzI5USyLNb8kMWzKEiTNezWLvrwf5GVA6STOUqsb0oOQqcZsDVN5zgFzliooPyz058M1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0W-9nihK4PbG9TpkoJzI5USyLNb8kMWzKEiTNezWLvrwf5GVA6STOUqsb0oOQqcZsDVN5zgFzliooPyz058M1g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0W-9nihK4PbG9TpkoJzI5USyLNb8kMWzKEiTNezWLvrwf5GVA6STOUqsb0oOQqcZsDVN5zgFzliooPyz058M1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0cNA4A0DmbepXOXIyYN8wAzXMG7hKh5tRC6D8S0XW1XH8sTRE1drWjbM_a0Ra_WuYxAjcl8a4lQTuXAkqqIo7w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0cNA4A0DmbepXOXIyYN8wAzXMG7hKh5tRC6D8S0XW1XH8sTRE1drWjbM_a0Ra_WuYxAjcl8a4lQTuXAkqqIo7w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0cNA4A0DmbepXOXIyYN8wAzXMG7hKh5tRC6D8S0XW1XH8sTRE1drWjbM_a0Ra_WuYxAjcl8a4lQTuXAkqqIo7w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0iB1nha-a_68KrxlsbT-QulpNE5a0PU7wQ9ktdrdNXCMrNkLOuabaPgIiYnS_CcjUoWe29P1a8OjyrUlJcBGmg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0iB1nha-a_68KrxlsbT-QulpNE5a0PU7wQ9ktdrdNXCMrNkLOuabaPgIiYnS_CcjUoWe29P1a8OjyrUlJcBGmg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0iB1nha-a_68KrxlsbT-QulpNE5a0PU7wQ9ktdrdNXCMrNkLOuabaPgIiYnS_CcjUoWe29P1a8OjyrUlJcBGmg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0oAcl5PKnNgO2-m-aLPKReYR0LBCHYiM4q4BwURjKGFiCTzMN8D36eMA4EvkhOAFMAEfdqJyztsFwnSrf-7ftQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0oAcl5PKnNgO2-m-aLPKReYR0LBCHYiM4q4BwURjKGFiCTzMN8D36eMA4EvkhOAFMAEfdqJyztsFwnSrf-7ftQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0oAcl5PKnNgO2-m-aLPKReYR0LBCHYiM4q4BwURjKGFiCTzMN8D36eMA4EvkhOAFMAEfdqJyztsFwnSrf-7ftQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0u9TlFrziuDrLKBCI6JzBrQOwBJknSSPGu5opvi0XQSv-0gvyGrrjbLSok9lSEQ0eUnPerDzNJ5MeNUUopIU6A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0u9TlFrziuDrLKBCI6JzBrQOwBJknSSPGu5opvi0XQSv-0gvyGrrjbLSok9lSEQ0eUnPerDzNJ5MeNUUopIU6A== new file mode 100644 index 0000000..0912ac7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0u9TlFrziuDrLKBCI6JzBrQOwBJknSSPGu5opvi0XQSv-0gvyGrrjbLSok9lSEQ0eUnPerDzNJ5MeNUUopIU6A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0yCS5Ew4N8mPSDMWMTBN5Tj1KPc-0_rLln8QQBh7vwT0VOke6N6TK05YFHqmR2vxniOOFSyIsP_5yB4RGhtGwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0yCS5Ew4N8mPSDMWMTBN5Tj1KPc-0_rLln8QQBh7vwT0VOke6N6TK05YFHqmR2vxniOOFSyIsP_5yB4RGhtGwg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~0yCS5Ew4N8mPSDMWMTBN5Tj1KPc-0_rLln8QQBh7vwT0VOke6N6TK05YFHqmR2vxniOOFSyIsP_5yB4RGhtGwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1CwX5CIyTZQKwujUsmAn7YGyi3hIwCZ4oz_CIbDu6toI-ccs3pBxxf-uYut7bylanbnWslv-rmvR_9YxzFDjxw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1CwX5CIyTZQKwujUsmAn7YGyi3hIwCZ4oz_CIbDu6toI-ccs3pBxxf-uYut7bylanbnWslv-rmvR_9YxzFDjxw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1CwX5CIyTZQKwujUsmAn7YGyi3hIwCZ4oz_CIbDu6toI-ccs3pBxxf-uYut7bylanbnWslv-rmvR_9YxzFDjxw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1FpEsbK2uVUiyuXKh2zZWuibHYduaAY-N-rbyUWq4cm9uQzkRQdqJFA73wtmhPF6VA0m6Wdhk_yj5irr2_Vt2A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1FpEsbK2uVUiyuXKh2zZWuibHYduaAY-N-rbyUWq4cm9uQzkRQdqJFA73wtmhPF6VA0m6Wdhk_yj5irr2_Vt2A== new file mode 100644 index 0000000..dba20b2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1FpEsbK2uVUiyuXKh2zZWuibHYduaAY-N-rbyUWq4cm9uQzkRQdqJFA73wtmhPF6VA0m6Wdhk_yj5irr2_Vt2A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1JJBn9Cpvryh8RKJ_uiQac19Kb8byewsJkBMkJB8ZDa99HObjV96mK4UlH1KyWJBjkGnkRrYTk9foX6-SDhl-A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1JJBn9Cpvryh8RKJ_uiQac19Kb8byewsJkBMkJB8ZDa99HObjV96mK4UlH1KyWJBjkGnkRrYTk9foX6-SDhl-A== new file mode 100644 index 0000000..facae2b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1JJBn9Cpvryh8RKJ_uiQac19Kb8byewsJkBMkJB8ZDa99HObjV96mK4UlH1KyWJBjkGnkRrYTk9foX6-SDhl-A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1M6CW5f8EfsAbbThL_jqm1OosNWWNRfkM9uofdlSzUpVY4GgmahYHVgLVSE30eIueoMvDTMQG0Oy6Xas0vRSKQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1M6CW5f8EfsAbbThL_jqm1OosNWWNRfkM9uofdlSzUpVY4GgmahYHVgLVSE30eIueoMvDTMQG0Oy6Xas0vRSKQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1M6CW5f8EfsAbbThL_jqm1OosNWWNRfkM9uofdlSzUpVY4GgmahYHVgLVSE30eIueoMvDTMQG0Oy6Xas0vRSKQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1MGDDEQ64bd7DymhFMvW6JY0qK-jWk9DO6Xa5V6RnMafsNVdp2rX9HihvwARPJ2vJoPk_KjYoIyST40vpL7GpA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1MGDDEQ64bd7DymhFMvW6JY0qK-jWk9DO6Xa5V6RnMafsNVdp2rX9HihvwARPJ2vJoPk_KjYoIyST40vpL7GpA== new file mode 100644 index 0000000..d3b4e97 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1MGDDEQ64bd7DymhFMvW6JY0qK-jWk9DO6Xa5V6RnMafsNVdp2rX9HihvwARPJ2vJoPk_KjYoIyST40vpL7GpA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1RKoswP7291cx0N5iXRnoOZ2khUeo0c4mtk4esCszOuTaaS3LphiRSTJWBpt81WpL39tmyXQ8tameqSYbu3SiQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1RKoswP7291cx0N5iXRnoOZ2khUeo0c4mtk4esCszOuTaaS3LphiRSTJWBpt81WpL39tmyXQ8tameqSYbu3SiQ== new file mode 100644 index 0000000..5bbcda8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1RKoswP7291cx0N5iXRnoOZ2khUeo0c4mtk4esCszOuTaaS3LphiRSTJWBpt81WpL39tmyXQ8tameqSYbu3SiQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1aKx4_NvekVDkZL_4muaAB6tiwf0jm7dVbKfPeU6O_Y9qf2Nz6jsmaMlnBLLCc03XqbhaNx1bq6ypx98gyFcBw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1aKx4_NvekVDkZL_4muaAB6tiwf0jm7dVbKfPeU6O_Y9qf2Nz6jsmaMlnBLLCc03XqbhaNx1bq6ypx98gyFcBw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1aKx4_NvekVDkZL_4muaAB6tiwf0jm7dVbKfPeU6O_Y9qf2Nz6jsmaMlnBLLCc03XqbhaNx1bq6ypx98gyFcBw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1bGJHW7bA5Mm7yfjsXLCTYPr8bCQIYa7MEcjfmuLi9CqdrX3dkv-amTLZltdu2zRKRgfE-t39bGqWv59O0p9wQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1bGJHW7bA5Mm7yfjsXLCTYPr8bCQIYa7MEcjfmuLi9CqdrX3dkv-amTLZltdu2zRKRgfE-t39bGqWv59O0p9wQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1bGJHW7bA5Mm7yfjsXLCTYPr8bCQIYa7MEcjfmuLi9CqdrX3dkv-amTLZltdu2zRKRgfE-t39bGqWv59O0p9wQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1c2oDlXf_Ca7zNdXY3ZKfJ1iIjCnfm1xpNletwGbmz2J6R7kj8Rhdn_Sn_9rrx_qrPKYaNWKCSZTqXBm5Sh46g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1c2oDlXf_Ca7zNdXY3ZKfJ1iIjCnfm1xpNletwGbmz2J6R7kj8Rhdn_Sn_9rrx_qrPKYaNWKCSZTqXBm5Sh46g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1c2oDlXf_Ca7zNdXY3ZKfJ1iIjCnfm1xpNletwGbmz2J6R7kj8Rhdn_Sn_9rrx_qrPKYaNWKCSZTqXBm5Sh46g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1cg8eeY6VFo4v4GCEfYzelvOzxwOkUnSIyVX8xUqspVC5wxhreWYh0LhXBftpIpTjDWalg0_IhxweOy8ABI9HA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1cg8eeY6VFo4v4GCEfYzelvOzxwOkUnSIyVX8xUqspVC5wxhreWYh0LhXBftpIpTjDWalg0_IhxweOy8ABI9HA== new file mode 100644 index 0000000..69c7545 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1cg8eeY6VFo4v4GCEfYzelvOzxwOkUnSIyVX8xUqspVC5wxhreWYh0LhXBftpIpTjDWalg0_IhxweOy8ABI9HA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1dvJIfPK7-btkLAiqfsXtTFj3BDrscOeph1XRYO8E7hEEc6yzYM_B6OdecFh6tZ59R6ae8zFk1YABfHMCheu_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1dvJIfPK7-btkLAiqfsXtTFj3BDrscOeph1XRYO8E7hEEc6yzYM_B6OdecFh6tZ59R6ae8zFk1YABfHMCheu_w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1dvJIfPK7-btkLAiqfsXtTFj3BDrscOeph1XRYO8E7hEEc6yzYM_B6OdecFh6tZ59R6ae8zFk1YABfHMCheu_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1f9TFngD7DRsDlckmKsmMVkaFZgxoa40-cBVsqpIM_rZXjZZ1KSPU1SSzRnnM514OfXXuSOIdoXwxXybzs4aqA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1f9TFngD7DRsDlckmKsmMVkaFZgxoa40-cBVsqpIM_rZXjZZ1KSPU1SSzRnnM514OfXXuSOIdoXwxXybzs4aqA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1f9TFngD7DRsDlckmKsmMVkaFZgxoa40-cBVsqpIM_rZXjZZ1KSPU1SSzRnnM514OfXXuSOIdoXwxXybzs4aqA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1jlWYee14ThYYv-2VmUO7OjP4fgZcSX9kRqz8glHN-m-KBrVisDxuWI3Q50OxiIBWdduQdpEMsNG3YXQOuh0Dg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1jlWYee14ThYYv-2VmUO7OjP4fgZcSX9kRqz8glHN-m-KBrVisDxuWI3Q50OxiIBWdduQdpEMsNG3YXQOuh0Dg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1jlWYee14ThYYv-2VmUO7OjP4fgZcSX9kRqz8glHN-m-KBrVisDxuWI3Q50OxiIBWdduQdpEMsNG3YXQOuh0Dg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1oMb7MTv_GjOjOduK4SY8RoqbEOIIq3ei4gKckg83h6DPa-uRlnFeXgWyLh9Q4v7ZZPShObed8TjDeIdJ8lDCA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1oMb7MTv_GjOjOduK4SY8RoqbEOIIq3ei4gKckg83h6DPa-uRlnFeXgWyLh9Q4v7ZZPShObed8TjDeIdJ8lDCA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1oMb7MTv_GjOjOduK4SY8RoqbEOIIq3ei4gKckg83h6DPa-uRlnFeXgWyLh9Q4v7ZZPShObed8TjDeIdJ8lDCA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1y_uhIl9IMaMYiei_t6QZEAUG1IahELoeYQOXtutObvGcA2gPtHR-nZo5XqUTlp5G8V5g0lb16Uo79FC-2fUFA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1y_uhIl9IMaMYiei_t6QZEAUG1IahELoeYQOXtutObvGcA2gPtHR-nZo5XqUTlp5G8V5g0lb16Uo79FC-2fUFA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~1y_uhIl9IMaMYiei_t6QZEAUG1IahELoeYQOXtutObvGcA2gPtHR-nZo5XqUTlp5G8V5g0lb16Uo79FC-2fUFA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~22kRo5TLe4_SmxWDb1f0x9dRn6tbrNQGtnzNwJA4uQwsXtcUuFb7rN3z-ZR4Z6RD6JqUechvCByR6SJjTAgOtw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~22kRo5TLe4_SmxWDb1f0x9dRn6tbrNQGtnzNwJA4uQwsXtcUuFb7rN3z-ZR4Z6RD6JqUechvCByR6SJjTAgOtw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~22kRo5TLe4_SmxWDb1f0x9dRn6tbrNQGtnzNwJA4uQwsXtcUuFb7rN3z-ZR4Z6RD6JqUechvCByR6SJjTAgOtw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~23Ofl6uuV5-qN0jWge7KoLfILR4rd1UIT9bmNGjaXpDAk0jx57L2k7LI29J2foPrfTzTYygdvFMs15U6phJJbw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~23Ofl6uuV5-qN0jWge7KoLfILR4rd1UIT9bmNGjaXpDAk0jx57L2k7LI29J2foPrfTzTYygdvFMs15U6phJJbw== new file mode 100644 index 0000000..0531c93 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~23Ofl6uuV5-qN0jWge7KoLfILR4rd1UIT9bmNGjaXpDAk0jx57L2k7LI29J2foPrfTzTYygdvFMs15U6phJJbw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~26bfvmAKScsBmdHFrajb5bhi9m0oMUvM_u2o2idGu-YsYLCmXkwP5LYgljw9N-PFf9Khsdw-lItpK-wLT5E9Wg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~26bfvmAKScsBmdHFrajb5bhi9m0oMUvM_u2o2idGu-YsYLCmXkwP5LYgljw9N-PFf9Khsdw-lItpK-wLT5E9Wg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~26bfvmAKScsBmdHFrajb5bhi9m0oMUvM_u2o2idGu-YsYLCmXkwP5LYgljw9N-PFf9Khsdw-lItpK-wLT5E9Wg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~29WvkCv22wumrqtFQGHIMbnpzWB0pxWvQaAnxsbHFsxwUF00Pw5btwHwVZwxOKz43o20fTbBXTkqyKJVnDmRcQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~29WvkCv22wumrqtFQGHIMbnpzWB0pxWvQaAnxsbHFsxwUF00Pw5btwHwVZwxOKz43o20fTbBXTkqyKJVnDmRcQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~29WvkCv22wumrqtFQGHIMbnpzWB0pxWvQaAnxsbHFsxwUF00Pw5btwHwVZwxOKz43o20fTbBXTkqyKJVnDmRcQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~29kgnizZUsOFQLKzWOZhaUviMyxhlYdOJHmqEc4ypsU4aipt0b18bdj3z2z4UtBcvL0NiRCLZqiDwo44P-6i6Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~29kgnizZUsOFQLKzWOZhaUviMyxhlYdOJHmqEc4ypsU4aipt0b18bdj3z2z4UtBcvL0NiRCLZqiDwo44P-6i6Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~29kgnizZUsOFQLKzWOZhaUviMyxhlYdOJHmqEc4ypsU4aipt0b18bdj3z2z4UtBcvL0NiRCLZqiDwo44P-6i6Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2Hrnts7S40hZPtRdV_hlBt8p0D55fAwQCBy4eldZmFh5SWPyDh98yLspvgJ-IC1EzLCyYtEBQkmeb_fNy1UwSQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2Hrnts7S40hZPtRdV_hlBt8p0D55fAwQCBy4eldZmFh5SWPyDh98yLspvgJ-IC1EzLCyYtEBQkmeb_fNy1UwSQ== new file mode 100644 index 0000000..356a24d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2Hrnts7S40hZPtRdV_hlBt8p0D55fAwQCBy4eldZmFh5SWPyDh98yLspvgJ-IC1EzLCyYtEBQkmeb_fNy1UwSQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2HyfiSfLlxzHlKIot0prKOlf6s71TQtDj_yWBh_i6Mr8LdGog7XJNxCsssilw0AKfZBVr_6Y2pkb3clrAUi4Qg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2HyfiSfLlxzHlKIot0prKOlf6s71TQtDj_yWBh_i6Mr8LdGog7XJNxCsssilw0AKfZBVr_6Y2pkb3clrAUi4Qg== new file mode 100644 index 0000000..2b7f872 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2HyfiSfLlxzHlKIot0prKOlf6s71TQtDj_yWBh_i6Mr8LdGog7XJNxCsssilw0AKfZBVr_6Y2pkb3clrAUi4Qg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2IxPgeU10Tp83z_p60n6Lx39-OskbFzDknUjpT8nwyifFWTxbKyOLblkErd25hbYONFSNTBtbtWmQvJhDrr8JA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2IxPgeU10Tp83z_p60n6Lx39-OskbFzDknUjpT8nwyifFWTxbKyOLblkErd25hbYONFSNTBtbtWmQvJhDrr8JA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2IxPgeU10Tp83z_p60n6Lx39-OskbFzDknUjpT8nwyifFWTxbKyOLblkErd25hbYONFSNTBtbtWmQvJhDrr8JA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2RFJbpHywDH1qWgATjTOzeEefWxlXCeaOy5NTR7K299PHvFMyaGQVv6FgeurTyXpoglyG578r51i8XJIGxOV8w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2RFJbpHywDH1qWgATjTOzeEefWxlXCeaOy5NTR7K299PHvFMyaGQVv6FgeurTyXpoglyG578r51i8XJIGxOV8w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2RFJbpHywDH1qWgATjTOzeEefWxlXCeaOy5NTR7K299PHvFMyaGQVv6FgeurTyXpoglyG578r51i8XJIGxOV8w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2TesQPRWiZhAv-yQEE8GWhQmu-x3gGMN377MFoarOi_vM1w3YpjtVh01GrKXgE4H0hgdLdZ1Iyt3TjrX8_mjkA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2TesQPRWiZhAv-yQEE8GWhQmu-x3gGMN377MFoarOi_vM1w3YpjtVh01GrKXgE4H0hgdLdZ1Iyt3TjrX8_mjkA== new file mode 100644 index 0000000..a803ec7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2TesQPRWiZhAv-yQEE8GWhQmu-x3gGMN377MFoarOi_vM1w3YpjtVh01GrKXgE4H0hgdLdZ1Iyt3TjrX8_mjkA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2Yp4jGfb5xE4UqtSahBfMhdUwts-pDK1-5yND1QYCA7hp_LOtLDz7UgkV6jtXrSbMLoDlJdlGhPjdt7BM4qm_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2Yp4jGfb5xE4UqtSahBfMhdUwts-pDK1-5yND1QYCA7hp_LOtLDz7UgkV6jtXrSbMLoDlJdlGhPjdt7BM4qm_w== new file mode 100644 index 0000000..c1c6b38 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2Yp4jGfb5xE4UqtSahBfMhdUwts-pDK1-5yND1QYCA7hp_LOtLDz7UgkV6jtXrSbMLoDlJdlGhPjdt7BM4qm_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2ZwvmIPokKvtzsnrNgwb_gh9Q4wmbZKhE1xrUr1CNXQS2yJZzr7DZEpYX7an3In9f20Hh28mxyUrjgJgA305Dg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2ZwvmIPokKvtzsnrNgwb_gh9Q4wmbZKhE1xrUr1CNXQS2yJZzr7DZEpYX7an3In9f20Hh28mxyUrjgJgA305Dg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2ZwvmIPokKvtzsnrNgwb_gh9Q4wmbZKhE1xrUr1CNXQS2yJZzr7DZEpYX7an3In9f20Hh28mxyUrjgJgA305Dg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2g_6o8SdcUlRWUL-t8lCmlyDkmvoiSL5lyH2gs43nyT_4wUr8Z4RSQ8WXj_av07gYk9p5rZ52kKkN8AXNOWUAA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2g_6o8SdcUlRWUL-t8lCmlyDkmvoiSL5lyH2gs43nyT_4wUr8Z4RSQ8WXj_av07gYk9p5rZ52kKkN8AXNOWUAA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2g_6o8SdcUlRWUL-t8lCmlyDkmvoiSL5lyH2gs43nyT_4wUr8Z4RSQ8WXj_av07gYk9p5rZ52kKkN8AXNOWUAA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2lIySd95C9MieafbJygYPScLF2N8TLY1scfOVzq_PzzHpnqxZFsdmyjG6xmKgvaB5-BAErp_xr4puU0u5p4RMw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2lIySd95C9MieafbJygYPScLF2N8TLY1scfOVzq_PzzHpnqxZFsdmyjG6xmKgvaB5-BAErp_xr4puU0u5p4RMw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2lIySd95C9MieafbJygYPScLF2N8TLY1scfOVzq_PzzHpnqxZFsdmyjG6xmKgvaB5-BAErp_xr4puU0u5p4RMw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2pMsXOrYNwCccpwYfNw3_-xuOWzJzNsWVjJyqlxWLB006XmmuRn7-Homj77oFfiTCDQCIyGOnIAEexqARHKiDA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2pMsXOrYNwCccpwYfNw3_-xuOWzJzNsWVjJyqlxWLB006XmmuRn7-Homj77oFfiTCDQCIyGOnIAEexqARHKiDA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2pMsXOrYNwCccpwYfNw3_-xuOWzJzNsWVjJyqlxWLB006XmmuRn7-Homj77oFfiTCDQCIyGOnIAEexqARHKiDA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2rYxCDkEAGHeRorL3P9Lh0eVGAjOGcmPIKsr4tnfR-4wUyHOJJmIBeL_S7SuJ6Vn2iAynUGAtdpSyX-M2p9i2Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2rYxCDkEAGHeRorL3P9Lh0eVGAjOGcmPIKsr4tnfR-4wUyHOJJmIBeL_S7SuJ6Vn2iAynUGAtdpSyX-M2p9i2Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2rYxCDkEAGHeRorL3P9Lh0eVGAjOGcmPIKsr4tnfR-4wUyHOJJmIBeL_S7SuJ6Vn2iAynUGAtdpSyX-M2p9i2Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2wnC-qpsY7bHJhyfomAEvZYmEU7PlTrcA9AKC4zVDn-cDtEjji8bKUABb0_EWjxVDIZCCSQf-nAyHTX7oJSj_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2wnC-qpsY7bHJhyfomAEvZYmEU7PlTrcA9AKC4zVDn-cDtEjji8bKUABb0_EWjxVDIZCCSQf-nAyHTX7oJSj_w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2wnC-qpsY7bHJhyfomAEvZYmEU7PlTrcA9AKC4zVDn-cDtEjji8bKUABb0_EWjxVDIZCCSQf-nAyHTX7oJSj_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2yR83xFHkWAdyAftaXZ5A-KPYcUYKdrYQ6thxKEDK0dZKyxmjM3RLoHOfgTOsan6cTYKmANa-B8ciaqeBaMEJA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2yR83xFHkWAdyAftaXZ5A-KPYcUYKdrYQ6thxKEDK0dZKyxmjM3RLoHOfgTOsan6cTYKmANa-B8ciaqeBaMEJA== new file mode 100644 index 0000000..607c678 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2yR83xFHkWAdyAftaXZ5A-KPYcUYKdrYQ6thxKEDK0dZKyxmjM3RLoHOfgTOsan6cTYKmANa-B8ciaqeBaMEJA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2yahah9NtzzNx13EbeM2ND0aRnJyVG00QHQvpvA_DhOCuu-tteOS6-hrZlNYRx7hEX2N5WYfo2Irn6Y3Rv5x_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2yahah9NtzzNx13EbeM2ND0aRnJyVG00QHQvpvA_DhOCuu-tteOS6-hrZlNYRx7hEX2N5WYfo2Irn6Y3Rv5x_A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~2yahah9NtzzNx13EbeM2ND0aRnJyVG00QHQvpvA_DhOCuu-tteOS6-hrZlNYRx7hEX2N5WYfo2Irn6Y3Rv5x_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3BsPFZcVYEDUqDCKzho7wPdRDgpp5GwrCCt_XMWDcj5MaJsXGhNJCmqaT5M6Agd9zpTZOR-6yzOs5VopspNqfw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3BsPFZcVYEDUqDCKzho7wPdRDgpp5GwrCCt_XMWDcj5MaJsXGhNJCmqaT5M6Agd9zpTZOR-6yzOs5VopspNqfw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3BsPFZcVYEDUqDCKzho7wPdRDgpp5GwrCCt_XMWDcj5MaJsXGhNJCmqaT5M6Agd9zpTZOR-6yzOs5VopspNqfw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3C4mQy5DBfRlhGHilc_RiYjJufLS636YHNYVBFHYND39S6bYbSgxm305GYIVysRvOdnMYSQO1U2xuwC8SI1fog== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3C4mQy5DBfRlhGHilc_RiYjJufLS636YHNYVBFHYND39S6bYbSgxm305GYIVysRvOdnMYSQO1U2xuwC8SI1fog== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3C4mQy5DBfRlhGHilc_RiYjJufLS636YHNYVBFHYND39S6bYbSgxm305GYIVysRvOdnMYSQO1U2xuwC8SI1fog== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3Do7MK7HauA37lWdKhk7Kjl1KwN0cEY8amlsvuDV3I73a2eQnWIlUIAbJJbJU3fgN3IIlTwwOytPr7mn3iGx0g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3Do7MK7HauA37lWdKhk7Kjl1KwN0cEY8amlsvuDV3I73a2eQnWIlUIAbJJbJU3fgN3IIlTwwOytPr7mn3iGx0g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3Do7MK7HauA37lWdKhk7Kjl1KwN0cEY8amlsvuDV3I73a2eQnWIlUIAbJJbJU3fgN3IIlTwwOytPr7mn3iGx0g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3HYawRxl-PBNdL-v9vxN3sa5XIf58rB6rrgHU6xNQmTg6DB9NFQu_VEtQOUGwOqreQo6xfvADqf7xqEZlW9sqA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3HYawRxl-PBNdL-v9vxN3sa5XIf58rB6rrgHU6xNQmTg6DB9NFQu_VEtQOUGwOqreQo6xfvADqf7xqEZlW9sqA== new file mode 100644 index 0000000..8320019 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3HYawRxl-PBNdL-v9vxN3sa5XIf58rB6rrgHU6xNQmTg6DB9NFQu_VEtQOUGwOqreQo6xfvADqf7xqEZlW9sqA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3IEqacAo_buKc2zlNYBMT2lx2z5X4PITY2hdAoGzuOuq9aTdzzakWHFaq1xMBTDTnLgzRdjoFhee2n4uKD5PVQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3IEqacAo_buKc2zlNYBMT2lx2z5X4PITY2hdAoGzuOuq9aTdzzakWHFaq1xMBTDTnLgzRdjoFhee2n4uKD5PVQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3IEqacAo_buKc2zlNYBMT2lx2z5X4PITY2hdAoGzuOuq9aTdzzakWHFaq1xMBTDTnLgzRdjoFhee2n4uKD5PVQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3K3lp-f66cwU6lsMWhRMGLjDHIvKV9r33b7nBt1WkMEiBVpRZmzLeB-6a13PWOwBtCTNOLXNlV0ese1Ev0eH1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3K3lp-f66cwU6lsMWhRMGLjDHIvKV9r33b7nBt1WkMEiBVpRZmzLeB-6a13PWOwBtCTNOLXNlV0ese1Ev0eH1g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3K3lp-f66cwU6lsMWhRMGLjDHIvKV9r33b7nBt1WkMEiBVpRZmzLeB-6a13PWOwBtCTNOLXNlV0ese1Ev0eH1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3MsEwNrDh4pP6ErKNWS-ptUHR_wQ6KJJCGwyCLBFvIxyPc70PPuxfoL5nW1Jxbz2Z4pgsMgx1pY23pk-q17sNQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3MsEwNrDh4pP6ErKNWS-ptUHR_wQ6KJJCGwyCLBFvIxyPc70PPuxfoL5nW1Jxbz2Z4pgsMgx1pY23pk-q17sNQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3MsEwNrDh4pP6ErKNWS-ptUHR_wQ6KJJCGwyCLBFvIxyPc70PPuxfoL5nW1Jxbz2Z4pgsMgx1pY23pk-q17sNQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3QtiXnWCvrt-wyKazJGgFKOyjjX2VDE80VCwoAxCkXddpRtGUQc5PAhZyAAVUZtekkwE8WhPpJvnyRbeb0jh6w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3QtiXnWCvrt-wyKazJGgFKOyjjX2VDE80VCwoAxCkXddpRtGUQc5PAhZyAAVUZtekkwE8WhPpJvnyRbeb0jh6w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3QtiXnWCvrt-wyKazJGgFKOyjjX2VDE80VCwoAxCkXddpRtGUQc5PAhZyAAVUZtekkwE8WhPpJvnyRbeb0jh6w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3SJ1uVgNy1ad8uDgElx1qK19_JMqEwCDqsSZj-zZkflBC1oDIzau3lmJCErSNZenv96o98Z83MLTOAs9j3r1Vg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3SJ1uVgNy1ad8uDgElx1qK19_JMqEwCDqsSZj-zZkflBC1oDIzau3lmJCErSNZenv96o98Z83MLTOAs9j3r1Vg== new file mode 100644 index 0000000..05614af Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3SJ1uVgNy1ad8uDgElx1qK19_JMqEwCDqsSZj-zZkflBC1oDIzau3lmJCErSNZenv96o98Z83MLTOAs9j3r1Vg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3S_cwLTCG36dDAK1ppSmAnRmv8sBmJIX6u5SPMwSzXe_yrRHCe-dfo5NIxj8Jy0LKAL1ZY1tx9HfPomZHfstRQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3S_cwLTCG36dDAK1ppSmAnRmv8sBmJIX6u5SPMwSzXe_yrRHCe-dfo5NIxj8Jy0LKAL1ZY1tx9HfPomZHfstRQ== new file mode 100644 index 0000000..411e85f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3S_cwLTCG36dDAK1ppSmAnRmv8sBmJIX6u5SPMwSzXe_yrRHCe-dfo5NIxj8Jy0LKAL1ZY1tx9HfPomZHfstRQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3UGni8xM0Zs8ravmwJvwYrjYfI8n8NbMgtMBnTTVdJ07Ve1PEEYt9W-159FNRNnUm6XsH4a2s9-eLi6qEiy9Ug== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3UGni8xM0Zs8ravmwJvwYrjYfI8n8NbMgtMBnTTVdJ07Ve1PEEYt9W-159FNRNnUm6XsH4a2s9-eLi6qEiy9Ug== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3UGni8xM0Zs8ravmwJvwYrjYfI8n8NbMgtMBnTTVdJ07Ve1PEEYt9W-159FNRNnUm6XsH4a2s9-eLi6qEiy9Ug== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3aD6XhfIvVvp8kD5LUCeppfDZNlBs_Fnw4QO2sLbqIOeOjaka4qgt-_tWncXXPzhfhrjpmz1uVss7s7E8NxlZg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3aD6XhfIvVvp8kD5LUCeppfDZNlBs_Fnw4QO2sLbqIOeOjaka4qgt-_tWncXXPzhfhrjpmz1uVss7s7E8NxlZg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3aD6XhfIvVvp8kD5LUCeppfDZNlBs_Fnw4QO2sLbqIOeOjaka4qgt-_tWncXXPzhfhrjpmz1uVss7s7E8NxlZg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3bTaVnbU238jQyGsDwz8uV_YyAA92jFKtmkg7Cb-d8pql2WOW7zdxV-YpOiitKBBI0JSB2y-HoH3Gjl748vpdw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3bTaVnbU238jQyGsDwz8uV_YyAA92jFKtmkg7Cb-d8pql2WOW7zdxV-YpOiitKBBI0JSB2y-HoH3Gjl748vpdw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3bTaVnbU238jQyGsDwz8uV_YyAA92jFKtmkg7Cb-d8pql2WOW7zdxV-YpOiitKBBI0JSB2y-HoH3Gjl748vpdw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3n01sFuNlffgXXqip1OjFX6n584LQnX8eNnQ-MmXJmAFUsqCnGW3BUH2nTIGvB1s0obD4vpIjedkKrIRdcTs-A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3n01sFuNlffgXXqip1OjFX6n584LQnX8eNnQ-MmXJmAFUsqCnGW3BUH2nTIGvB1s0obD4vpIjedkKrIRdcTs-A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3n01sFuNlffgXXqip1OjFX6n584LQnX8eNnQ-MmXJmAFUsqCnGW3BUH2nTIGvB1s0obD4vpIjedkKrIRdcTs-A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3n_VCmy9UYa-NAuPKGElt49o5z2teJhv8TJo8-Ni1XWBPzkmELWEwkF8xkYZ_td0UOqLFiWgJRq5pwm-fpahkw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3n_VCmy9UYa-NAuPKGElt49o5z2teJhv8TJo8-Ni1XWBPzkmELWEwkF8xkYZ_td0UOqLFiWgJRq5pwm-fpahkw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3n_VCmy9UYa-NAuPKGElt49o5z2teJhv8TJo8-Ni1XWBPzkmELWEwkF8xkYZ_td0UOqLFiWgJRq5pwm-fpahkw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3qRG26-hA_TJLNx-LZGQmsPJooyMtFlaKAIinvrJNpmEWpywW5Py8uxHdrmNsn9lBdWKe_hUOUBBlh2-_pYzWA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3qRG26-hA_TJLNx-LZGQmsPJooyMtFlaKAIinvrJNpmEWpywW5Py8uxHdrmNsn9lBdWKe_hUOUBBlh2-_pYzWA== new file mode 100644 index 0000000..1528be7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3qRG26-hA_TJLNx-LZGQmsPJooyMtFlaKAIinvrJNpmEWpywW5Py8uxHdrmNsn9lBdWKe_hUOUBBlh2-_pYzWA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3t6ZXVated_68syqvvyQ0rtkUnjGHxXYL8O5YkvzmXohmYkpvKf-K6PATsqpLZpcz0giZV0Jtzb1j4nYAj1Z9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3t6ZXVated_68syqvvyQ0rtkUnjGHxXYL8O5YkvzmXohmYkpvKf-K6PATsqpLZpcz0giZV0Jtzb1j4nYAj1Z9A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3t6ZXVated_68syqvvyQ0rtkUnjGHxXYL8O5YkvzmXohmYkpvKf-K6PATsqpLZpcz0giZV0Jtzb1j4nYAj1Z9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3wcJSfcesqMzAzx700cak_Nx_UC6dnHnG5NHBNP9Vj3vtiHZLR1ikwaisHYzZIvsS1M9Utm9m6e9BnTYRYo19w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3wcJSfcesqMzAzx700cak_Nx_UC6dnHnG5NHBNP9Vj3vtiHZLR1ikwaisHYzZIvsS1M9Utm9m6e9BnTYRYo19w== new file mode 100644 index 0000000..f053e01 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~3wcJSfcesqMzAzx700cak_Nx_UC6dnHnG5NHBNP9Vj3vtiHZLR1ikwaisHYzZIvsS1M9Utm9m6e9BnTYRYo19w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~46BdStfwh-ErA6pMpjzSixtK2-R05RqkAU0vFSNLcnWEOXMZogPIsZXmXVdooZvlg4kPgGACLs4Qzslnbq_mRQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~46BdStfwh-ErA6pMpjzSixtK2-R05RqkAU0vFSNLcnWEOXMZogPIsZXmXVdooZvlg4kPgGACLs4Qzslnbq_mRQ== new file mode 100644 index 0000000..96d9ac8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~46BdStfwh-ErA6pMpjzSixtK2-R05RqkAU0vFSNLcnWEOXMZogPIsZXmXVdooZvlg4kPgGACLs4Qzslnbq_mRQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4BD9Y_yx2dANIm3TKNo4d6B3j602kPLycojYniUqcwMb3uZpmZNE-csSfhcj1eF4UDwCr0dZNymh7u9xvSupvg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4BD9Y_yx2dANIm3TKNo4d6B3j602kPLycojYniUqcwMb3uZpmZNE-csSfhcj1eF4UDwCr0dZNymh7u9xvSupvg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4BD9Y_yx2dANIm3TKNo4d6B3j602kPLycojYniUqcwMb3uZpmZNE-csSfhcj1eF4UDwCr0dZNymh7u9xvSupvg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4Qow6gsC_3zD4-CiqYup12EVV70tE5dn58OSnTUZ-H_rkZl6kWUbsP1C2X4YWd80d8lhLK2O9Iu3Y6sZaxlxOQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4Qow6gsC_3zD4-CiqYup12EVV70tE5dn58OSnTUZ-H_rkZl6kWUbsP1C2X4YWd80d8lhLK2O9Iu3Y6sZaxlxOQ== new file mode 100644 index 0000000..b76c714 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4Qow6gsC_3zD4-CiqYup12EVV70tE5dn58OSnTUZ-H_rkZl6kWUbsP1C2X4YWd80d8lhLK2O9Iu3Y6sZaxlxOQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4UqGe2y9UCENOPgxLHbCcsho6nBOZskanVgdzZftV1ttTJxO7biFyV9iKl28UsD6cvCFS4TUINTS1M__2oJehQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4UqGe2y9UCENOPgxLHbCcsho6nBOZskanVgdzZftV1ttTJxO7biFyV9iKl28UsD6cvCFS4TUINTS1M__2oJehQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4UqGe2y9UCENOPgxLHbCcsho6nBOZskanVgdzZftV1ttTJxO7biFyV9iKl28UsD6cvCFS4TUINTS1M__2oJehQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4VqMqsI5lOfxRppnud6-VDWcNsU8J7VgFCJfW2dXPwOcAkvU-I8Um5yp9n0Zv6nr3VmcxYggaVMDFfR0U_vjKw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4cyjQzVGf1Q7mrdH1RybKbbSMdkFRkcazHcGmWoMg38ymTl8B0nCcPtAJFl9XN9TrGeXKTQX3rl8C0JU0Gbl2A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4cyjQzVGf1Q7mrdH1RybKbbSMdkFRkcazHcGmWoMg38ymTl8B0nCcPtAJFl9XN9TrGeXKTQX3rl8C0JU0Gbl2A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4cyjQzVGf1Q7mrdH1RybKbbSMdkFRkcazHcGmWoMg38ymTl8B0nCcPtAJFl9XN9TrGeXKTQX3rl8C0JU0Gbl2A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4jLkvTKUrNlvyp6tKHVhPANAJsGt4Qt901BTsHnC-hGz5T8i-zXmi6gY_y39hC1esDl9QiXnXuT0UFkUeEEYrg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4jLkvTKUrNlvyp6tKHVhPANAJsGt4Qt901BTsHnC-hGz5T8i-zXmi6gY_y39hC1esDl9QiXnXuT0UFkUeEEYrg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4jLkvTKUrNlvyp6tKHVhPANAJsGt4Qt901BTsHnC-hGz5T8i-zXmi6gY_y39hC1esDl9QiXnXuT0UFkUeEEYrg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4msDU1RkvzwbYNZR3AYE_gIhGxabSiJgHVzQqZKpvjx0qpaNjdvY9LH9W41MyZ7sKzGprNyDorVkcpA6V_oC4Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4msDU1RkvzwbYNZR3AYE_gIhGxabSiJgHVzQqZKpvjx0qpaNjdvY9LH9W41MyZ7sKzGprNyDorVkcpA6V_oC4Q== new file mode 100644 index 0000000..6113edc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4msDU1RkvzwbYNZR3AYE_gIhGxabSiJgHVzQqZKpvjx0qpaNjdvY9LH9W41MyZ7sKzGprNyDorVkcpA6V_oC4Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4qY9cPGuGx2vx4Y3GyBmPd7sO7gXafKq-1bfBaEYqzDKsr7yzBkizSPTJP7HdnGNaK-AR9ANZPs41B2UwBWPzg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4qY9cPGuGx2vx4Y3GyBmPd7sO7gXafKq-1bfBaEYqzDKsr7yzBkizSPTJP7HdnGNaK-AR9ANZPs41B2UwBWPzg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4qY9cPGuGx2vx4Y3GyBmPd7sO7gXafKq-1bfBaEYqzDKsr7yzBkizSPTJP7HdnGNaK-AR9ANZPs41B2UwBWPzg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4qkBxKzMpUfnMCnBWKo4-fePObbhGEn5AFwOQqYpixJ3V6VC5nv2cEeVzINL-Pl1XXmq0l30B8zTDau1StFZng== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4qkBxKzMpUfnMCnBWKo4-fePObbhGEn5AFwOQqYpixJ3V6VC5nv2cEeVzINL-Pl1XXmq0l30B8zTDau1StFZng== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4qkBxKzMpUfnMCnBWKo4-fePObbhGEn5AFwOQqYpixJ3V6VC5nv2cEeVzINL-Pl1XXmq0l30B8zTDau1StFZng== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4u6hjAl7zwnI441VmiruMYAYnN-KG_HUOwz3XVmQgDndJBg5CUmoSCwsQmkwtDs36VaF5OQZdW3bOa2z90yG-Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4u6hjAl7zwnI441VmiruMYAYnN-KG_HUOwz3XVmQgDndJBg5CUmoSCwsQmkwtDs36VaF5OQZdW3bOa2z90yG-Q== new file mode 100644 index 0000000..516c9e1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4u6hjAl7zwnI441VmiruMYAYnN-KG_HUOwz3XVmQgDndJBg5CUmoSCwsQmkwtDs36VaF5OQZdW3bOa2z90yG-Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4uBbk-SkEssIzdTrZOxpD3wvMOsV0ywntwHcFVnpY1v8FNYW8uWiDFJk2MRceC8aTt_h6xEa3BzUTRsRj-dFMA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4uBbk-SkEssIzdTrZOxpD3wvMOsV0ywntwHcFVnpY1v8FNYW8uWiDFJk2MRceC8aTt_h6xEa3BzUTRsRj-dFMA== new file mode 100644 index 0000000..892d04c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4uBbk-SkEssIzdTrZOxpD3wvMOsV0ywntwHcFVnpY1v8FNYW8uWiDFJk2MRceC8aTt_h6xEa3BzUTRsRj-dFMA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4wGp67SlStrULf-ZZ2i_dPOzIvS7v6CrGcQPiFT8z-r7Wd7QNbvi0mMu9y31JIov9HlJJpXkCkVYez2g1Y_0ag== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4wGp67SlStrULf-ZZ2i_dPOzIvS7v6CrGcQPiFT8z-r7Wd7QNbvi0mMu9y31JIov9HlJJpXkCkVYez2g1Y_0ag== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4wGp67SlStrULf-ZZ2i_dPOzIvS7v6CrGcQPiFT8z-r7Wd7QNbvi0mMu9y31JIov9HlJJpXkCkVYez2g1Y_0ag== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4x3bnprKf_aWVyFiSqIWp2DegEN-_JEqxPR-lCBtQFgSKBUr6Uh4Li9OEOo2q9yMzdBonWJjd6sjwHUOdmNW2g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4x3bnprKf_aWVyFiSqIWp2DegEN-_JEqxPR-lCBtQFgSKBUr6Uh4Li9OEOo2q9yMzdBonWJjd6sjwHUOdmNW2g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4x3bnprKf_aWVyFiSqIWp2DegEN-_JEqxPR-lCBtQFgSKBUr6Uh4Li9OEOo2q9yMzdBonWJjd6sjwHUOdmNW2g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4xKo5EnXRVfXIqd_gEe_jxhLEP1XiiYD6It80eYVrawGRozzVEvj5vDFUgkFOemvc-OxSmN5cn71cZx9o4Mb9Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4xKo5EnXRVfXIqd_gEe_jxhLEP1XiiYD6It80eYVrawGRozzVEvj5vDFUgkFOemvc-OxSmN5cn71cZx9o4Mb9Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~4xKo5EnXRVfXIqd_gEe_jxhLEP1XiiYD6It80eYVrawGRozzVEvj5vDFUgkFOemvc-OxSmN5cn71cZx9o4Mb9Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5-lwZ_kX3e6hXeNSQ7_NkHWHY7R687rIgKw-3ObTAYgmvmEJqlNB0w4D1CA9KuVLgdN7Pex6RyXDmm0ZMx-B6w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5-lwZ_kX3e6hXeNSQ7_NkHWHY7R687rIgKw-3ObTAYgmvmEJqlNB0w4D1CA9KuVLgdN7Pex6RyXDmm0ZMx-B6w== new file mode 100644 index 0000000..899f934 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5-lwZ_kX3e6hXeNSQ7_NkHWHY7R687rIgKw-3ObTAYgmvmEJqlNB0w4D1CA9KuVLgdN7Pex6RyXDmm0ZMx-B6w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~55hIb1xDw3ot5MQ880Z-tC4HusiK46AM50sloVWtptvfZm0uxrh7k9e_tp38rOSk2j9X4IvrvW07IgqOSURACg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~55hIb1xDw3ot5MQ880Z-tC4HusiK46AM50sloVWtptvfZm0uxrh7k9e_tp38rOSk2j9X4IvrvW07IgqOSURACg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~55hIb1xDw3ot5MQ880Z-tC4HusiK46AM50sloVWtptvfZm0uxrh7k9e_tp38rOSk2j9X4IvrvW07IgqOSURACg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5BjhXHRFOo93g0jhJiK1OIwfbWbb14pd5nyfqQRcacUaaRuZP_WUPZ-LYfq3atg6ou1Wof8w7XKNH9_SRkTeBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5BjhXHRFOo93g0jhJiK1OIwfbWbb14pd5nyfqQRcacUaaRuZP_WUPZ-LYfq3atg6ou1Wof8w7XKNH9_SRkTeBA== new file mode 100644 index 0000000..7752497 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5BjhXHRFOo93g0jhJiK1OIwfbWbb14pd5nyfqQRcacUaaRuZP_WUPZ-LYfq3atg6ou1Wof8w7XKNH9_SRkTeBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5K2yPjMcYURpRv4rAiYWYisI5LmgZh2ZGMBCEg5TGiby5FB48bcmInhSDU9ADfMZoofu1hQToCGpE96y-f7E2Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5K2yPjMcYURpRv4rAiYWYisI5LmgZh2ZGMBCEg5TGiby5FB48bcmInhSDU9ADfMZoofu1hQToCGpE96y-f7E2Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5K2yPjMcYURpRv4rAiYWYisI5LmgZh2ZGMBCEg5TGiby5FB48bcmInhSDU9ADfMZoofu1hQToCGpE96y-f7E2Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5LwY9oF9gx_0b-X5bk2edFeifXMbWq4f0_A0swuYwj18RO2qDFmkZTlr_MFHzMDM-JAZDhsZI1p7PS2dACLDHg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5LwY9oF9gx_0b-X5bk2edFeifXMbWq4f0_A0swuYwj18RO2qDFmkZTlr_MFHzMDM-JAZDhsZI1p7PS2dACLDHg== new file mode 100644 index 0000000..3cb805d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5LwY9oF9gx_0b-X5bk2edFeifXMbWq4f0_A0swuYwj18RO2qDFmkZTlr_MFHzMDM-JAZDhsZI1p7PS2dACLDHg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5MX2w9cbtpC2vgffUYMY9gm6tR0LPja4NGmW7nPZ0rxnbqj3pT15lVEQzqsBlDG-_ocDMFkT1SQmgTGnVWDqnw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5MX2w9cbtpC2vgffUYMY9gm6tR0LPja4NGmW7nPZ0rxnbqj3pT15lVEQzqsBlDG-_ocDMFkT1SQmgTGnVWDqnw== new file mode 100644 index 0000000..300cd3a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5MX2w9cbtpC2vgffUYMY9gm6tR0LPja4NGmW7nPZ0rxnbqj3pT15lVEQzqsBlDG-_ocDMFkT1SQmgTGnVWDqnw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5O0aov5_0O45t4rjUBS2dRcpLMWTg5hTzCDZjY5ofovQuUweQ5t-VwPzGtOYGAtw4qUpemvlm2b_xPT3VmNa_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5O0aov5_0O45t4rjUBS2dRcpLMWTg5hTzCDZjY5ofovQuUweQ5t-VwPzGtOYGAtw4qUpemvlm2b_xPT3VmNa_w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5O0aov5_0O45t4rjUBS2dRcpLMWTg5hTzCDZjY5ofovQuUweQ5t-VwPzGtOYGAtw4qUpemvlm2b_xPT3VmNa_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5XxkToXfYqUgq3ka07K5nUBxr6JbY5ZbfZ8HQD5_DTaPSTemqBX8HnOAVI6lXTA0VyRiUSfslnkvTfLAAYsIOw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5XxkToXfYqUgq3ka07K5nUBxr6JbY5ZbfZ8HQD5_DTaPSTemqBX8HnOAVI6lXTA0VyRiUSfslnkvTfLAAYsIOw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5XxkToXfYqUgq3ka07K5nUBxr6JbY5ZbfZ8HQD5_DTaPSTemqBX8HnOAVI6lXTA0VyRiUSfslnkvTfLAAYsIOw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5Yx2oGOWQqa7-TDdoE0KuCZQ2yTeZHRFi_bwOTgtvqTROenm2TIKZcwh_imee0HEjxmRAQid6E2QL3UdaBDSow== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5Yx2oGOWQqa7-TDdoE0KuCZQ2yTeZHRFi_bwOTgtvqTROenm2TIKZcwh_imee0HEjxmRAQid6E2QL3UdaBDSow== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5Yx2oGOWQqa7-TDdoE0KuCZQ2yTeZHRFi_bwOTgtvqTROenm2TIKZcwh_imee0HEjxmRAQid6E2QL3UdaBDSow== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5bLL6WwJH6Tlef70vtZMGxmxPJSVXIUFDPj6gNex07AfjKep3d1uEP8B92V7Bjfe6pfymCVJmZbwJFpDLHptWA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5bLL6WwJH6Tlef70vtZMGxmxPJSVXIUFDPj6gNex07AfjKep3d1uEP8B92V7Bjfe6pfymCVJmZbwJFpDLHptWA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5bLL6WwJH6Tlef70vtZMGxmxPJSVXIUFDPj6gNex07AfjKep3d1uEP8B92V7Bjfe6pfymCVJmZbwJFpDLHptWA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5eU0dnfDcK58G9lkxpLdJUdbyAJFVUFlXDYj1Cl6Os6D11dt3rxFruGpiUX1_ATwrvFXxQjjkEFB5AbL694pRQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5eU0dnfDcK58G9lkxpLdJUdbyAJFVUFlXDYj1Cl6Os6D11dt3rxFruGpiUX1_ATwrvFXxQjjkEFB5AbL694pRQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5eU0dnfDcK58G9lkxpLdJUdbyAJFVUFlXDYj1Cl6Os6D11dt3rxFruGpiUX1_ATwrvFXxQjjkEFB5AbL694pRQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5giAcoyO4zkHcum0NqrWiisYmpKQuyb-03RIGMqG3CXzggKbKQPjSxRbzDJXq6aOgVW4PMXQkNNJTC1qin9pfA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5giAcoyO4zkHcum0NqrWiisYmpKQuyb-03RIGMqG3CXzggKbKQPjSxRbzDJXq6aOgVW4PMXQkNNJTC1qin9pfA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5giAcoyO4zkHcum0NqrWiisYmpKQuyb-03RIGMqG3CXzggKbKQPjSxRbzDJXq6aOgVW4PMXQkNNJTC1qin9pfA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5le3SwtHs2glFGqXF8ShJigx3Q0-wO_gSXa_Pq8Doe1K-AmKh4KY9zBItm9-tr-RtReyc8Ifttlq5ddIKNRvpQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5le3SwtHs2glFGqXF8ShJigx3Q0-wO_gSXa_Pq8Doe1K-AmKh4KY9zBItm9-tr-RtReyc8Ifttlq5ddIKNRvpQ== new file mode 100644 index 0000000..d10c196 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~5le3SwtHs2glFGqXF8ShJigx3Q0-wO_gSXa_Pq8Doe1K-AmKh4KY9zBItm9-tr-RtReyc8Ifttlq5ddIKNRvpQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~63b-GUUgVPuy8ybcLF_nwD1twHp1cHbi02Ht7OFNep4MBNTGITix8LSNjd5ma9LmbJGwzg7gQt6jqTZNyMaAaA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~63b-GUUgVPuy8ybcLF_nwD1twHp1cHbi02Ht7OFNep4MBNTGITix8LSNjd5ma9LmbJGwzg7gQt6jqTZNyMaAaA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~63b-GUUgVPuy8ybcLF_nwD1twHp1cHbi02Ht7OFNep4MBNTGITix8LSNjd5ma9LmbJGwzg7gQt6jqTZNyMaAaA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~64Bvqe1sCHlJJco2WcmDtxbmvI2mLpTmmG6CmnLfNL7WfHWOuMCGgtBpzfDEqZQtmgaY_dY6sWCHMmOR0mOtCA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~64Bvqe1sCHlJJco2WcmDtxbmvI2mLpTmmG6CmnLfNL7WfHWOuMCGgtBpzfDEqZQtmgaY_dY6sWCHMmOR0mOtCA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~64Bvqe1sCHlJJco2WcmDtxbmvI2mLpTmmG6CmnLfNL7WfHWOuMCGgtBpzfDEqZQtmgaY_dY6sWCHMmOR0mOtCA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~65POgdN4vnkT9G6AVdktbfIvGDf9YiQGYswbpr4C4jKMIZyxnu7ebOaB2LZu_ZXvp1dpsC7FEpGS0bY99IQcOQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~65POgdN4vnkT9G6AVdktbfIvGDf9YiQGYswbpr4C4jKMIZyxnu7ebOaB2LZu_ZXvp1dpsC7FEpGS0bY99IQcOQ== new file mode 100644 index 0000000..cc608d0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~65POgdN4vnkT9G6AVdktbfIvGDf9YiQGYswbpr4C4jKMIZyxnu7ebOaB2LZu_ZXvp1dpsC7FEpGS0bY99IQcOQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~67n8bsOx-zd3rHC2dWkLyB6M-8SzJnEVu9DWvJAwRHb-KUZGCiE_rxcu_9VuJBi-4abgeP1iE1hgm7oo1G5xXw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~67n8bsOx-zd3rHC2dWkLyB6M-8SzJnEVu9DWvJAwRHb-KUZGCiE_rxcu_9VuJBi-4abgeP1iE1hgm7oo1G5xXw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~67n8bsOx-zd3rHC2dWkLyB6M-8SzJnEVu9DWvJAwRHb-KUZGCiE_rxcu_9VuJBi-4abgeP1iE1hgm7oo1G5xXw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6DkCMaMKPIvkC28Od_o0cJ6KPObXKgHPEGS3q_-0_-pUr0G4qbG-Fi3Fs-fJWE8xeTIGfEQTT2nydt626fDY_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6DkCMaMKPIvkC28Od_o0cJ6KPObXKgHPEGS3q_-0_-pUr0G4qbG-Fi3Fs-fJWE8xeTIGfEQTT2nydt626fDY_w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6DkCMaMKPIvkC28Od_o0cJ6KPObXKgHPEGS3q_-0_-pUr0G4qbG-Fi3Fs-fJWE8xeTIGfEQTT2nydt626fDY_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6GK32W5xHyei9AGjP3u71UFZpUOBfmiDdPoE7xLGw563h9U7B45W-ItDwG9aTKcKiY9PiyamlG7yeKyNTyBiAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6GK32W5xHyei9AGjP3u71UFZpUOBfmiDdPoE7xLGw563h9U7B45W-ItDwG9aTKcKiY9PiyamlG7yeKyNTyBiAg== new file mode 100644 index 0000000..d678933 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6GK32W5xHyei9AGjP3u71UFZpUOBfmiDdPoE7xLGw563h9U7B45W-ItDwG9aTKcKiY9PiyamlG7yeKyNTyBiAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6Ggw2-4jnY9fouojLZB3_u1-J8LRLwXxdIGv1pqdN77ndavhPEynuEYWvAmv4TpMCR_ZIkKB2ISWawOgbpxjDA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6Ggw2-4jnY9fouojLZB3_u1-J8LRLwXxdIGv1pqdN77ndavhPEynuEYWvAmv4TpMCR_ZIkKB2ISWawOgbpxjDA== new file mode 100644 index 0000000..41c17aa Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6Ggw2-4jnY9fouojLZB3_u1-J8LRLwXxdIGv1pqdN77ndavhPEynuEYWvAmv4TpMCR_ZIkKB2ISWawOgbpxjDA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6MCmcpyJuW-FWNkhEZzQDeU372c-pCm_C60Fx3SRnNa67Pgdc9imYmc9Gnj6zs5bsfwONH2cCvWQqPMd0Mndlg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6MCmcpyJuW-FWNkhEZzQDeU372c-pCm_C60Fx3SRnNa67Pgdc9imYmc9Gnj6zs5bsfwONH2cCvWQqPMd0Mndlg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6MCmcpyJuW-FWNkhEZzQDeU372c-pCm_C60Fx3SRnNa67Pgdc9imYmc9Gnj6zs5bsfwONH2cCvWQqPMd0Mndlg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6NJoMTwY6kMn0A38UF0Rjixn-hqs77KQ8OdCNN0eEdd4VsOpCB6VvdlH4IwdJPbatztrD9yAeNlB1jjg4mO38g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6NJoMTwY6kMn0A38UF0Rjixn-hqs77KQ8OdCNN0eEdd4VsOpCB6VvdlH4IwdJPbatztrD9yAeNlB1jjg4mO38g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6NJoMTwY6kMn0A38UF0Rjixn-hqs77KQ8OdCNN0eEdd4VsOpCB6VvdlH4IwdJPbatztrD9yAeNlB1jjg4mO38g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6NVb_4j4adtEDqhUmey7aE1BleF013nH_4Cmrq97hJh1eG3rkc-t71alZYXHPDA7kTTYc5wamA5u7KAhLscZjg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6NVb_4j4adtEDqhUmey7aE1BleF013nH_4Cmrq97hJh1eG3rkc-t71alZYXHPDA7kTTYc5wamA5u7KAhLscZjg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6NVb_4j4adtEDqhUmey7aE1BleF013nH_4Cmrq97hJh1eG3rkc-t71alZYXHPDA7kTTYc5wamA5u7KAhLscZjg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6PlFW8fhpjZW3vF5HxIAEwJHqjEYpCDpLTAozztO0zvBn-fB1iI68qfj5kSk0hqbU-I8hAfLt1Dz34N6S_hI0w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6PlFW8fhpjZW3vF5HxIAEwJHqjEYpCDpLTAozztO0zvBn-fB1iI68qfj5kSk0hqbU-I8hAfLt1Dz34N6S_hI0w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6PlFW8fhpjZW3vF5HxIAEwJHqjEYpCDpLTAozztO0zvBn-fB1iI68qfj5kSk0hqbU-I8hAfLt1Dz34N6S_hI0w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6X7ZsWgSNqppsHLCJNJJPEKgyC6-rWmkVdPO-IYL51ZGTJmSc6enHaXaf6daVp4O_XgEc-EwPqhzJ-9ags9DsQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6X7ZsWgSNqppsHLCJNJJPEKgyC6-rWmkVdPO-IYL51ZGTJmSc6enHaXaf6daVp4O_XgEc-EwPqhzJ-9ags9DsQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6X7ZsWgSNqppsHLCJNJJPEKgyC6-rWmkVdPO-IYL51ZGTJmSc6enHaXaf6daVp4O_XgEc-EwPqhzJ-9ags9DsQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6ZMW8Lt_MAbBKzQf6pH5f4uyoNGtIlhyHOeHWESQ3vStH6VfAPFUxVoFUfnVmCuijlM8evZFU26PIOmHxysALg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6ZMW8Lt_MAbBKzQf6pH5f4uyoNGtIlhyHOeHWESQ3vStH6VfAPFUxVoFUfnVmCuijlM8evZFU26PIOmHxysALg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6ZMW8Lt_MAbBKzQf6pH5f4uyoNGtIlhyHOeHWESQ3vStH6VfAPFUxVoFUfnVmCuijlM8evZFU26PIOmHxysALg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6chzCm0UD3IxktwP-Dhcq57CKMPDJi-XirKr8RGfdUGDaH92WK6_pJfC44R21PjklW97825liR3TUM9IhPSWwA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6chzCm0UD3IxktwP-Dhcq57CKMPDJi-XirKr8RGfdUGDaH92WK6_pJfC44R21PjklW97825liR3TUM9IhPSWwA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6chzCm0UD3IxktwP-Dhcq57CKMPDJi-XirKr8RGfdUGDaH92WK6_pJfC44R21PjklW97825liR3TUM9IhPSWwA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6fuM6r5iYpBKU5DL0JSTKInBwHi4AFfXzwYNJ41Ur3ufcuec63qNlc7AMM3TFlchr_QH-KPOYLrNQYxiWUi2kg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6fuM6r5iYpBKU5DL0JSTKInBwHi4AFfXzwYNJ41Ur3ufcuec63qNlc7AMM3TFlchr_QH-KPOYLrNQYxiWUi2kg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6fuM6r5iYpBKU5DL0JSTKInBwHi4AFfXzwYNJ41Ur3ufcuec63qNlc7AMM3TFlchr_QH-KPOYLrNQYxiWUi2kg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6nuUnF-ilvUPddYogAngcYUKNlvIvHnMiCPq4V956Nh1E5fiFhj7ZdDesAJXE00w078kbKOxxUsW5bQmIYMilQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6nuUnF-ilvUPddYogAngcYUKNlvIvHnMiCPq4V956Nh1E5fiFhj7ZdDesAJXE00w078kbKOxxUsW5bQmIYMilQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6nuUnF-ilvUPddYogAngcYUKNlvIvHnMiCPq4V956Nh1E5fiFhj7ZdDesAJXE00w078kbKOxxUsW5bQmIYMilQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6qe2Ryp8VUZ2kTPCFK9SbbyjQLL8kmyHpSLlfv6F2HOVeNp1Sk0z5Tr0qHoNPryJ3FpQP8nqCpGdQAd2zAZXug== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6qe2Ryp8VUZ2kTPCFK9SbbyjQLL8kmyHpSLlfv6F2HOVeNp1Sk0z5Tr0qHoNPryJ3FpQP8nqCpGdQAd2zAZXug== new file mode 100644 index 0000000..65917a7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6qe2Ryp8VUZ2kTPCFK9SbbyjQLL8kmyHpSLlfv6F2HOVeNp1Sk0z5Tr0qHoNPryJ3FpQP8nqCpGdQAd2zAZXug== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6rIbZDzklnjdRZUzttuPdSx90_2DN7BXP1JBzZRbKVJox8XUVogrI7L2_eqB0qqbURydu8TFKzF520NHQzXnuA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6rIbZDzklnjdRZUzttuPdSx90_2DN7BXP1JBzZRbKVJox8XUVogrI7L2_eqB0qqbURydu8TFKzF520NHQzXnuA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6rIbZDzklnjdRZUzttuPdSx90_2DN7BXP1JBzZRbKVJox8XUVogrI7L2_eqB0qqbURydu8TFKzF520NHQzXnuA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6tvWENy9dKOzLEj4Cna7scdEImmpaBm5aQm-z0wunqsTNJEuiKq-9RWHownoI2phkoEF4eiQEC_0USOiWVutuA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6tvWENy9dKOzLEj4Cna7scdEImmpaBm5aQm-z0wunqsTNJEuiKq-9RWHownoI2phkoEF4eiQEC_0USOiWVutuA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6tvWENy9dKOzLEj4Cna7scdEImmpaBm5aQm-z0wunqsTNJEuiKq-9RWHownoI2phkoEF4eiQEC_0USOiWVutuA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6xHlkvnnIxAZAl48TyVoJ9thgXU7mrppQdzk7LlcLaoFY1z8lNeBtc0qIORuBELCAAo2cUNEzkAxMc5sLMKpGg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6xHlkvnnIxAZAl48TyVoJ9thgXU7mrppQdzk7LlcLaoFY1z8lNeBtc0qIORuBELCAAo2cUNEzkAxMc5sLMKpGg== new file mode 100644 index 0000000..a74ce67 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~6xHlkvnnIxAZAl48TyVoJ9thgXU7mrppQdzk7LlcLaoFY1z8lNeBtc0qIORuBELCAAo2cUNEzkAxMc5sLMKpGg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~73wE651Bnl5Gq2-L4kmRS7vC3q9mel9hULzCL9TXGSM-XCqvqfYsvQ2yAKT_0O560Uwdi7D4NyychHupmHdbTQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~73wE651Bnl5Gq2-L4kmRS7vC3q9mel9hULzCL9TXGSM-XCqvqfYsvQ2yAKT_0O560Uwdi7D4NyychHupmHdbTQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~73wE651Bnl5Gq2-L4kmRS7vC3q9mel9hULzCL9TXGSM-XCqvqfYsvQ2yAKT_0O560Uwdi7D4NyychHupmHdbTQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~75ypQMDhbR7u5SN4xHVhEJlIUs6cXhYcHuhvyipYzovqNxDGcpPOh4j8UqM2EgUwrN9uSx8UZBMt3grYC5S7NA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~75ypQMDhbR7u5SN4xHVhEJlIUs6cXhYcHuhvyipYzovqNxDGcpPOh4j8UqM2EgUwrN9uSx8UZBMt3grYC5S7NA== new file mode 100644 index 0000000..49e7ef9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~75ypQMDhbR7u5SN4xHVhEJlIUs6cXhYcHuhvyipYzovqNxDGcpPOh4j8UqM2EgUwrN9uSx8UZBMt3grYC5S7NA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~76_FRXiFa0cVYAJM1vkQjQaQ28b7L2PYCp-LfFfuAKXELCi-nOcf_udP_vP2hGadAaT6avv6fG4MeEapcC0SzA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~76_FRXiFa0cVYAJM1vkQjQaQ28b7L2PYCp-LfFfuAKXELCi-nOcf_udP_vP2hGadAaT6avv6fG4MeEapcC0SzA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~76_FRXiFa0cVYAJM1vkQjQaQ28b7L2PYCp-LfFfuAKXELCi-nOcf_udP_vP2hGadAaT6avv6fG4MeEapcC0SzA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7AUGyb4VDFSJlmxfhXXWJ4IWxLHGhxV7zF4-sQoipR_BYXtm72XZvBo54uN-3YFtGOIURx1LfTjzeYqJz9lelQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7AUGyb4VDFSJlmxfhXXWJ4IWxLHGhxV7zF4-sQoipR_BYXtm72XZvBo54uN-3YFtGOIURx1LfTjzeYqJz9lelQ== new file mode 100644 index 0000000..b7889ac Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7AUGyb4VDFSJlmxfhXXWJ4IWxLHGhxV7zF4-sQoipR_BYXtm72XZvBo54uN-3YFtGOIURx1LfTjzeYqJz9lelQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7LzIh0bHuEYh-O1gnO4Bk94imbpLgB6Q0LgpEzmuzYVqVYZ4XOeQn3MYa7pbvsQ3NQmrwmWLTLIwqzE34GSR5Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7LzIh0bHuEYh-O1gnO4Bk94imbpLgB6Q0LgpEzmuzYVqVYZ4XOeQn3MYa7pbvsQ3NQmrwmWLTLIwqzE34GSR5Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7LzIh0bHuEYh-O1gnO4Bk94imbpLgB6Q0LgpEzmuzYVqVYZ4XOeQn3MYa7pbvsQ3NQmrwmWLTLIwqzE34GSR5Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7QDMB4tuMh2EJUUJl3DGBCkI3GPAYeBu8uxQVofCbVbemKhe1PbJUT145BB87qtSgW3PKbi1J-TApZMqAzFBnw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7QDMB4tuMh2EJUUJl3DGBCkI3GPAYeBu8uxQVofCbVbemKhe1PbJUT145BB87qtSgW3PKbi1J-TApZMqAzFBnw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7QDMB4tuMh2EJUUJl3DGBCkI3GPAYeBu8uxQVofCbVbemKhe1PbJUT145BB87qtSgW3PKbi1J-TApZMqAzFBnw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7Qb7xltc9cdEBNHwv5F2jSA7AOWp1Lzk-8GALZR_MMP9amJ9TElgCEjbwSz1L64W4pqHjHitMm8q2waa9r1rcQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7Qb7xltc9cdEBNHwv5F2jSA7AOWp1Lzk-8GALZR_MMP9amJ9TElgCEjbwSz1L64W4pqHjHitMm8q2waa9r1rcQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7Qb7xltc9cdEBNHwv5F2jSA7AOWp1Lzk-8GALZR_MMP9amJ9TElgCEjbwSz1L64W4pqHjHitMm8q2waa9r1rcQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7_Iw0wNUT6k8xM12h6bYsYp-kGcnLYz6-NFPAv11dQ9BTsFeuq6LO1vXtKgd4fx7r4HKOh7tf9WSHgAxFZVu1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7_Iw0wNUT6k8xM12h6bYsYp-kGcnLYz6-NFPAv11dQ9BTsFeuq6LO1vXtKgd4fx7r4HKOh7tf9WSHgAxFZVu1g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7_Iw0wNUT6k8xM12h6bYsYp-kGcnLYz6-NFPAv11dQ9BTsFeuq6LO1vXtKgd4fx7r4HKOh7tf9WSHgAxFZVu1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7cw4hdpadOfBH__DjbzRSl0Bi-LbVBggOwK37AaxwmUIE-_IHHl0JGd6COHHk9OUVjDcBWQNlY9wp4DpPKYEuw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7cw4hdpadOfBH__DjbzRSl0Bi-LbVBggOwK37AaxwmUIE-_IHHl0JGd6COHHk9OUVjDcBWQNlY9wp4DpPKYEuw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7cw4hdpadOfBH__DjbzRSl0Bi-LbVBggOwK37AaxwmUIE-_IHHl0JGd6COHHk9OUVjDcBWQNlY9wp4DpPKYEuw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7cz0tCvQZqn7VJuBTzaRhe66O76HGa9VYQijcVFjs3UpOFie-1qUZz1gPQlcyfiE5Tgmq20rtMx393GckhbPpg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7cz0tCvQZqn7VJuBTzaRhe66O76HGa9VYQijcVFjs3UpOFie-1qUZz1gPQlcyfiE5Tgmq20rtMx393GckhbPpg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7cz0tCvQZqn7VJuBTzaRhe66O76HGa9VYQijcVFjs3UpOFie-1qUZz1gPQlcyfiE5Tgmq20rtMx393GckhbPpg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7eNbIZ-S2YT6jatQeNiTeHI1RwOdv_9cGi3n7MjG1v3QYmYLCZuUn2cQDXrEgjspiVeqgXcSJ9DfuoRPlqov5A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7eNbIZ-S2YT6jatQeNiTeHI1RwOdv_9cGi3n7MjG1v3QYmYLCZuUn2cQDXrEgjspiVeqgXcSJ9DfuoRPlqov5A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7eNbIZ-S2YT6jatQeNiTeHI1RwOdv_9cGi3n7MjG1v3QYmYLCZuUn2cQDXrEgjspiVeqgXcSJ9DfuoRPlqov5A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7rVSrAu2lTmjScl96spZdbpmDHNx0Q-gDVlgpI-P0-tSYGhH3LMydTVRNS4ZNkMBePu4p2CY7z5C3FuWLzLOCQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7rVSrAu2lTmjScl96spZdbpmDHNx0Q-gDVlgpI-P0-tSYGhH3LMydTVRNS4ZNkMBePu4p2CY7z5C3FuWLzLOCQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7rVSrAu2lTmjScl96spZdbpmDHNx0Q-gDVlgpI-P0-tSYGhH3LMydTVRNS4ZNkMBePu4p2CY7z5C3FuWLzLOCQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7yqaM4KR1le1n2gpG0UN_K2XlUWp-LddF84qGvk5gTCgJqxQrDXr14Rl-_Zqe1WtvA9kw7NTQ-42yZ020UNRig== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7yqaM4KR1le1n2gpG0UN_K2XlUWp-LddF84qGvk5gTCgJqxQrDXr14Rl-_Zqe1WtvA9kw7NTQ-42yZ020UNRig== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~7yqaM4KR1le1n2gpG0UN_K2XlUWp-LddF84qGvk5gTCgJqxQrDXr14Rl-_Zqe1WtvA9kw7NTQ-42yZ020UNRig== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8-QzYQGE5FZapNfrrbLu7hhl3B5DXSt0xZxw4Tk9lvI3FM2X_TXvWzsis4_W2zj9NatxDa_BL2GGaiF-kQXadg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8-QzYQGE5FZapNfrrbLu7hhl3B5DXSt0xZxw4Tk9lvI3FM2X_TXvWzsis4_W2zj9NatxDa_BL2GGaiF-kQXadg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8-QzYQGE5FZapNfrrbLu7hhl3B5DXSt0xZxw4Tk9lvI3FM2X_TXvWzsis4_W2zj9NatxDa_BL2GGaiF-kQXadg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8AvwqoB_dqRqP8Nfb69diqfUIcIew5anuJvV-PlJ_SRB_ZS6L4fa94z2ABgBxF3o20rb0M-lgdRUV30j-aqRgQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8AvwqoB_dqRqP8Nfb69diqfUIcIew5anuJvV-PlJ_SRB_ZS6L4fa94z2ABgBxF3o20rb0M-lgdRUV30j-aqRgQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8AvwqoB_dqRqP8Nfb69diqfUIcIew5anuJvV-PlJ_SRB_ZS6L4fa94z2ABgBxF3o20rb0M-lgdRUV30j-aqRgQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8CXnjnbqbR0HLEmEW9LNlP1RBER_Vdr0uM4perUKVppYAl4LtkQIT_Xq15PGUHFekuvCvMsoqDOVSxSiOqDc_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8CXnjnbqbR0HLEmEW9LNlP1RBER_Vdr0uM4perUKVppYAl4LtkQIT_Xq15PGUHFekuvCvMsoqDOVSxSiOqDc_A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8CXnjnbqbR0HLEmEW9LNlP1RBER_Vdr0uM4perUKVppYAl4LtkQIT_Xq15PGUHFekuvCvMsoqDOVSxSiOqDc_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8CXznNy5DddV4wg2F6UEqVXEPQ7tZLB_W8zvyVXtJwZIczCh45nLqDjlXX6c6rBUrLi2rPPklwMYxEFh9e2_Ig== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8CXznNy5DddV4wg2F6UEqVXEPQ7tZLB_W8zvyVXtJwZIczCh45nLqDjlXX6c6rBUrLi2rPPklwMYxEFh9e2_Ig== new file mode 100644 index 0000000..d2d0d47 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8CXznNy5DddV4wg2F6UEqVXEPQ7tZLB_W8zvyVXtJwZIczCh45nLqDjlXX6c6rBUrLi2rPPklwMYxEFh9e2_Ig== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8H5UKernTz984It1DmuA2JZtsteKCieZneN9o_o-iz2XIyKl4ybU08ywLZA6xiHeWq7YDhPUmuqH-Xg38Z1yWg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8H5UKernTz984It1DmuA2JZtsteKCieZneN9o_o-iz2XIyKl4ybU08ywLZA6xiHeWq7YDhPUmuqH-Xg38Z1yWg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8H5UKernTz984It1DmuA2JZtsteKCieZneN9o_o-iz2XIyKl4ybU08ywLZA6xiHeWq7YDhPUmuqH-Xg38Z1yWg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8PCh1xg-Mbm3-sXpV5DvVCyOI2YaEzVUGESfCzoF49s3eCUuMWNuLgVt8Z_FGUFfWTsNrMixQ_bhevylLIwJmw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8PCh1xg-Mbm3-sXpV5DvVCyOI2YaEzVUGESfCzoF49s3eCUuMWNuLgVt8Z_FGUFfWTsNrMixQ_bhevylLIwJmw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8PCh1xg-Mbm3-sXpV5DvVCyOI2YaEzVUGESfCzoF49s3eCUuMWNuLgVt8Z_FGUFfWTsNrMixQ_bhevylLIwJmw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8Qx3N_eO9HMQdFg0BxY5qLoTEVUn0pXcPIqF2PtTeJB1TuCxkENL3TwNA7rOZlXDQRyDKPryd7ZM43lrcYXQPA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8Qx3N_eO9HMQdFg0BxY5qLoTEVUn0pXcPIqF2PtTeJB1TuCxkENL3TwNA7rOZlXDQRyDKPryd7ZM43lrcYXQPA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8Qx3N_eO9HMQdFg0BxY5qLoTEVUn0pXcPIqF2PtTeJB1TuCxkENL3TwNA7rOZlXDQRyDKPryd7ZM43lrcYXQPA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8Slm7ffix0MnXSf3g5AvW8WoAxu9X7hbuH7olm3boMA9AxN-AR7_yXZ1tcLyRxvluQdyrLYBynOyNpVrvsv6ig== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8Slm7ffix0MnXSf3g5AvW8WoAxu9X7hbuH7olm3boMA9AxN-AR7_yXZ1tcLyRxvluQdyrLYBynOyNpVrvsv6ig== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8Slm7ffix0MnXSf3g5AvW8WoAxu9X7hbuH7olm3boMA9AxN-AR7_yXZ1tcLyRxvluQdyrLYBynOyNpVrvsv6ig== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8TqWj1JnLI14tgYPLriZR2V-3l74PpoXbcnFRZBABcZ8S9pw33gDVkssi5f1XZm_eQlNdvH7l_X9dpF-nhiEqQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8TqWj1JnLI14tgYPLriZR2V-3l74PpoXbcnFRZBABcZ8S9pw33gDVkssi5f1XZm_eQlNdvH7l_X9dpF-nhiEqQ== new file mode 100644 index 0000000..0b08507 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8TqWj1JnLI14tgYPLriZR2V-3l74PpoXbcnFRZBABcZ8S9pw33gDVkssi5f1XZm_eQlNdvH7l_X9dpF-nhiEqQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8eUPwn_eTf-0KF0MD79ZMWTBTU-z6mRZgG0XDUia2Qg5zAUpJj3xZA1px-U36WjOVoxe5ZFePrWmp3hFUt3Sng== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8eUPwn_eTf-0KF0MD79ZMWTBTU-z6mRZgG0XDUia2Qg5zAUpJj3xZA1px-U36WjOVoxe5ZFePrWmp3hFUt3Sng== new file mode 100644 index 0000000..8afe70f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8eUPwn_eTf-0KF0MD79ZMWTBTU-z6mRZgG0XDUia2Qg5zAUpJj3xZA1px-U36WjOVoxe5ZFePrWmp3hFUt3Sng== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8i8MQstICwCJgnjvBlsuSLNrpXMPsegwwTikVW7GkdridlHr84lvqmJm19uvy1zNZlCZxs8Ce-z7rNXQzjLC6A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8i8MQstICwCJgnjvBlsuSLNrpXMPsegwwTikVW7GkdridlHr84lvqmJm19uvy1zNZlCZxs8Ce-z7rNXQzjLC6A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8i8MQstICwCJgnjvBlsuSLNrpXMPsegwwTikVW7GkdridlHr84lvqmJm19uvy1zNZlCZxs8Ce-z7rNXQzjLC6A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8rlJb1TdvpewXWMkRijn-K8MCKj2IdEJgcjKjcBYV2VeAcxP6j8zgTW7DKVjXHBU-YxlP44Mpuy1HrGP0DO-Hg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8rlJb1TdvpewXWMkRijn-K8MCKj2IdEJgcjKjcBYV2VeAcxP6j8zgTW7DKVjXHBU-YxlP44Mpuy1HrGP0DO-Hg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8rlJb1TdvpewXWMkRijn-K8MCKj2IdEJgcjKjcBYV2VeAcxP6j8zgTW7DKVjXHBU-YxlP44Mpuy1HrGP0DO-Hg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8sMtUpxhRKgswx2lOMHr9ptgrwJo7tIKzlIkVGd0zsVibpHupr26owqH3-qgiwsGPdZ1nBbrzRpIFhIQLKRa8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8sMtUpxhRKgswx2lOMHr9ptgrwJo7tIKzlIkVGd0zsVibpHupr26owqH3-qgiwsGPdZ1nBbrzRpIFhIQLKRa8Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8sMtUpxhRKgswx2lOMHr9ptgrwJo7tIKzlIkVGd0zsVibpHupr26owqH3-qgiwsGPdZ1nBbrzRpIFhIQLKRa8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8svHvbL0eX286lHJQhQA9pHKZcTAhEQ3PATAIsMoyT_GS3fPjOxX4adIkRyF6lMWhOvKYgmHeEwhaiVAVVLOZw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8svHvbL0eX286lHJQhQA9pHKZcTAhEQ3PATAIsMoyT_GS3fPjOxX4adIkRyF6lMWhOvKYgmHeEwhaiVAVVLOZw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8svHvbL0eX286lHJQhQA9pHKZcTAhEQ3PATAIsMoyT_GS3fPjOxX4adIkRyF6lMWhOvKYgmHeEwhaiVAVVLOZw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8twyqx-l1Cb2ac0rbG6Nj6c8zvVJwcFsnhQndIYIcWwry1fNo3s2iUpbhpu4MmCSMF3BONMH9f8DvLOepTX_FA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8twyqx-l1Cb2ac0rbG6Nj6c8zvVJwcFsnhQndIYIcWwry1fNo3s2iUpbhpu4MmCSMF3BONMH9f8DvLOepTX_FA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8twyqx-l1Cb2ac0rbG6Nj6c8zvVJwcFsnhQndIYIcWwry1fNo3s2iUpbhpu4MmCSMF3BONMH9f8DvLOepTX_FA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8vd-028OZ4lemZGhKGKcrm8CQuVfAeITn_AfY2w-PcIXBLH1rFyxFcriCiZ1B2KUGBU_EHCY2fty5lbwkvAUTQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8vd-028OZ4lemZGhKGKcrm8CQuVfAeITn_AfY2w-PcIXBLH1rFyxFcriCiZ1B2KUGBU_EHCY2fty5lbwkvAUTQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8vd-028OZ4lemZGhKGKcrm8CQuVfAeITn_AfY2w-PcIXBLH1rFyxFcriCiZ1B2KUGBU_EHCY2fty5lbwkvAUTQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8vqE63zCsSS91At9iHYolSrAmnlV19xSaQw8xB_MDxKV3rZqgknyzYy19j8QpzZXatCRlsy263roGsC6-tYajw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8vqE63zCsSS91At9iHYolSrAmnlV19xSaQw8xB_MDxKV3rZqgknyzYy19j8QpzZXatCRlsy263roGsC6-tYajw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8vqE63zCsSS91At9iHYolSrAmnlV19xSaQw8xB_MDxKV3rZqgknyzYy19j8QpzZXatCRlsy263roGsC6-tYajw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8wFhrg7oRz4OakqnpVgp8HS841Te2hGoQzjUW-0b0A_dFnwFZbnIc5kSyZKtXBrS1U3F58OtEoP7stIvyTjjHQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8wFhrg7oRz4OakqnpVgp8HS841Te2hGoQzjUW-0b0A_dFnwFZbnIc5kSyZKtXBrS1U3F58OtEoP7stIvyTjjHQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~8wFhrg7oRz4OakqnpVgp8HS841Te2hGoQzjUW-0b0A_dFnwFZbnIc5kSyZKtXBrS1U3F58OtEoP7stIvyTjjHQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9-zw4ixiRMXyD2M-AEe7jiK9ph0HFiGoFs81PWHYNkVeWnlwmhwcE469klRIRfeRKZtz9VPvBjXRg7OTBQET8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9-zw4ixiRMXyD2M-AEe7jiK9ph0HFiGoFs81PWHYNkVeWnlwmhwcE469klRIRfeRKZtz9VPvBjXRg7OTBQET8Q== new file mode 100644 index 0000000..641f5a3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9-zw4ixiRMXyD2M-AEe7jiK9ph0HFiGoFs81PWHYNkVeWnlwmhwcE469klRIRfeRKZtz9VPvBjXRg7OTBQET8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~90wq67TgWUSzNH4I1h4TOC8NMy7aacOVrYKl6qMT6xhHiGICXajM32o8VvX-Ekenw35XKC1VZJ7fx3GMpgGiSg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~90wq67TgWUSzNH4I1h4TOC8NMy7aacOVrYKl6qMT6xhHiGICXajM32o8VvX-Ekenw35XKC1VZJ7fx3GMpgGiSg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~90wq67TgWUSzNH4I1h4TOC8NMy7aacOVrYKl6qMT6xhHiGICXajM32o8VvX-Ekenw35XKC1VZJ7fx3GMpgGiSg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~93UkbO7ZaBesXdHxgh4qjAQJYcTIKOfDpySPuBDgdfhpr3dss_ylFnKxrKRd56mwMDGnctC6wf6crkhCLNKjnw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~93UkbO7ZaBesXdHxgh4qjAQJYcTIKOfDpySPuBDgdfhpr3dss_ylFnKxrKRd56mwMDGnctC6wf6crkhCLNKjnw== new file mode 100644 index 0000000..4a657c9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~93UkbO7ZaBesXdHxgh4qjAQJYcTIKOfDpySPuBDgdfhpr3dss_ylFnKxrKRd56mwMDGnctC6wf6crkhCLNKjnw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~93oJmfCg3749DoRCUHjWESrbpZG5dITGFjAGtVZP6NHVRGOo0f3f71qXpY2ssYcebHO1MI_IoOnqA2H9iyFKyg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~93oJmfCg3749DoRCUHjWESrbpZG5dITGFjAGtVZP6NHVRGOo0f3f71qXpY2ssYcebHO1MI_IoOnqA2H9iyFKyg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~93oJmfCg3749DoRCUHjWESrbpZG5dITGFjAGtVZP6NHVRGOo0f3f71qXpY2ssYcebHO1MI_IoOnqA2H9iyFKyg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~97XcSlErc8ShP3ykSAk-G8F4Zqi3T-_emOYFhV2YLz7hy1KMKjOj9KF6sBLUDqKbl88EnGwNbT6d2wFxCgDFNQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~97XcSlErc8ShP3ykSAk-G8F4Zqi3T-_emOYFhV2YLz7hy1KMKjOj9KF6sBLUDqKbl88EnGwNbT6d2wFxCgDFNQ== new file mode 100644 index 0000000..8bc24ef Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~97XcSlErc8ShP3ykSAk-G8F4Zqi3T-_emOYFhV2YLz7hy1KMKjOj9KF6sBLUDqKbl88EnGwNbT6d2wFxCgDFNQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~98bFpc8HCMHzIKJ6BUt92vxogx81m1z1gCUOFVNvajsit7vgJaMw7HvsTACOBRlxCfrUOPFh5cIdpK2t9n-Dpg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~98bFpc8HCMHzIKJ6BUt92vxogx81m1z1gCUOFVNvajsit7vgJaMw7HvsTACOBRlxCfrUOPFh5cIdpK2t9n-Dpg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~98bFpc8HCMHzIKJ6BUt92vxogx81m1z1gCUOFVNvajsit7vgJaMw7HvsTACOBRlxCfrUOPFh5cIdpK2t9n-Dpg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~98jQZzq4K2esVRcqV3hkUOOUhSzjWmxckPdXXZZ2_ikdSh0INYb6uQFz35gEJe7F1V7bau3_YuIoOFMp7TXJWg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~98jQZzq4K2esVRcqV3hkUOOUhSzjWmxckPdXXZZ2_ikdSh0INYb6uQFz35gEJe7F1V7bau3_YuIoOFMp7TXJWg== new file mode 100644 index 0000000..5d70b07 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~98jQZzq4K2esVRcqV3hkUOOUhSzjWmxckPdXXZZ2_ikdSh0INYb6uQFz35gEJe7F1V7bau3_YuIoOFMp7TXJWg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9AAxBD2ZjMz27-fhuhuD5LAPPR-ivJmE7qYxXa3pFDY9Wim9gnYC7UoG2ThOxtq-MSCYMGoClwViXMGyb0Ix8A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9AAxBD2ZjMz27-fhuhuD5LAPPR-ivJmE7qYxXa3pFDY9Wim9gnYC7UoG2ThOxtq-MSCYMGoClwViXMGyb0Ix8A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9AAxBD2ZjMz27-fhuhuD5LAPPR-ivJmE7qYxXa3pFDY9Wim9gnYC7UoG2ThOxtq-MSCYMGoClwViXMGyb0Ix8A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9Fak13FtGTSdk9ngUfDO9Shd-WDuz-JYYK3-_rUR9OMeIlkk9brVgP7gq0IsIYaqklfusgfbLx_38K7emtOc9w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9Fak13FtGTSdk9ngUfDO9Shd-WDuz-JYYK3-_rUR9OMeIlkk9brVgP7gq0IsIYaqklfusgfbLx_38K7emtOc9w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9Fak13FtGTSdk9ngUfDO9Shd-WDuz-JYYK3-_rUR9OMeIlkk9brVgP7gq0IsIYaqklfusgfbLx_38K7emtOc9w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9Ku0A_wRJaUf_vvaUKb6jmWHHov0lRElf96sQc7jvlNzELr-xBeHY0gpSyMm-SBz_rH7Pu9YFHJU50HL3JO-uw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9Ku0A_wRJaUf_vvaUKb6jmWHHov0lRElf96sQc7jvlNzELr-xBeHY0gpSyMm-SBz_rH7Pu9YFHJU50HL3JO-uw== new file mode 100644 index 0000000..787f159 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9Ku0A_wRJaUf_vvaUKb6jmWHHov0lRElf96sQc7jvlNzELr-xBeHY0gpSyMm-SBz_rH7Pu9YFHJU50HL3JO-uw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9LhlTTjBW7PVHJObIvzSN5eZfOK6mpb2ba4vdiXVl0o4gk9p1befEAw0JAm1knv3e-5cL5PaHIFgspZEOxac1w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9LhlTTjBW7PVHJObIvzSN5eZfOK6mpb2ba4vdiXVl0o4gk9p1befEAw0JAm1knv3e-5cL5PaHIFgspZEOxac1w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9LhlTTjBW7PVHJObIvzSN5eZfOK6mpb2ba4vdiXVl0o4gk9p1befEAw0JAm1knv3e-5cL5PaHIFgspZEOxac1w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9O8ijNLHQ_RZSqjQCZPq3-gsMmFagg3QiZG56JQvJHRa1PH-RtigYOVR794YZeyE8q1oY9kyEU69dSfd4RZ45g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9O8ijNLHQ_RZSqjQCZPq3-gsMmFagg3QiZG56JQvJHRa1PH-RtigYOVR794YZeyE8q1oY9kyEU69dSfd4RZ45g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9O8ijNLHQ_RZSqjQCZPq3-gsMmFagg3QiZG56JQvJHRa1PH-RtigYOVR794YZeyE8q1oY9kyEU69dSfd4RZ45g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9OV_sc3ucjknll4RIhtiP3sVpqe2gydixDmsXNV_9SUi52ZOvV_EbmZgfVuPY17R8oh6CTdAgufcYqjlxgzmmA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9OV_sc3ucjknll4RIhtiP3sVpqe2gydixDmsXNV_9SUi52ZOvV_EbmZgfVuPY17R8oh6CTdAgufcYqjlxgzmmA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9OV_sc3ucjknll4RIhtiP3sVpqe2gydixDmsXNV_9SUi52ZOvV_EbmZgfVuPY17R8oh6CTdAgufcYqjlxgzmmA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9Q0eQRJCRzmCgJyiH85V66wEdiAk1VZRPTrAZqlcUkOrSwA84jXCdaVAd9A9BQdZqGZfyMF_VmF1Dnh9HKCFgw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9Q0eQRJCRzmCgJyiH85V66wEdiAk1VZRPTrAZqlcUkOrSwA84jXCdaVAd9A9BQdZqGZfyMF_VmF1Dnh9HKCFgw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9Q0eQRJCRzmCgJyiH85V66wEdiAk1VZRPTrAZqlcUkOrSwA84jXCdaVAd9A9BQdZqGZfyMF_VmF1Dnh9HKCFgw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9SHnzbghRuDZzSM5zkASQkT0wQIL4r8MQKTL8qB5QaLbOLzsNpdaZSFUuB7_LQpabk-DVXVTG4P4tLm0YzMrwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9SHnzbghRuDZzSM5zkASQkT0wQIL4r8MQKTL8qB5QaLbOLzsNpdaZSFUuB7_LQpabk-DVXVTG4P4tLm0YzMrwg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9SHnzbghRuDZzSM5zkASQkT0wQIL4r8MQKTL8qB5QaLbOLzsNpdaZSFUuB7_LQpabk-DVXVTG4P4tLm0YzMrwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9UAxB7fG1bVjUA6Q1BvU7dqt1q9vlR9MofgButBwIY-nXSz7ZzEH_WPNIOSvmdoLG0vZEMn-stc__e1yCneOww== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9UAxB7fG1bVjUA6Q1BvU7dqt1q9vlR9MofgButBwIY-nXSz7ZzEH_WPNIOSvmdoLG0vZEMn-stc__e1yCneOww== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9UAxB7fG1bVjUA6Q1BvU7dqt1q9vlR9MofgButBwIY-nXSz7ZzEH_WPNIOSvmdoLG0vZEMn-stc__e1yCneOww== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9a6AGkH3-8RFV4aqNifT2YBQ62hAcMkYGq7qWyQzFgBgi9k8tYVlKSCk_R7EDqMTNSrSXuUN15J8sIB_-ksA0g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9a6AGkH3-8RFV4aqNifT2YBQ62hAcMkYGq7qWyQzFgBgi9k8tYVlKSCk_R7EDqMTNSrSXuUN15J8sIB_-ksA0g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9a6AGkH3-8RFV4aqNifT2YBQ62hAcMkYGq7qWyQzFgBgi9k8tYVlKSCk_R7EDqMTNSrSXuUN15J8sIB_-ksA0g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9hpe3DAgvJF0NmDWclmbqpPA0idZi8LIFLnZuqnEKYNgWe6a1ZkPQG8rGWvfzipI1MU1aEe31NiIu4gPf7yzDw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9hpe3DAgvJF0NmDWclmbqpPA0idZi8LIFLnZuqnEKYNgWe6a1ZkPQG8rGWvfzipI1MU1aEe31NiIu4gPf7yzDw== new file mode 100644 index 0000000..e083d69 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9hpe3DAgvJF0NmDWclmbqpPA0idZi8LIFLnZuqnEKYNgWe6a1ZkPQG8rGWvfzipI1MU1aEe31NiIu4gPf7yzDw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9irOSIaC5k04TW-tzMJoh2X2bYQoEc50tI9VIaDmdJnHhkfOJ_Fx26Bou5UC0rOA3LdlS_M-7JqjtE3Kt5SfZA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9irOSIaC5k04TW-tzMJoh2X2bYQoEc50tI9VIaDmdJnHhkfOJ_Fx26Bou5UC0rOA3LdlS_M-7JqjtE3Kt5SfZA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9irOSIaC5k04TW-tzMJoh2X2bYQoEc50tI9VIaDmdJnHhkfOJ_Fx26Bou5UC0rOA3LdlS_M-7JqjtE3Kt5SfZA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9kTkUDra-L1vEzO3tnLuB-gQx1Mmx5snNbK6NAIbzGpIBTfQI5QowRRVzPZKiy6SN6JJzCSID2rMDqQpYIOoQw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9kTkUDra-L1vEzO3tnLuB-gQx1Mmx5snNbK6NAIbzGpIBTfQI5QowRRVzPZKiy6SN6JJzCSID2rMDqQpYIOoQw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9kTkUDra-L1vEzO3tnLuB-gQx1Mmx5snNbK6NAIbzGpIBTfQI5QowRRVzPZKiy6SN6JJzCSID2rMDqQpYIOoQw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9uN4ZMUk3sidanSsWvHegt0rzMeAOve4GUZJXAqNDdTCdpcskhgRhP21alloqQiFftN0STT7RnHIFls5PQNnWQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9uN4ZMUk3sidanSsWvHegt0rzMeAOve4GUZJXAqNDdTCdpcskhgRhP21alloqQiFftN0STT7RnHIFls5PQNnWQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9uN4ZMUk3sidanSsWvHegt0rzMeAOve4GUZJXAqNDdTCdpcskhgRhP21alloqQiFftN0STT7RnHIFls5PQNnWQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9ugc0Qhb38n1sSEyfFWlAa6s8pMf5P3fVTZX-yJWxPQnIssIVRp75zCOuYfSWHG9xv9WNzxTFclUVNfokF5l-w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9ugc0Qhb38n1sSEyfFWlAa6s8pMf5P3fVTZX-yJWxPQnIssIVRp75zCOuYfSWHG9xv9WNzxTFclUVNfokF5l-w== new file mode 100644 index 0000000..28ff2bb Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9ugc0Qhb38n1sSEyfFWlAa6s8pMf5P3fVTZX-yJWxPQnIssIVRp75zCOuYfSWHG9xv9WNzxTFclUVNfokF5l-w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9xJVGG4HoXnj5xjnYj8tkWWm4ny2rr8WeLyHPNnEghHxnAvGFDUVccFUDv7SxMk5SKtdnTs4ESOuSJdsdrwoOA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9xJVGG4HoXnj5xjnYj8tkWWm4ny2rr8WeLyHPNnEghHxnAvGFDUVccFUDv7SxMk5SKtdnTs4ESOuSJdsdrwoOA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~9xJVGG4HoXnj5xjnYj8tkWWm4ny2rr8WeLyHPNnEghHxnAvGFDUVccFUDv7SxMk5SKtdnTs4ESOuSJdsdrwoOA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~A1jI_k71Slh4KhcBNNkXHmdXg3-cMBTOPGYpf0PdQsOYF4mMeq8eqREYy_WWNBD3u0s8w53hI0An7hAFpDoJHw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~A1jI_k71Slh4KhcBNNkXHmdXg3-cMBTOPGYpf0PdQsOYF4mMeq8eqREYy_WWNBD3u0s8w53hI0An7hAFpDoJHw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~A1jI_k71Slh4KhcBNNkXHmdXg3-cMBTOPGYpf0PdQsOYF4mMeq8eqREYy_WWNBD3u0s8w53hI0An7hAFpDoJHw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~A4YcN4syXepALlAKUpIQReB_37C7PIim43fgoChXOjPhKOt8h9isFRY4a0ja0ckjrOIuw3nAIibm9Ne8dlCq0w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~A4YcN4syXepALlAKUpIQReB_37C7PIim43fgoChXOjPhKOt8h9isFRY4a0ja0ckjrOIuw3nAIibm9Ne8dlCq0w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~A4YcN4syXepALlAKUpIQReB_37C7PIim43fgoChXOjPhKOt8h9isFRY4a0ja0ckjrOIuw3nAIibm9Ne8dlCq0w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~A60rNSRgTRAJZ7KSIrZyQUcWVFZYYFhC4utYeJRJZcfD1CCazXOa0a_MXbCANZ_HbCXotn1Hfsr4xObhxqoStg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~A60rNSRgTRAJZ7KSIrZyQUcWVFZYYFhC4utYeJRJZcfD1CCazXOa0a_MXbCANZ_HbCXotn1Hfsr4xObhxqoStg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~A60rNSRgTRAJZ7KSIrZyQUcWVFZYYFhC4utYeJRJZcfD1CCazXOa0a_MXbCANZ_HbCXotn1Hfsr4xObhxqoStg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~A6bdF-bYqKoyUh76aYg8sw_z2_2qhnpzXNnBHmYZNyAuFfaGqa0gAlwmiTPcIf4iptXEqQsM0PNaDEek5aLz1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~A6bdF-bYqKoyUh76aYg8sw_z2_2qhnpzXNnBHmYZNyAuFfaGqa0gAlwmiTPcIf4iptXEqQsM0PNaDEek5aLz1g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~A6bdF-bYqKoyUh76aYg8sw_z2_2qhnpzXNnBHmYZNyAuFfaGqa0gAlwmiTPcIf4iptXEqQsM0PNaDEek5aLz1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AALtV40_ssMqXtU1pSm8dA2ZL-6jYTpq7DVx6EYqBICBC5ZN5gpQmzIEtwAt1xdiSQudF5iUS1Tw77Py1hPZyw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AALtV40_ssMqXtU1pSm8dA2ZL-6jYTpq7DVx6EYqBICBC5ZN5gpQmzIEtwAt1xdiSQudF5iUS1Tw77Py1hPZyw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AALtV40_ssMqXtU1pSm8dA2ZL-6jYTpq7DVx6EYqBICBC5ZN5gpQmzIEtwAt1xdiSQudF5iUS1Tw77Py1hPZyw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AB3s0_xk8uzOgJaD9q8ZDMhypU9t03YgDUgEL0-g3XZy9RsKLUNhd5oYUOPthcrknKpm51EmczlaS6PAydbQyQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AB3s0_xk8uzOgJaD9q8ZDMhypU9t03YgDUgEL0-g3XZy9RsKLUNhd5oYUOPthcrknKpm51EmczlaS6PAydbQyQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AB3s0_xk8uzOgJaD9q8ZDMhypU9t03YgDUgEL0-g3XZy9RsKLUNhd5oYUOPthcrknKpm51EmczlaS6PAydbQyQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ABaLJG5z-hE0nhThzFXiMUS31Cik-g9Hp--Sc39xKRTyAW4ZAsi1OmF3mOAY9oIPhECQl88lbiihofmyELuCNA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ABaLJG5z-hE0nhThzFXiMUS31Cik-g9Hp--Sc39xKRTyAW4ZAsi1OmF3mOAY9oIPhECQl88lbiihofmyELuCNA== new file mode 100644 index 0000000..986f008 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ABaLJG5z-hE0nhThzFXiMUS31Cik-g9Hp--Sc39xKRTyAW4ZAsi1OmF3mOAY9oIPhECQl88lbiihofmyELuCNA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AIolazpHiBaFR2pSXTSiArekEi-w3x4H20ppjvq9RKDurgt8OngeFNElRdKbtTT5LZkGoAOH8cbbWxmWf8I1gQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AIolazpHiBaFR2pSXTSiArekEi-w3x4H20ppjvq9RKDurgt8OngeFNElRdKbtTT5LZkGoAOH8cbbWxmWf8I1gQ== new file mode 100644 index 0000000..18d7b42 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AIolazpHiBaFR2pSXTSiArekEi-w3x4H20ppjvq9RKDurgt8OngeFNElRdKbtTT5LZkGoAOH8cbbWxmWf8I1gQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AK36dcfJFlHHPVtBP63llUtl-aah0WZNTp5bf9ikQJokeMCadC2sz1roJzHwR_neOb9GTjalwO-Kiz1w9zP8hA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AK36dcfJFlHHPVtBP63llUtl-aah0WZNTp5bf9ikQJokeMCadC2sz1roJzHwR_neOb9GTjalwO-Kiz1w9zP8hA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AK36dcfJFlHHPVtBP63llUtl-aah0WZNTp5bf9ikQJokeMCadC2sz1roJzHwR_neOb9GTjalwO-Kiz1w9zP8hA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ALKw7SU6ZakVKERJlwV6V8U6swaykujzt6J_lbYijmuRnho0uKzkvEP3DryX84yxrJHZR_RyEgUR-tpnYMmJ_Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ALKw7SU6ZakVKERJlwV6V8U6swaykujzt6J_lbYijmuRnho0uKzkvEP3DryX84yxrJHZR_RyEgUR-tpnYMmJ_Q== new file mode 100644 index 0000000..5d31520 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ALKw7SU6ZakVKERJlwV6V8U6swaykujzt6J_lbYijmuRnho0uKzkvEP3DryX84yxrJHZR_RyEgUR-tpnYMmJ_Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ANRfILEESLFUmiq6gzlLJENdz8RyLtLukQtqNMcrLH1x-v9zjCVi-VFNQKuNOrrQEivdJeRVUv_A8ZGDoSnOcA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ANRfILEESLFUmiq6gzlLJENdz8RyLtLukQtqNMcrLH1x-v9zjCVi-VFNQKuNOrrQEivdJeRVUv_A8ZGDoSnOcA== new file mode 100644 index 0000000..efc9085 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ANRfILEESLFUmiq6gzlLJENdz8RyLtLukQtqNMcrLH1x-v9zjCVi-VFNQKuNOrrQEivdJeRVUv_A8ZGDoSnOcA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AUd1Q33azwLwFWCEp6WTxS_9rXksl5Xdeu91wQCIClvitxl_Q5CET9vMvohmhON03AX2_mcteDckBsV83kPsdw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AUd1Q33azwLwFWCEp6WTxS_9rXksl5Xdeu91wQCIClvitxl_Q5CET9vMvohmhON03AX2_mcteDckBsV83kPsdw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AUd1Q33azwLwFWCEp6WTxS_9rXksl5Xdeu91wQCIClvitxl_Q5CET9vMvohmhON03AX2_mcteDckBsV83kPsdw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AV7a149U4Mn5lordeLaUJ7B_0aVNLrpcL3PXFsUk6k_yEJ6NLXqvl20gevuQ58VzgCXpO1THFYc4m1lcVjen2Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AV7a149U4Mn5lordeLaUJ7B_0aVNLrpcL3PXFsUk6k_yEJ6NLXqvl20gevuQ58VzgCXpO1THFYc4m1lcVjen2Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AV7a149U4Mn5lordeLaUJ7B_0aVNLrpcL3PXFsUk6k_yEJ6NLXqvl20gevuQ58VzgCXpO1THFYc4m1lcVjen2Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AZpulhWoNLdSouHyDrjiz3ItN6YBEri52xNmDj8FSXir8zD4ekqiAYaWKk7obZ-bQ3UgomHt_YA4cHWlfYoO2A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AZpulhWoNLdSouHyDrjiz3ItN6YBEri52xNmDj8FSXir8zD4ekqiAYaWKk7obZ-bQ3UgomHt_YA4cHWlfYoO2A== new file mode 100644 index 0000000..e2b79d0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AZpulhWoNLdSouHyDrjiz3ItN6YBEri52xNmDj8FSXir8zD4ekqiAYaWKk7obZ-bQ3UgomHt_YA4cHWlfYoO2A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AhNGhAbAgBVu1SoGBBj3U6U1FZrBrcm_umRddfYe_Y-SbSOyBCU3-pKZ7WAvxLzKuZlT6iOH1M77oYHwlVsdSw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AhNGhAbAgBVu1SoGBBj3U6U1FZrBrcm_umRddfYe_Y-SbSOyBCU3-pKZ7WAvxLzKuZlT6iOH1M77oYHwlVsdSw== new file mode 100644 index 0000000..9747fef Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AhNGhAbAgBVu1SoGBBj3U6U1FZrBrcm_umRddfYe_Y-SbSOyBCU3-pKZ7WAvxLzKuZlT6iOH1M77oYHwlVsdSw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AkijaDw96R4QoftUHe0-faLwRhJiAB67zax-Qa35zMVcla--Ir5CumHmbV4yae88l6MUkHxyIf2B8c7ikXrbKQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AkijaDw96R4QoftUHe0-faLwRhJiAB67zax-Qa35zMVcla--Ir5CumHmbV4yae88l6MUkHxyIf2B8c7ikXrbKQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AkijaDw96R4QoftUHe0-faLwRhJiAB67zax-Qa35zMVcla--Ir5CumHmbV4yae88l6MUkHxyIf2B8c7ikXrbKQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AurhIEyHfZNP1jXEL9ZiUvvD5_O-jJx7X1dOKk4nn2YgXgjPviTy5hGoMsPYJbyqVFjV3C35riUWYowwJRI2Mw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AurhIEyHfZNP1jXEL9ZiUvvD5_O-jJx7X1dOKk4nn2YgXgjPviTy5hGoMsPYJbyqVFjV3C35riUWYowwJRI2Mw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AurhIEyHfZNP1jXEL9ZiUvvD5_O-jJx7X1dOKk4nn2YgXgjPviTy5hGoMsPYJbyqVFjV3C35riUWYowwJRI2Mw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AvKVXdS6KOEyJX2CZh7pIEmkaDc5X8DhuzhhEPtb3UI1OgBcXFODQdEAIOdU7ytHHr1sMC5BPafrKROUngFolg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AvKVXdS6KOEyJX2CZh7pIEmkaDc5X8DhuzhhEPtb3UI1OgBcXFODQdEAIOdU7ytHHr1sMC5BPafrKROUngFolg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AvKVXdS6KOEyJX2CZh7pIEmkaDc5X8DhuzhhEPtb3UI1OgBcXFODQdEAIOdU7ytHHr1sMC5BPafrKROUngFolg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AvazQqeoLlpdaAGcBQaDaj9DdFvewXKHxAs7VTI7uZ4yqNnsMrvsmR1hvlPdPS7hAqEHGwdq7xwqX6mS44SpcA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AvazQqeoLlpdaAGcBQaDaj9DdFvewXKHxAs7VTI7uZ4yqNnsMrvsmR1hvlPdPS7hAqEHGwdq7xwqX6mS44SpcA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AvazQqeoLlpdaAGcBQaDaj9DdFvewXKHxAs7VTI7uZ4yqNnsMrvsmR1hvlPdPS7hAqEHGwdq7xwqX6mS44SpcA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AwPQXjruJniFKWpspWfy_iTgkOCJZ2PoQsdcOjZ2OgCzluMR3Kral3cMKPo7midPpphqdBkdcQAJjS6Lq9BgFQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AwPQXjruJniFKWpspWfy_iTgkOCJZ2PoQsdcOjZ2OgCzluMR3Kral3cMKPo7midPpphqdBkdcQAJjS6Lq9BgFQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AwPQXjruJniFKWpspWfy_iTgkOCJZ2PoQsdcOjZ2OgCzluMR3Kral3cMKPo7midPpphqdBkdcQAJjS6Lq9BgFQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Aw_hIWkWpbSv90ZnLnoPpOoeO-teGgDS5udhpmN6cch5UnzWLW75NVmuzMfNKdg2cH8VqEVoACqOYl9060zolQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Aw_hIWkWpbSv90ZnLnoPpOoeO-teGgDS5udhpmN6cch5UnzWLW75NVmuzMfNKdg2cH8VqEVoACqOYl9060zolQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Aw_hIWkWpbSv90ZnLnoPpOoeO-teGgDS5udhpmN6cch5UnzWLW75NVmuzMfNKdg2cH8VqEVoACqOYl9060zolQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AxksJa82vPEuYWVm_IakdRgUitzlAfgpMf36A1MszahkrVymZmFzQf20HW2xmZKgPQiWmp3g-9DFXJHfuoajTA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AxksJa82vPEuYWVm_IakdRgUitzlAfgpMf36A1MszahkrVymZmFzQf20HW2xmZKgPQiWmp3g-9DFXJHfuoajTA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~AxksJa82vPEuYWVm_IakdRgUitzlAfgpMf36A1MszahkrVymZmFzQf20HW2xmZKgPQiWmp3g-9DFXJHfuoajTA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~B4S6CuiQL7GPxMSSSHjPOHIZMd7fQPzrFDFEHlelDgLq4a2SxazHxxsO5XIMMC59Z01Wk-sk2YMmtuHir1xtHg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~B4S6CuiQL7GPxMSSSHjPOHIZMd7fQPzrFDFEHlelDgLq4a2SxazHxxsO5XIMMC59Z01Wk-sk2YMmtuHir1xtHg== new file mode 100644 index 0000000..b0760dd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~B4S6CuiQL7GPxMSSSHjPOHIZMd7fQPzrFDFEHlelDgLq4a2SxazHxxsO5XIMMC59Z01Wk-sk2YMmtuHir1xtHg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~B8Z7Tbx82pK_7MyNj6b82OtQ441P_NUpMyJpNVRECQ0RDvUsK_JgqFZH8NfYhoPaEbyecq3c8tc-s1WEnm3yCA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~B8Z7Tbx82pK_7MyNj6b82OtQ441P_NUpMyJpNVRECQ0RDvUsK_JgqFZH8NfYhoPaEbyecq3c8tc-s1WEnm3yCA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~B8Z7Tbx82pK_7MyNj6b82OtQ441P_NUpMyJpNVRECQ0RDvUsK_JgqFZH8NfYhoPaEbyecq3c8tc-s1WEnm3yCA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~BM8B6O0kO5IiIO_tiVhcSAjSJSEOU5BOPWL7n5BU9wde6yAwZLuwVb7YnYcNTYVQs7O5xOE2YOdF8_drf47dJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~BM8B6O0kO5IiIO_tiVhcSAjSJSEOU5BOPWL7n5BU9wde6yAwZLuwVb7YnYcNTYVQs7O5xOE2YOdF8_drf47dJg== new file mode 100644 index 0000000..3c26350 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~BM8B6O0kO5IiIO_tiVhcSAjSJSEOU5BOPWL7n5BU9wde6yAwZLuwVb7YnYcNTYVQs7O5xOE2YOdF8_drf47dJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~BhJdh235Mpqu4HfY606MHq9UiB1IsAZTOTiM1UPdEBL7g1RwJ0XBFNLNNIhNnrKiDr06hwiR50EkOLOaa7Tb7w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~BhJdh235Mpqu4HfY606MHq9UiB1IsAZTOTiM1UPdEBL7g1RwJ0XBFNLNNIhNnrKiDr06hwiR50EkOLOaa7Tb7w== new file mode 100644 index 0000000..87c17c1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~BhJdh235Mpqu4HfY606MHq9UiB1IsAZTOTiM1UPdEBL7g1RwJ0XBFNLNNIhNnrKiDr06hwiR50EkOLOaa7Tb7w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Bu8xyufQEAx2B80ABWs7bmVY3saHgnRD7tt5Op60fwcl9O9531WKL9lXyl9JknXB9RdE2X5XUNyP0vLBUFBg8g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Bu8xyufQEAx2B80ABWs7bmVY3saHgnRD7tt5Op60fwcl9O9531WKL9lXyl9JknXB9RdE2X5XUNyP0vLBUFBg8g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Bu8xyufQEAx2B80ABWs7bmVY3saHgnRD7tt5Op60fwcl9O9531WKL9lXyl9JknXB9RdE2X5XUNyP0vLBUFBg8g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C-Uxmg2xmFtrAYm3BIEcT432rwR2YGflR3VKh9K6053UiqlDmwcjRO0gZxoNCiovYg_BVSXISIRhk5emjN2Dig== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C-Uxmg2xmFtrAYm3BIEcT432rwR2YGflR3VKh9K6053UiqlDmwcjRO0gZxoNCiovYg_BVSXISIRhk5emjN2Dig== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C-Uxmg2xmFtrAYm3BIEcT432rwR2YGflR3VKh9K6053UiqlDmwcjRO0gZxoNCiovYg_BVSXISIRhk5emjN2Dig== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C2AkO47DB70vwQ7rCxVJVfUs5wC02-5wHxdmB2sm0O9KpS1zZXc0mKon0Uw6kIKSepe0ItXHZQwOFnqI6YGs7g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C2AkO47DB70vwQ7rCxVJVfUs5wC02-5wHxdmB2sm0O9KpS1zZXc0mKon0Uw6kIKSepe0ItXHZQwOFnqI6YGs7g== new file mode 100644 index 0000000..21e634c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C2AkO47DB70vwQ7rCxVJVfUs5wC02-5wHxdmB2sm0O9KpS1zZXc0mKon0Uw6kIKSepe0ItXHZQwOFnqI6YGs7g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C2UeWTV-dfcXWWiqOJowE-ZfyjR3Vrr0MYHPWFKtl9woTuW104YXdC-NQTA6qf2Rsa_Hl8jidnNb3LMiBDfdEQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C2UeWTV-dfcXWWiqOJowE-ZfyjR3Vrr0MYHPWFKtl9woTuW104YXdC-NQTA6qf2Rsa_Hl8jidnNb3LMiBDfdEQ== new file mode 100644 index 0000000..19c90d6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C2UeWTV-dfcXWWiqOJowE-ZfyjR3Vrr0MYHPWFKtl9woTuW104YXdC-NQTA6qf2Rsa_Hl8jidnNb3LMiBDfdEQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C2bzaRU0Uz0Yx20-k84ZT26yipphvDAIavkgjK5jrACF8Cq8oEe3v3gN6RnMEy-q57LK1f0EMt8GcE3mjxjMqA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C2bzaRU0Uz0Yx20-k84ZT26yipphvDAIavkgjK5jrACF8Cq8oEe3v3gN6RnMEy-q57LK1f0EMt8GcE3mjxjMqA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C2bzaRU0Uz0Yx20-k84ZT26yipphvDAIavkgjK5jrACF8Cq8oEe3v3gN6RnMEy-q57LK1f0EMt8GcE3mjxjMqA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C4NSuj5xwedy6dozKZA7ir8BUEhrrYbU52mti2tMkErOQSbH4DobQshmDzOCKKKOzDfkokKK4b-9gjVo6xaDUQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C4NSuj5xwedy6dozKZA7ir8BUEhrrYbU52mti2tMkErOQSbH4DobQshmDzOCKKKOzDfkokKK4b-9gjVo6xaDUQ== new file mode 100644 index 0000000..e02a614 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C4NSuj5xwedy6dozKZA7ir8BUEhrrYbU52mti2tMkErOQSbH4DobQshmDzOCKKKOzDfkokKK4b-9gjVo6xaDUQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C5MEJuhwtL7oP5itvsHyR4AMPOtOaUKuEcm3wjPuMMsRPW8SBwOzuhouQ4I3tkyrO-rCnFAd49prkp-bc4ZNkQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C5MEJuhwtL7oP5itvsHyR4AMPOtOaUKuEcm3wjPuMMsRPW8SBwOzuhouQ4I3tkyrO-rCnFAd49prkp-bc4ZNkQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~C5MEJuhwtL7oP5itvsHyR4AMPOtOaUKuEcm3wjPuMMsRPW8SBwOzuhouQ4I3tkyrO-rCnFAd49prkp-bc4ZNkQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CLtu7mZOUYfcsCVaQpjUajdPc2A1xy-vrgkIKjKM_7TDXTIcXs3KTNKFIQNi76GsjgbhXoUor5e3Awn-J04rKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CLtu7mZOUYfcsCVaQpjUajdPc2A1xy-vrgkIKjKM_7TDXTIcXs3KTNKFIQNi76GsjgbhXoUor5e3Awn-J04rKw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CLtu7mZOUYfcsCVaQpjUajdPc2A1xy-vrgkIKjKM_7TDXTIcXs3KTNKFIQNi76GsjgbhXoUor5e3Awn-J04rKw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CMQPHnlkR9xF2TdltuehJtaX2NKX-LSXidSyHF-UB0fGUpLfldVZbT_krPDUqZi9jN484X-OBy_t1MajX2r9qQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CMQPHnlkR9xF2TdltuehJtaX2NKX-LSXidSyHF-UB0fGUpLfldVZbT_krPDUqZi9jN484X-OBy_t1MajX2r9qQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CMQPHnlkR9xF2TdltuehJtaX2NKX-LSXidSyHF-UB0fGUpLfldVZbT_krPDUqZi9jN484X-OBy_t1MajX2r9qQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CSNqOu_taS3SXSo-kVanSJOBFXTchV0WNqe8IZFU0TA-M3kydRne6ZS1BifGlcx8hffP1EW5kwCzl1UOgcMS8w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CSNqOu_taS3SXSo-kVanSJOBFXTchV0WNqe8IZFU0TA-M3kydRne6ZS1BifGlcx8hffP1EW5kwCzl1UOgcMS8w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CSNqOu_taS3SXSo-kVanSJOBFXTchV0WNqe8IZFU0TA-M3kydRne6ZS1BifGlcx8hffP1EW5kwCzl1UOgcMS8w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CZnwDhjlgRfAxYgpWUUTNG1JoqlnDZ9VviQz2gbNCvlNeqSPPhpABuLP4F6Uvi4xlAzDTLgEngFSP_fVur0_aw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CZnwDhjlgRfAxYgpWUUTNG1JoqlnDZ9VviQz2gbNCvlNeqSPPhpABuLP4F6Uvi4xlAzDTLgEngFSP_fVur0_aw== new file mode 100644 index 0000000..d8f9fae Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CZnwDhjlgRfAxYgpWUUTNG1JoqlnDZ9VviQz2gbNCvlNeqSPPhpABuLP4F6Uvi4xlAzDTLgEngFSP_fVur0_aw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CbFGWNdNiQkcf_XC8Jz45aIBdeG7E_Iqg3GIjoTWtgMRxLezBGpXGfZgD2AlqSZVmKm6YA75Du2dJpRZ6PFKIA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CbFGWNdNiQkcf_XC8Jz45aIBdeG7E_Iqg3GIjoTWtgMRxLezBGpXGfZgD2AlqSZVmKm6YA75Du2dJpRZ6PFKIA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CbFGWNdNiQkcf_XC8Jz45aIBdeG7E_Iqg3GIjoTWtgMRxLezBGpXGfZgD2AlqSZVmKm6YA75Du2dJpRZ6PFKIA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CcPy3mXlojDt2OyzrekUy3ddgDdm5vLxXbgpSkVEtBTaleyhyb2BXhRlSF0QQjHKj-UDiWZOiu5yk7-8hOLUsw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CcPy3mXlojDt2OyzrekUy3ddgDdm5vLxXbgpSkVEtBTaleyhyb2BXhRlSF0QQjHKj-UDiWZOiu5yk7-8hOLUsw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CcPy3mXlojDt2OyzrekUy3ddgDdm5vLxXbgpSkVEtBTaleyhyb2BXhRlSF0QQjHKj-UDiWZOiu5yk7-8hOLUsw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Cj1DUDETA90AQodrgL5_bTzZs-6vut1cQepxuw33rI7zSt-J2AwPEkxLFXmYdUXjDIg5IPt4mTFi9ybQESpu8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Cj1DUDETA90AQodrgL5_bTzZs-6vut1cQepxuw33rI7zSt-J2AwPEkxLFXmYdUXjDIg5IPt4mTFi9ybQESpu8Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Cj1DUDETA90AQodrgL5_bTzZs-6vut1cQepxuw33rI7zSt-J2AwPEkxLFXmYdUXjDIg5IPt4mTFi9ybQESpu8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ClDooC6bX3b6JHQmRKAIHWF36H40lBSljkDcawoyPf0lUypQHJMOWhTlwclulro65E8xbrDG5rvf4O3bWYRnWQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ClDooC6bX3b6JHQmRKAIHWF36H40lBSljkDcawoyPf0lUypQHJMOWhTlwclulro65E8xbrDG5rvf4O3bWYRnWQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ClDooC6bX3b6JHQmRKAIHWF36H40lBSljkDcawoyPf0lUypQHJMOWhTlwclulro65E8xbrDG5rvf4O3bWYRnWQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ClP7iQJleHL1siidlyLik-4buVF2SYthcI1Pjr4mQInWHH-NT3FDtUVfO6lBycb8gqhrey3K2bC1fN_R-F51AQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ClP7iQJleHL1siidlyLik-4buVF2SYthcI1Pjr4mQInWHH-NT3FDtUVfO6lBycb8gqhrey3K2bC1fN_R-F51AQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ClP7iQJleHL1siidlyLik-4buVF2SYthcI1Pjr4mQInWHH-NT3FDtUVfO6lBycb8gqhrey3K2bC1fN_R-F51AQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ClqGY7sm-ZibEuR3nOdEHusE4y4ZND-zdRzPZ9VP6PfhUZmH3cs0EAGkyzXIIfsZdo3OXSayDMKm8HOqpR5gEw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ClqGY7sm-ZibEuR3nOdEHusE4y4ZND-zdRzPZ9VP6PfhUZmH3cs0EAGkyzXIIfsZdo3OXSayDMKm8HOqpR5gEw== new file mode 100644 index 0000000..d4a5fea Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ClqGY7sm-ZibEuR3nOdEHusE4y4ZND-zdRzPZ9VP6PfhUZmH3cs0EAGkyzXIIfsZdo3OXSayDMKm8HOqpR5gEw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CxfbxV7RsBJwmuIB5CIfnX2IavmKMJA1ul1nLLk3gEs1T2aADwLRFujuFs1gnENYHFI5BETnVvAU0-AHkLNSJQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CxfbxV7RsBJwmuIB5CIfnX2IavmKMJA1ul1nLLk3gEs1T2aADwLRFujuFs1gnENYHFI5BETnVvAU0-AHkLNSJQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~CxfbxV7RsBJwmuIB5CIfnX2IavmKMJA1ul1nLLk3gEs1T2aADwLRFujuFs1gnENYHFI5BETnVvAU0-AHkLNSJQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D1ADshkw4l-YJ3vqmZtVJ0td1DujvWX8Ba-jP54MHvw0fxrk3OyIDW0c4yyi3-ybxVPFugy2hqbPLMm08_mSDQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D1ADshkw4l-YJ3vqmZtVJ0td1DujvWX8Ba-jP54MHvw0fxrk3OyIDW0c4yyi3-ybxVPFugy2hqbPLMm08_mSDQ== new file mode 100644 index 0000000..dd6580c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D1ADshkw4l-YJ3vqmZtVJ0td1DujvWX8Ba-jP54MHvw0fxrk3OyIDW0c4yyi3-ybxVPFugy2hqbPLMm08_mSDQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D2q7DPh_9bJuokmi2LIBDXuBOkC7l4GzfLrtwrF8YQkXU8gLXwKcmhgeiRjSzukaued6l3gkNprzBxRPdverSg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D2q7DPh_9bJuokmi2LIBDXuBOkC7l4GzfLrtwrF8YQkXU8gLXwKcmhgeiRjSzukaued6l3gkNprzBxRPdverSg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D2q7DPh_9bJuokmi2LIBDXuBOkC7l4GzfLrtwrF8YQkXU8gLXwKcmhgeiRjSzukaued6l3gkNprzBxRPdverSg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D55-dpiXnA1sijhnZfpiGPfxa7O9WHWw51hVO30Jdi3ZmKS7s5LkfYaZ6qP-Lhv8DcYtNLyj6AiwIdKhtKIK3g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D55-dpiXnA1sijhnZfpiGPfxa7O9WHWw51hVO30Jdi3ZmKS7s5LkfYaZ6qP-Lhv8DcYtNLyj6AiwIdKhtKIK3g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D55-dpiXnA1sijhnZfpiGPfxa7O9WHWw51hVO30Jdi3ZmKS7s5LkfYaZ6qP-Lhv8DcYtNLyj6AiwIdKhtKIK3g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D77XjVXi0jsv55mTW6Lrdq7QZ-9xylLibCyukUDaZxUxlZGQMODFfGPIM1QP3kj-sc02VImfQRvUEDmxCgahkg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D77XjVXi0jsv55mTW6Lrdq7QZ-9xylLibCyukUDaZxUxlZGQMODFfGPIM1QP3kj-sc02VImfQRvUEDmxCgahkg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D77XjVXi0jsv55mTW6Lrdq7QZ-9xylLibCyukUDaZxUxlZGQMODFfGPIM1QP3kj-sc02VImfQRvUEDmxCgahkg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D7uppP1vpXBwW9jJWeWZfS92xljqmyHDWXMHKO0njGCGOms77fd_VHnF6bM8fcXjjJn_JpVgevC5LnhqkRs4xg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D7uppP1vpXBwW9jJWeWZfS92xljqmyHDWXMHKO0njGCGOms77fd_VHnF6bM8fcXjjJn_JpVgevC5LnhqkRs4xg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~D7uppP1vpXBwW9jJWeWZfS92xljqmyHDWXMHKO0njGCGOms77fd_VHnF6bM8fcXjjJn_JpVgevC5LnhqkRs4xg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DArRWeATsJVhJ7TBbnRBx0ieuBxo4YhzXkuvBxtNfVvyTbQ3v-T-fyNvLhHpd112rzqiblXdsEdSWt3PdR3IKg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DArRWeATsJVhJ7TBbnRBx0ieuBxo4YhzXkuvBxtNfVvyTbQ3v-T-fyNvLhHpd112rzqiblXdsEdSWt3PdR3IKg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DArRWeATsJVhJ7TBbnRBx0ieuBxo4YhzXkuvBxtNfVvyTbQ3v-T-fyNvLhHpd112rzqiblXdsEdSWt3PdR3IKg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DCZ5hD_PBIgvCGS19OA0ncYyw06MH9CcfvlvJLnCcNX3r0Vhvvcnbqr0jtHodewVqC5zy_SJv-B38VleOpohKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DCZ5hD_PBIgvCGS19OA0ncYyw06MH9CcfvlvJLnCcNX3r0Vhvvcnbqr0jtHodewVqC5zy_SJv-B38VleOpohKw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DCZ5hD_PBIgvCGS19OA0ncYyw06MH9CcfvlvJLnCcNX3r0Vhvvcnbqr0jtHodewVqC5zy_SJv-B38VleOpohKw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DD23Nrinprk4dwiewrSggwRryPbBtyK5zzSLxpneg4HtM6lnygCc9V-2Tb7QgqMrq6ngKQXiFQ2pwMf1s3_zkw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DD23Nrinprk4dwiewrSggwRryPbBtyK5zzSLxpneg4HtM6lnygCc9V-2Tb7QgqMrq6ngKQXiFQ2pwMf1s3_zkw== new file mode 100644 index 0000000..19eba78 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DD23Nrinprk4dwiewrSggwRryPbBtyK5zzSLxpneg4HtM6lnygCc9V-2Tb7QgqMrq6ngKQXiFQ2pwMf1s3_zkw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DGQLMBEpl2RuAou-RU-FpZUWtQjFRe08gX8xZnA9Y61PW9Un7PJRuOOoMPOIFWnNv-l8wSKPCVtCuTtFVJbMEg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DGQLMBEpl2RuAou-RU-FpZUWtQjFRe08gX8xZnA9Y61PW9Un7PJRuOOoMPOIFWnNv-l8wSKPCVtCuTtFVJbMEg== new file mode 100644 index 0000000..d90aeb6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DGQLMBEpl2RuAou-RU-FpZUWtQjFRe08gX8xZnA9Y61PW9Un7PJRuOOoMPOIFWnNv-l8wSKPCVtCuTtFVJbMEg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DJrWFHYdqo_uC1b7h3_fSnWudK8UML8zQwAvp4PHlBk2-A_v1cqfuAc3l_HfXDHdbVqz-i6xtjy8DaH2udqflA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DJrWFHYdqo_uC1b7h3_fSnWudK8UML8zQwAvp4PHlBk2-A_v1cqfuAc3l_HfXDHdbVqz-i6xtjy8DaH2udqflA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DJrWFHYdqo_uC1b7h3_fSnWudK8UML8zQwAvp4PHlBk2-A_v1cqfuAc3l_HfXDHdbVqz-i6xtjy8DaH2udqflA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DMw_ZPU1U57A8uBHelNZ-MeooeAaK_LUJm8SSHcAWOJ6h9lYAvmYj5AkoM60RkNQIWpKPuDbDKiRDwDt9wjvoA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DMw_ZPU1U57A8uBHelNZ-MeooeAaK_LUJm8SSHcAWOJ6h9lYAvmYj5AkoM60RkNQIWpKPuDbDKiRDwDt9wjvoA== new file mode 100644 index 0000000..ef6fd17 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DMw_ZPU1U57A8uBHelNZ-MeooeAaK_LUJm8SSHcAWOJ6h9lYAvmYj5AkoM60RkNQIWpKPuDbDKiRDwDt9wjvoA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DOW5Jg64syYqYsW83yyUaDnf5KS_8zndEn7pKMKD6jAUMeVoxFR4F5w7tdWL6Fb3i5ugYgLJrWfLVAQnlpRF8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DOW5Jg64syYqYsW83yyUaDnf5KS_8zndEn7pKMKD6jAUMeVoxFR4F5w7tdWL6Fb3i5ugYgLJrWfLVAQnlpRF8Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DOW5Jg64syYqYsW83yyUaDnf5KS_8zndEn7pKMKD6jAUMeVoxFR4F5w7tdWL6Fb3i5ugYgLJrWfLVAQnlpRF8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DQ0q4YJzGBMhFPFANC_Tm2WmS-XnYfGOPyMGcaPvoeC3Fk9JyDccnyjsDXEkyyzJn5rfdEsK8D2zFeVB4U8kQA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DQ0q4YJzGBMhFPFANC_Tm2WmS-XnYfGOPyMGcaPvoeC3Fk9JyDccnyjsDXEkyyzJn5rfdEsK8D2zFeVB4U8kQA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DQ0q4YJzGBMhFPFANC_Tm2WmS-XnYfGOPyMGcaPvoeC3Fk9JyDccnyjsDXEkyyzJn5rfdEsK8D2zFeVB4U8kQA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DQAXdsXgURNJWZ7ko_20AFuLRD8oy-lfT2NYEo4vbrCv0hHYAeCFx1pgdklzEb2XwqrQk4cIickNW-Mb5_aLFg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DQAXdsXgURNJWZ7ko_20AFuLRD8oy-lfT2NYEo4vbrCv0hHYAeCFx1pgdklzEb2XwqrQk4cIickNW-Mb5_aLFg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DQAXdsXgURNJWZ7ko_20AFuLRD8oy-lfT2NYEo4vbrCv0hHYAeCFx1pgdklzEb2XwqrQk4cIickNW-Mb5_aLFg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DQRk1NQI3hYW1IW4lC9ZiTKV52k-GnpnuG8-iKNnlvbN41csb9WXfU86qPvNG_gzm9AVOARgxAJoVUtGG5Lnlw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DQRk1NQI3hYW1IW4lC9ZiTKV52k-GnpnuG8-iKNnlvbN41csb9WXfU86qPvNG_gzm9AVOARgxAJoVUtGG5Lnlw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DQRk1NQI3hYW1IW4lC9ZiTKV52k-GnpnuG8-iKNnlvbN41csb9WXfU86qPvNG_gzm9AVOARgxAJoVUtGG5Lnlw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DRcQLW5xXn6nZ0MiJEOy1kUDkfMqsd2p3E6QBhPfYVrr1Isue269zu3UxTp52hi9zgGzzfFmxzRpRkRu871PLg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DRcQLW5xXn6nZ0MiJEOy1kUDkfMqsd2p3E6QBhPfYVrr1Isue269zu3UxTp52hi9zgGzzfFmxzRpRkRu871PLg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DRcQLW5xXn6nZ0MiJEOy1kUDkfMqsd2p3E6QBhPfYVrr1Isue269zu3UxTp52hi9zgGzzfFmxzRpRkRu871PLg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DU94HuOkADiiz4g-UnFEnFyTKFwnmpwrylMkPzDfCKTp4xQf0EJB3IWA4zKjme-wCHc8I95Q8Mzm-0vt6758RQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DU94HuOkADiiz4g-UnFEnFyTKFwnmpwrylMkPzDfCKTp4xQf0EJB3IWA4zKjme-wCHc8I95Q8Mzm-0vt6758RQ== new file mode 100644 index 0000000..373a8d6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DU94HuOkADiiz4g-UnFEnFyTKFwnmpwrylMkPzDfCKTp4xQf0EJB3IWA4zKjme-wCHc8I95Q8Mzm-0vt6758RQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DXpy4g8mRLuqTPmOv4fnjowvAtknV8PmmFzRU2HM5SFSxc64ucZJNSt62uHZrY6YRgnpqAA3cBks5vOzL20ytA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DXpy4g8mRLuqTPmOv4fnjowvAtknV8PmmFzRU2HM5SFSxc64ucZJNSt62uHZrY6YRgnpqAA3cBks5vOzL20ytA== new file mode 100644 index 0000000..3d7df32 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DXpy4g8mRLuqTPmOv4fnjowvAtknV8PmmFzRU2HM5SFSxc64ucZJNSt62uHZrY6YRgnpqAA3cBks5vOzL20ytA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DcVRSxUVeiGj3HbUCsi1gWJ3XpNlE4d18o8K3PPNIu4jQKXn3p_91jewRJR_WIU7OkVDJfYxSEZs5LA-yWbaIw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DcVRSxUVeiGj3HbUCsi1gWJ3XpNlE4d18o8K3PPNIu4jQKXn3p_91jewRJR_WIU7OkVDJfYxSEZs5LA-yWbaIw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DcVRSxUVeiGj3HbUCsi1gWJ3XpNlE4d18o8K3PPNIu4jQKXn3p_91jewRJR_WIU7OkVDJfYxSEZs5LA-yWbaIw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Di9WMdjFabFlNnskJLKV4nYnH6h46MvKfEmcl6VmnEP0s-Iw9_hoAL23CvLM430Rl8_-4-7cwMfvI_ykSmWBVg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Di9WMdjFabFlNnskJLKV4nYnH6h46MvKfEmcl6VmnEP0s-Iw9_hoAL23CvLM430Rl8_-4-7cwMfvI_ykSmWBVg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Di9WMdjFabFlNnskJLKV4nYnH6h46MvKfEmcl6VmnEP0s-Iw9_hoAL23CvLM430Rl8_-4-7cwMfvI_ykSmWBVg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Dv1o_7SqqwFldQGwlYfEGKk03-nqQevKMbXq7lTK7aHUbhCc9IYvvKceuYAer9qnqjx2wBIToMEYuSKrcAugkg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Dv1o_7SqqwFldQGwlYfEGKk03-nqQevKMbXq7lTK7aHUbhCc9IYvvKceuYAer9qnqjx2wBIToMEYuSKrcAugkg== new file mode 100644 index 0000000..0d33dd6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Dv1o_7SqqwFldQGwlYfEGKk03-nqQevKMbXq7lTK7aHUbhCc9IYvvKceuYAer9qnqjx2wBIToMEYuSKrcAugkg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DvTrwtHPtSxp6pUYc1lNbrQtjClVK_PSvtojRHchYcjhpPw7nnZHh7djXxqZeCiWGSWe0grvt6R2dbihyg9EyQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DvTrwtHPtSxp6pUYc1lNbrQtjClVK_PSvtojRHchYcjhpPw7nnZHh7djXxqZeCiWGSWe0grvt6R2dbihyg9EyQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DvTrwtHPtSxp6pUYc1lNbrQtjClVK_PSvtojRHchYcjhpPw7nnZHh7djXxqZeCiWGSWe0grvt6R2dbihyg9EyQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DvYxUB62MdQiwA48-QKTNfOZS1kNhFYa0sCCiMdmKeUamHI7QGgb7fpzbPjBAH3sJWb6vG473H2uacq-qyg1kw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DvYxUB62MdQiwA48-QKTNfOZS1kNhFYa0sCCiMdmKeUamHI7QGgb7fpzbPjBAH3sJWb6vG473H2uacq-qyg1kw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~DvYxUB62MdQiwA48-QKTNfOZS1kNhFYa0sCCiMdmKeUamHI7QGgb7fpzbPjBAH3sJWb6vG473H2uacq-qyg1kw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Dz_jpNSqZnW55DzxUvrPXLrAhZ5Cm6NVXMbnA4x-QrpUGMvmJ7oruLiO3QTJb9ZnYWzcLf8xY8FOf8c4Gt1Ekw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Dz_jpNSqZnW55DzxUvrPXLrAhZ5Cm6NVXMbnA4x-QrpUGMvmJ7oruLiO3QTJb9ZnYWzcLf8xY8FOf8c4Gt1Ekw== new file mode 100644 index 0000000..4fee4ba Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Dz_jpNSqZnW55DzxUvrPXLrAhZ5Cm6NVXMbnA4x-QrpUGMvmJ7oruLiO3QTJb9ZnYWzcLf8xY8FOf8c4Gt1Ekw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EDVLhWxhxRrtS7NfMRRyKgByOkK_cXpmQDWN4d-WPqo3QjzyESjZPzz3H5TawGxgNpKjaqS1EOmBwBw2xx7axg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EDVLhWxhxRrtS7NfMRRyKgByOkK_cXpmQDWN4d-WPqo3QjzyESjZPzz3H5TawGxgNpKjaqS1EOmBwBw2xx7axg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EDVLhWxhxRrtS7NfMRRyKgByOkK_cXpmQDWN4d-WPqo3QjzyESjZPzz3H5TawGxgNpKjaqS1EOmBwBw2xx7axg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EEdLMKSetsJ3NZIoG9gT2-fZsPixz4_1Kefd2Zpbjo0bwB-LdMGmGtqVydGD_bpu4GuAglVpn_UDdQ-2UfH3mw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EEdLMKSetsJ3NZIoG9gT2-fZsPixz4_1Kefd2Zpbjo0bwB-LdMGmGtqVydGD_bpu4GuAglVpn_UDdQ-2UfH3mw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EEdLMKSetsJ3NZIoG9gT2-fZsPixz4_1Kefd2Zpbjo0bwB-LdMGmGtqVydGD_bpu4GuAglVpn_UDdQ-2UfH3mw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EFhPntpkvMB-S1yWm2yEc7IwFHp_DkxWod-RNWhaM91zsqSmZRK1jeRw6Yx3mVhpYYMwCAO6-CHANHnb4ePTZA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EFhPntpkvMB-S1yWm2yEc7IwFHp_DkxWod-RNWhaM91zsqSmZRK1jeRw6Yx3mVhpYYMwCAO6-CHANHnb4ePTZA== new file mode 100644 index 0000000..f30fbb1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EFhPntpkvMB-S1yWm2yEc7IwFHp_DkxWod-RNWhaM91zsqSmZRK1jeRw6Yx3mVhpYYMwCAO6-CHANHnb4ePTZA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EHEyqcJ3gwQq8UzQF-WYX4lHR-2TG4VdO4W8Nv0adbawNlvSX3wRfIIBKc6KYDrO-gg6ldd2qq5LTzh8J20dAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EHEyqcJ3gwQq8UzQF-WYX4lHR-2TG4VdO4W8Nv0adbawNlvSX3wRfIIBKc6KYDrO-gg6ldd2qq5LTzh8J20dAg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EHEyqcJ3gwQq8UzQF-WYX4lHR-2TG4VdO4W8Nv0adbawNlvSX3wRfIIBKc6KYDrO-gg6ldd2qq5LTzh8J20dAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EcWEEqDQNYvwpzSgv6cXehG_BbLq_w6LQr8CTqVD9aZpmCxBcKWA9PROnAdiN8GBFmh5lbV4BQUlikJEORjzjg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EcWEEqDQNYvwpzSgv6cXehG_BbLq_w6LQr8CTqVD9aZpmCxBcKWA9PROnAdiN8GBFmh5lbV4BQUlikJEORjzjg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EcWEEqDQNYvwpzSgv6cXehG_BbLq_w6LQr8CTqVD9aZpmCxBcKWA9PROnAdiN8GBFmh5lbV4BQUlikJEORjzjg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EhHg52QOrJb4BtpJhSzx1-NjBpN8-q0mib7FBt4P8u4GmafjTG2EPvWqoSJ7bBOcIaeDWLnXHILvx__vgIiN0w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EhHg52QOrJb4BtpJhSzx1-NjBpN8-q0mib7FBt4P8u4GmafjTG2EPvWqoSJ7bBOcIaeDWLnXHILvx__vgIiN0w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EhHg52QOrJb4BtpJhSzx1-NjBpN8-q0mib7FBt4P8u4GmafjTG2EPvWqoSJ7bBOcIaeDWLnXHILvx__vgIiN0w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EjcmeDzjSFjRxFcnlNAgUdWsZS5BScn4Mm80bg5A-nbqbSBYSrSfl6HYpfzGm-8wDBtOuZb8qQnF3zjrj-vs5Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EjcmeDzjSFjRxFcnlNAgUdWsZS5BScn4Mm80bg5A-nbqbSBYSrSfl6HYpfzGm-8wDBtOuZb8qQnF3zjrj-vs5Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EjcmeDzjSFjRxFcnlNAgUdWsZS5BScn4Mm80bg5A-nbqbSBYSrSfl6HYpfzGm-8wDBtOuZb8qQnF3zjrj-vs5Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ek29aXb7XsSJCBSAWkdtekMFvdjEAW5m_2eaLdRMZJvLuOOf2pEaXtbHw5CELlcdm8jwGNU_TWbV3mmZYNtgfw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ek29aXb7XsSJCBSAWkdtekMFvdjEAW5m_2eaLdRMZJvLuOOf2pEaXtbHw5CELlcdm8jwGNU_TWbV3mmZYNtgfw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ek29aXb7XsSJCBSAWkdtekMFvdjEAW5m_2eaLdRMZJvLuOOf2pEaXtbHw5CELlcdm8jwGNU_TWbV3mmZYNtgfw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EkPG5Uk1MO76xLxHhN_Hf5ysCvCymIEBjyVr1_1XzrIAMZOPWwfUtDCc447T9DmsT-eCD2FGVTkbR1hnl7Pqlw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EkPG5Uk1MO76xLxHhN_Hf5ysCvCymIEBjyVr1_1XzrIAMZOPWwfUtDCc447T9DmsT-eCD2FGVTkbR1hnl7Pqlw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EkPG5Uk1MO76xLxHhN_Hf5ysCvCymIEBjyVr1_1XzrIAMZOPWwfUtDCc447T9DmsT-eCD2FGVTkbR1hnl7Pqlw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ekn1bxfIjdNCfC8ipkSyGOP4c5hwsoSa4sW6OlHPnfAX6_YKD0cu9HVeonwmzV4nHGDlKr6Q3otvLLrs3MDHsg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ekn1bxfIjdNCfC8ipkSyGOP4c5hwsoSa4sW6OlHPnfAX6_YKD0cu9HVeonwmzV4nHGDlKr6Q3otvLLrs3MDHsg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ekn1bxfIjdNCfC8ipkSyGOP4c5hwsoSa4sW6OlHPnfAX6_YKD0cu9HVeonwmzV4nHGDlKr6Q3otvLLrs3MDHsg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Er4PW8mnt7AYiBP4k--o0LJnw8G6jHQ-INIwfITYhQwHhzE7npgBOyiO23JGjReQKQGpcPqs_qAldACzVdMY_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Er4PW8mnt7AYiBP4k--o0LJnw8G6jHQ-INIwfITYhQwHhzE7npgBOyiO23JGjReQKQGpcPqs_qAldACzVdMY_A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Er4PW8mnt7AYiBP4k--o0LJnw8G6jHQ-INIwfITYhQwHhzE7npgBOyiO23JGjReQKQGpcPqs_qAldACzVdMY_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Er5sBLzOLoPDg9y3inTxRsPUXuLu1bOsiPiNN74RqoaUg8yX8CZl6wQZFoDErdToIXZQgsdnQVwSajTo8Irt2g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Er5sBLzOLoPDg9y3inTxRsPUXuLu1bOsiPiNN74RqoaUg8yX8CZl6wQZFoDErdToIXZQgsdnQVwSajTo8Irt2g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Er5sBLzOLoPDg9y3inTxRsPUXuLu1bOsiPiNN74RqoaUg8yX8CZl6wQZFoDErdToIXZQgsdnQVwSajTo8Irt2g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Es14WLFsoNpFxb8XjodhwirK7gbb-uKDWy9XgNNmddBWiazXLs1ozcZBPYpJMGHv4JveHpgYS30gz_cgu1W6yg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Es14WLFsoNpFxb8XjodhwirK7gbb-uKDWy9XgNNmddBWiazXLs1ozcZBPYpJMGHv4JveHpgYS30gz_cgu1W6yg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Es14WLFsoNpFxb8XjodhwirK7gbb-uKDWy9XgNNmddBWiazXLs1ozcZBPYpJMGHv4JveHpgYS30gz_cgu1W6yg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EtY9XRMTKzcCZQvlH8Yq6bbCrZKqQ6rOzgDOx5yFGmlnsPDs1gOFOkecZG1N3ZKrWOxopCiLdtiskZNhAc_2qg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EtY9XRMTKzcCZQvlH8Yq6bbCrZKqQ6rOzgDOx5yFGmlnsPDs1gOFOkecZG1N3ZKrWOxopCiLdtiskZNhAc_2qg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~EtY9XRMTKzcCZQvlH8Yq6bbCrZKqQ6rOzgDOx5yFGmlnsPDs1gOFOkecZG1N3ZKrWOxopCiLdtiskZNhAc_2qg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~F-pW5kLCaTOcXF2HDtRr68Kb6KYY3ayNuPNmV22jVeEBPlST1x-BMwXM8h8SnjmT7EsI4zw61Nz74tgPhsypzQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~F-pW5kLCaTOcXF2HDtRr68Kb6KYY3ayNuPNmV22jVeEBPlST1x-BMwXM8h8SnjmT7EsI4zw61Nz74tgPhsypzQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~F-pW5kLCaTOcXF2HDtRr68Kb6KYY3ayNuPNmV22jVeEBPlST1x-BMwXM8h8SnjmT7EsI4zw61Nz74tgPhsypzQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~F21gWx-qPhoSfFMK8ZfqAQobZatRfP0a3-h5pDP0TbmrWDVzJ8yWcRgjizNPxKBNMg-Toh94bvzC_JRIR2D7vQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~F21gWx-qPhoSfFMK8ZfqAQobZatRfP0a3-h5pDP0TbmrWDVzJ8yWcRgjizNPxKBNMg-Toh94bvzC_JRIR2D7vQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~F21gWx-qPhoSfFMK8ZfqAQobZatRfP0a3-h5pDP0TbmrWDVzJ8yWcRgjizNPxKBNMg-Toh94bvzC_JRIR2D7vQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FA2dvyzo5eX_O22l84q1UBoSBNCxHBDaePYwGpHsaPZUR56jSmzZTKfVZ9eeXFm9FzPUsN4CPZJLS2upgtRshw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FA2dvyzo5eX_O22l84q1UBoSBNCxHBDaePYwGpHsaPZUR56jSmzZTKfVZ9eeXFm9FzPUsN4CPZJLS2upgtRshw== new file mode 100644 index 0000000..52848f6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FA2dvyzo5eX_O22l84q1UBoSBNCxHBDaePYwGpHsaPZUR56jSmzZTKfVZ9eeXFm9FzPUsN4CPZJLS2upgtRshw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FC40coUJSK6j851Dvpa_S9gYL3lOdS_BV-AxHup_qe_HUaq4TJeicaj9fqiinwAwiIP1S4azeObhhccsDp7ACQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FC40coUJSK6j851Dvpa_S9gYL3lOdS_BV-AxHup_qe_HUaq4TJeicaj9fqiinwAwiIP1S4azeObhhccsDp7ACQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FC40coUJSK6j851Dvpa_S9gYL3lOdS_BV-AxHup_qe_HUaq4TJeicaj9fqiinwAwiIP1S4azeObhhccsDp7ACQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FLInpEnmGotjWBoLlMRAIDekWVe-NR90f3zZWalc7ykZaghP_4hDNNqe9q6Mskc0QpsSvMaNfiYZb4zVUpl7nA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FLInpEnmGotjWBoLlMRAIDekWVe-NR90f3zZWalc7ykZaghP_4hDNNqe9q6Mskc0QpsSvMaNfiYZb4zVUpl7nA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FLInpEnmGotjWBoLlMRAIDekWVe-NR90f3zZWalc7ykZaghP_4hDNNqe9q6Mskc0QpsSvMaNfiYZb4zVUpl7nA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FP46HfwcNAPXCMC3i4fGP_W1JDHolJn_hCCo8QHpB3SxuHkw58pMu6DT7PU0OJhEmJBXPSbScz4oxND2jSuopA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FP46HfwcNAPXCMC3i4fGP_W1JDHolJn_hCCo8QHpB3SxuHkw58pMu6DT7PU0OJhEmJBXPSbScz4oxND2jSuopA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FP46HfwcNAPXCMC3i4fGP_W1JDHolJn_hCCo8QHpB3SxuHkw58pMu6DT7PU0OJhEmJBXPSbScz4oxND2jSuopA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FPhBqPc3B_6fVEbN0wZJ54K1gQ0wj0xlJJrWrP741siiveIy3ZetgkUsmpWUYUw8sbPvOzaIq5BjhY86qwFjxQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FPhBqPc3B_6fVEbN0wZJ54K1gQ0wj0xlJJrWrP741siiveIy3ZetgkUsmpWUYUw8sbPvOzaIq5BjhY86qwFjxQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FPhBqPc3B_6fVEbN0wZJ54K1gQ0wj0xlJJrWrP741siiveIy3ZetgkUsmpWUYUw8sbPvOzaIq5BjhY86qwFjxQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FSpCm3MMOPa0JcNHkQe3V4f3CusCrOG6VzQhpsX9BmifcioajhWZHjWSlIxwzi38LAnCvWF2XpiIYmyQGS88tw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FSpCm3MMOPa0JcNHkQe3V4f3CusCrOG6VzQhpsX9BmifcioajhWZHjWSlIxwzi38LAnCvWF2XpiIYmyQGS88tw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FSpCm3MMOPa0JcNHkQe3V4f3CusCrOG6VzQhpsX9BmifcioajhWZHjWSlIxwzi38LAnCvWF2XpiIYmyQGS88tw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FVNuNTGtVI1LvRwNt8ZsVhcyyjXOCj6Ea7KGxU_IIueQMbZa57A2KfUnaR2v1HBoAy2uYiAjIWqcITtJikV4LA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FVNuNTGtVI1LvRwNt8ZsVhcyyjXOCj6Ea7KGxU_IIueQMbZa57A2KfUnaR2v1HBoAy2uYiAjIWqcITtJikV4LA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FVNuNTGtVI1LvRwNt8ZsVhcyyjXOCj6Ea7KGxU_IIueQMbZa57A2KfUnaR2v1HBoAy2uYiAjIWqcITtJikV4LA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Fimf-zDewaH9TlKx9jChwrg2DeOqnls3dIAtd3bnkuFL6RAHZf2DQ_7-fm01DE0BSusVowRAOmYpoSwX4ZzXhQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Fimf-zDewaH9TlKx9jChwrg2DeOqnls3dIAtd3bnkuFL6RAHZf2DQ_7-fm01DE0BSusVowRAOmYpoSwX4ZzXhQ== new file mode 100644 index 0000000..3b0fd71 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Fimf-zDewaH9TlKx9jChwrg2DeOqnls3dIAtd3bnkuFL6RAHZf2DQ_7-fm01DE0BSusVowRAOmYpoSwX4ZzXhQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Fit-GPZkn8v8jCP4eKQrq3_L5Dmdfyfvwd9MX-QkUHRmugjcz2YzcX4EhdwiptCbYbUPymADg9lTS9GArNAb6w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Fit-GPZkn8v8jCP4eKQrq3_L5Dmdfyfvwd9MX-QkUHRmugjcz2YzcX4EhdwiptCbYbUPymADg9lTS9GArNAb6w== new file mode 100644 index 0000000..791c1f2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Fit-GPZkn8v8jCP4eKQrq3_L5Dmdfyfvwd9MX-QkUHRmugjcz2YzcX4EhdwiptCbYbUPymADg9lTS9GArNAb6w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Fm68gNkd8-X7_DaPFJ_vtY7IxYAoTcVWR4Hj8CoBgLuLdsIqAziQCXolTSNu4gsvMEYD_eQu2sh5eaExbTHPcw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Fm68gNkd8-X7_DaPFJ_vtY7IxYAoTcVWR4Hj8CoBgLuLdsIqAziQCXolTSNu4gsvMEYD_eQu2sh5eaExbTHPcw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Fm68gNkd8-X7_DaPFJ_vtY7IxYAoTcVWR4Hj8CoBgLuLdsIqAziQCXolTSNu4gsvMEYD_eQu2sh5eaExbTHPcw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Fw0qp4QbShsoQzplmQeNuxsBxF1vOIFvlPxrAAmcO8gBcAOe4hSQ6hjEysDbQEif4tScq3dGHlhgHLgP2TPaTg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Fw0qp4QbShsoQzplmQeNuxsBxF1vOIFvlPxrAAmcO8gBcAOe4hSQ6hjEysDbQEif4tScq3dGHlhgHLgP2TPaTg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Fw0qp4QbShsoQzplmQeNuxsBxF1vOIFvlPxrAAmcO8gBcAOe4hSQ6hjEysDbQEif4tScq3dGHlhgHLgP2TPaTg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FywSASYzczKBNqGlmIY7j6sVpjowo2zaQddB_DO3V7RlbU-nFgpLYlV4CrAd4J36J9vbC37HULRevbRNU0Vqrg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FywSASYzczKBNqGlmIY7j6sVpjowo2zaQddB_DO3V7RlbU-nFgpLYlV4CrAd4J36J9vbC37HULRevbRNU0Vqrg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~FywSASYzczKBNqGlmIY7j6sVpjowo2zaQddB_DO3V7RlbU-nFgpLYlV4CrAd4J36J9vbC37HULRevbRNU0Vqrg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~G6vqsiKgjnPYV6LGwI_m9qCECYYkcVp0oZj2uvDpOWArmHQM34qkclAiR_KLGEyXDkHbaVfqaJ1if0SVonUr-Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~G6vqsiKgjnPYV6LGwI_m9qCECYYkcVp0oZj2uvDpOWArmHQM34qkclAiR_KLGEyXDkHbaVfqaJ1if0SVonUr-Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~G6vqsiKgjnPYV6LGwI_m9qCECYYkcVp0oZj2uvDpOWArmHQM34qkclAiR_KLGEyXDkHbaVfqaJ1if0SVonUr-Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~GO5L81Os-DmlNRQQW-BFyiDtOvWpqNY2ByR9hZqTARhYxmLqASpuh246QIl046ls6AEvJR_MezkZcOVwxzE3hw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~GO5L81Os-DmlNRQQW-BFyiDtOvWpqNY2ByR9hZqTARhYxmLqASpuh246QIl046ls6AEvJR_MezkZcOVwxzE3hw== new file mode 100644 index 0000000..7418a67 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~GO5L81Os-DmlNRQQW-BFyiDtOvWpqNY2ByR9hZqTARhYxmLqASpuh246QIl046ls6AEvJR_MezkZcOVwxzE3hw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~GOXNoXcQpUk1pISJRyRFnhaCQ8ld_hrEA-ke9LehgmF3xZ8wXkEXNe_69yXqN9jqFuwFS3HSzvfzdLFvWoaW_Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~GOXNoXcQpUk1pISJRyRFnhaCQ8ld_hrEA-ke9LehgmF3xZ8wXkEXNe_69yXqN9jqFuwFS3HSzvfzdLFvWoaW_Q== new file mode 100644 index 0000000..24c5518 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~GOXNoXcQpUk1pISJRyRFnhaCQ8ld_hrEA-ke9LehgmF3xZ8wXkEXNe_69yXqN9jqFuwFS3HSzvfzdLFvWoaW_Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Gh4kggtrxtP94SBeZvnAvrtUuWMQPs6L2Lh7iX8px09X1ODDOxEFdWeKgqthkdpLhcWkq1FZajXQyySZmc9PDA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Gh4kggtrxtP94SBeZvnAvrtUuWMQPs6L2Lh7iX8px09X1ODDOxEFdWeKgqthkdpLhcWkq1FZajXQyySZmc9PDA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Gh4kggtrxtP94SBeZvnAvrtUuWMQPs6L2Lh7iX8px09X1ODDOxEFdWeKgqthkdpLhcWkq1FZajXQyySZmc9PDA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~GhlrQiK-l7gnmv5gQEYIoF-OdB1cMyxe19JUI8gtPiB6uqkAghWdARbVtlwbuuAA8794zzGR3J0Bc4P4ZBaCpw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~GhlrQiK-l7gnmv5gQEYIoF-OdB1cMyxe19JUI8gtPiB6uqkAghWdARbVtlwbuuAA8794zzGR3J0Bc4P4ZBaCpw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~GhlrQiK-l7gnmv5gQEYIoF-OdB1cMyxe19JUI8gtPiB6uqkAghWdARbVtlwbuuAA8794zzGR3J0Bc4P4ZBaCpw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Gmp_03WyX7EIlyadD5GwvB4vCS1YumNZLDTffrxIkbkDhOvl6jZst65EB_VFzqRcy-ixx0-NbgdQk-Pf3xeMgg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Gmp_03WyX7EIlyadD5GwvB4vCS1YumNZLDTffrxIkbkDhOvl6jZst65EB_VFzqRcy-ixx0-NbgdQk-Pf3xeMgg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Gmp_03WyX7EIlyadD5GwvB4vCS1YumNZLDTffrxIkbkDhOvl6jZst65EB_VFzqRcy-ixx0-NbgdQk-Pf3xeMgg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~H-WX3u1mNAZ3Y364nHPmiqAzgi4vELS2yJgm_4p32ybu_zCjdKr-_aXrc4AOm9FXG0dnsutAwhsGYAmsCygMYw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~H-WX3u1mNAZ3Y364nHPmiqAzgi4vELS2yJgm_4p32ybu_zCjdKr-_aXrc4AOm9FXG0dnsutAwhsGYAmsCygMYw== new file mode 100644 index 0000000..6f536bf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~H-WX3u1mNAZ3Y364nHPmiqAzgi4vELS2yJgm_4p32ybu_zCjdKr-_aXrc4AOm9FXG0dnsutAwhsGYAmsCygMYw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~H9OfdyEqZ5JYG9QTAFV4_A7nspR2QwBdBRQhiijfExEsQoXLFVsKeoeO-RIkT3lQDYfKyHHiPlE1Oz9WOBGUcA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~H9OfdyEqZ5JYG9QTAFV4_A7nspR2QwBdBRQhiijfExEsQoXLFVsKeoeO-RIkT3lQDYfKyHHiPlE1Oz9WOBGUcA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~H9OfdyEqZ5JYG9QTAFV4_A7nspR2QwBdBRQhiijfExEsQoXLFVsKeoeO-RIkT3lQDYfKyHHiPlE1Oz9WOBGUcA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HFYdbQCf_kFEqz4kxeMVYonQIA2DkB7SWDJOQrDlptmA8Ys6ii-HBm0-p7VBmDn1PFrYEeafzUB9HZkx1jOntg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HFYdbQCf_kFEqz4kxeMVYonQIA2DkB7SWDJOQrDlptmA8Ys6ii-HBm0-p7VBmDn1PFrYEeafzUB9HZkx1jOntg== new file mode 100644 index 0000000..40f33b0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HFYdbQCf_kFEqz4kxeMVYonQIA2DkB7SWDJOQrDlptmA8Ys6ii-HBm0-p7VBmDn1PFrYEeafzUB9HZkx1jOntg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HIdsdSnCRs2vn6jZqbpmuNNfopo8Obz8suARALidN7zDzlUppmwILx-W77H7ZF0idSXWwFLNT-1NsyMck1MGjw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HIdsdSnCRs2vn6jZqbpmuNNfopo8Obz8suARALidN7zDzlUppmwILx-W77H7ZF0idSXWwFLNT-1NsyMck1MGjw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HIdsdSnCRs2vn6jZqbpmuNNfopo8Obz8suARALidN7zDzlUppmwILx-W77H7ZF0idSXWwFLNT-1NsyMck1MGjw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HN32skdp_7GpmgJH1bN8ZeH842M358fA0HQu9ZM1a7EcCJfopDysJTCzFP60BM_DmRN2s8GZDE3PMcVbSG66-Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HN32skdp_7GpmgJH1bN8ZeH842M358fA0HQu9ZM1a7EcCJfopDysJTCzFP60BM_DmRN2s8GZDE3PMcVbSG66-Q== new file mode 100644 index 0000000..253b760 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HN32skdp_7GpmgJH1bN8ZeH842M358fA0HQu9ZM1a7EcCJfopDysJTCzFP60BM_DmRN2s8GZDE3PMcVbSG66-Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HROBzYBYJSbkNzUFASmNmOUzUtEAfKHzpoJTT2hS2YnrPaRbla2vsHoTdiIms2017GgW_S0W4jqWLU0mQjb6rw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HROBzYBYJSbkNzUFASmNmOUzUtEAfKHzpoJTT2hS2YnrPaRbla2vsHoTdiIms2017GgW_S0W4jqWLU0mQjb6rw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HROBzYBYJSbkNzUFASmNmOUzUtEAfKHzpoJTT2hS2YnrPaRbla2vsHoTdiIms2017GgW_S0W4jqWLU0mQjb6rw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HS305DccBlWF1AWiVpMu_lfMtk43nMp4OGy3FexLSoCKk-79t3NIfehB3Gnwr5yDv6fEaBU5gJpSoL_J3zEP0Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HS305DccBlWF1AWiVpMu_lfMtk43nMp4OGy3FexLSoCKk-79t3NIfehB3Gnwr5yDv6fEaBU5gJpSoL_J3zEP0Q== new file mode 100644 index 0000000..fbfe78d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HS305DccBlWF1AWiVpMu_lfMtk43nMp4OGy3FexLSoCKk-79t3NIfehB3Gnwr5yDv6fEaBU5gJpSoL_J3zEP0Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HTMg2jUs1Kh3nmjL_Z2bPRKB1k-iKGdME-GBryn0CVep5OReYVt5wiCMnOsJ_iSIb2EIybGqc_8IdfD0BCKeEw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HTMg2jUs1Kh3nmjL_Z2bPRKB1k-iKGdME-GBryn0CVep5OReYVt5wiCMnOsJ_iSIb2EIybGqc_8IdfD0BCKeEw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HTMg2jUs1Kh3nmjL_Z2bPRKB1k-iKGdME-GBryn0CVep5OReYVt5wiCMnOsJ_iSIb2EIybGqc_8IdfD0BCKeEw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HecNhNxCvexmBSX7DVH_kMmz_iEcSeWlu8zrr2AhaoQA1p06l_WnQDgVPNRQHjlw7MfB53I6ZGZemNBAd2QebQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HecNhNxCvexmBSX7DVH_kMmz_iEcSeWlu8zrr2AhaoQA1p06l_WnQDgVPNRQHjlw7MfB53I6ZGZemNBAd2QebQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HecNhNxCvexmBSX7DVH_kMmz_iEcSeWlu8zrr2AhaoQA1p06l_WnQDgVPNRQHjlw7MfB53I6ZGZemNBAd2QebQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Hqh8KHoSbjxV2VcAmIfRDVu01RQ4NluEyPbOBRH4NXCVPMSiGdhzX5q3iKa7fmsjRWxj4PzltfsxZt2Gpb3Fmg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Hqh8KHoSbjxV2VcAmIfRDVu01RQ4NluEyPbOBRH4NXCVPMSiGdhzX5q3iKa7fmsjRWxj4PzltfsxZt2Gpb3Fmg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Hqh8KHoSbjxV2VcAmIfRDVu01RQ4NluEyPbOBRH4NXCVPMSiGdhzX5q3iKa7fmsjRWxj4PzltfsxZt2Gpb3Fmg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HuJ7AYG5LwLEXoaRHuVi_uI5JpdXxpKXl3uGPVmkzsHsoqN6lzyj15PhuDclFZOVgLewgxFaKZy-xwlCZ_fuvg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HuJ7AYG5LwLEXoaRHuVi_uI5JpdXxpKXl3uGPVmkzsHsoqN6lzyj15PhuDclFZOVgLewgxFaKZy-xwlCZ_fuvg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~HuJ7AYG5LwLEXoaRHuVi_uI5JpdXxpKXl3uGPVmkzsHsoqN6lzyj15PhuDclFZOVgLewgxFaKZy-xwlCZ_fuvg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~I58CB_L39T8ktUV_goUYpc9_-vXd2xAAsIXM8CLdLNRnMFNXec35TH_YMlGtG0O0M2tq6mllxJacofYVvwciMQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~I58CB_L39T8ktUV_goUYpc9_-vXd2xAAsIXM8CLdLNRnMFNXec35TH_YMlGtG0O0M2tq6mllxJacofYVvwciMQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~I58CB_L39T8ktUV_goUYpc9_-vXd2xAAsIXM8CLdLNRnMFNXec35TH_YMlGtG0O0M2tq6mllxJacofYVvwciMQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~I6vWMB5L8j1RWL2AS5o33SRcHqjDv0fBQThvOkBla5nNo6ibQUzCsIuZpJOALIEoyZPwBjJXsYJfhUCzsVA4nw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~I6vWMB5L8j1RWL2AS5o33SRcHqjDv0fBQThvOkBla5nNo6ibQUzCsIuZpJOALIEoyZPwBjJXsYJfhUCzsVA4nw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~I6vWMB5L8j1RWL2AS5o33SRcHqjDv0fBQThvOkBla5nNo6ibQUzCsIuZpJOALIEoyZPwBjJXsYJfhUCzsVA4nw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~I7neW9mQ0wGGzapf6kqG9XH1KMF-ubymb1JwSsu4fHJHzKbzSR4eVlzWgRX5dINkuIK91hSWZzDjCd5NE3jxEQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~I7neW9mQ0wGGzapf6kqG9XH1KMF-ubymb1JwSsu4fHJHzKbzSR4eVlzWgRX5dINkuIK91hSWZzDjCd5NE3jxEQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~I7neW9mQ0wGGzapf6kqG9XH1KMF-ubymb1JwSsu4fHJHzKbzSR4eVlzWgRX5dINkuIK91hSWZzDjCd5NE3jxEQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IAMaaglYdY1U-6F1MZ2P37Yv1wmiQxQDavNIo41ydADADFYsq7EXF_qD1b_j6ard0jHGQuD_Zn2bCeKjwe42ow== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IAMaaglYdY1U-6F1MZ2P37Yv1wmiQxQDavNIo41ydADADFYsq7EXF_qD1b_j6ard0jHGQuD_Zn2bCeKjwe42ow== new file mode 100644 index 0000000..bbf2f9f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IAMaaglYdY1U-6F1MZ2P37Yv1wmiQxQDavNIo41ydADADFYsq7EXF_qD1b_j6ard0jHGQuD_Zn2bCeKjwe42ow== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IAqKzWBIYnfUjAkCg8qFLmwz300df3oli4bnVryhW4as02ygK6AE7uScFVsBfED4jPNao6rK8E9kQywiHRvuSg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IAqKzWBIYnfUjAkCg8qFLmwz300df3oli4bnVryhW4as02ygK6AE7uScFVsBfED4jPNao6rK8E9kQywiHRvuSg== new file mode 100644 index 0000000..e13b5ff Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IAqKzWBIYnfUjAkCg8qFLmwz300df3oli4bnVryhW4as02ygK6AE7uScFVsBfED4jPNao6rK8E9kQywiHRvuSg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IW2E6LnW2H8Vk8viRs6jal8lbEIYy32v7ohwFpluCEy8vFYY89-k_yZJlkjxc52oeNPdoBctggp1MPvThQfgEA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IW2E6LnW2H8Vk8viRs6jal8lbEIYy32v7ohwFpluCEy8vFYY89-k_yZJlkjxc52oeNPdoBctggp1MPvThQfgEA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IW2E6LnW2H8Vk8viRs6jal8lbEIYy32v7ohwFpluCEy8vFYY89-k_yZJlkjxc52oeNPdoBctggp1MPvThQfgEA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IWh2QmM67WM2SQoTEqRaT1slv3MEGo_E50rMhysEDnq-CVP-RTSRsWuHJeJc7GQskOJDYzh5mTd7PH1AKWzkaw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IWh2QmM67WM2SQoTEqRaT1slv3MEGo_E50rMhysEDnq-CVP-RTSRsWuHJeJc7GQskOJDYzh5mTd7PH1AKWzkaw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IWh2QmM67WM2SQoTEqRaT1slv3MEGo_E50rMhysEDnq-CVP-RTSRsWuHJeJc7GQskOJDYzh5mTd7PH1AKWzkaw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IXr4heXP7Fd_NCz_akazSBLFtpWne75BM08M6MC3C9aVRaB57pYsqyDSyh2inL95sZoqA34AXjFDbzrenf-oXA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IXr4heXP7Fd_NCz_akazSBLFtpWne75BM08M6MC3C9aVRaB57pYsqyDSyh2inL95sZoqA34AXjFDbzrenf-oXA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IXr4heXP7Fd_NCz_akazSBLFtpWne75BM08M6MC3C9aVRaB57pYsqyDSyh2inL95sZoqA34AXjFDbzrenf-oXA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Igp4k22KEA7ldF5QXIT44rp3660Ao3BU-OVOQBPJtspyp14JHKNSelQpa1XSk1gvnUO-ki4Fyk2dZ179I0IjLg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Igp4k22KEA7ldF5QXIT44rp3660Ao3BU-OVOQBPJtspyp14JHKNSelQpa1XSk1gvnUO-ki4Fyk2dZ179I0IjLg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Igp4k22KEA7ldF5QXIT44rp3660Ao3BU-OVOQBPJtspyp14JHKNSelQpa1XSk1gvnUO-ki4Fyk2dZ179I0IjLg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Io5UQJUgjhY5y_9Y3moB3zk7jG5rw2LybH--qeCVrZ1XtayGE1SRqXkBTM8Ks79jPzyQCRwy1fj7SNLxzCO1Kg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Io5UQJUgjhY5y_9Y3moB3zk7jG5rw2LybH--qeCVrZ1XtayGE1SRqXkBTM8Ks79jPzyQCRwy1fj7SNLxzCO1Kg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Io5UQJUgjhY5y_9Y3moB3zk7jG5rw2LybH--qeCVrZ1XtayGE1SRqXkBTM8Ks79jPzyQCRwy1fj7SNLxzCO1Kg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IpzsS0a4tXQPM_dGr8APz2zKFohkPYkXlyAQ1TBTvDTea_8jiS1uwsMyNOc6ChHTENu9GbH5lph2I6MEU0AmjA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IpzsS0a4tXQPM_dGr8APz2zKFohkPYkXlyAQ1TBTvDTea_8jiS1uwsMyNOc6ChHTENu9GbH5lph2I6MEU0AmjA== new file mode 100644 index 0000000..5842b34 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~IpzsS0a4tXQPM_dGr8APz2zKFohkPYkXlyAQ1TBTvDTea_8jiS1uwsMyNOc6ChHTENu9GbH5lph2I6MEU0AmjA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Iw7aMgu3cxgEZ_AONcYYN4SN9_5ijGkrMrz_M9193-Y7yENMQg7dpEuDzNpd9xuKoHCdoO0cUgEg39cawctHmA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Iw7aMgu3cxgEZ_AONcYYN4SN9_5ijGkrMrz_M9193-Y7yENMQg7dpEuDzNpd9xuKoHCdoO0cUgEg39cawctHmA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Iw7aMgu3cxgEZ_AONcYYN4SN9_5ijGkrMrz_M9193-Y7yENMQg7dpEuDzNpd9xuKoHCdoO0cUgEg39cawctHmA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Iz-aMKE0qjh2-Ij1d7S0YPQAxk87mU1ryhRAuO-j-Bs4IQ6T4hwAxfhDXsA4UxNa1jNv9e470y8KnzPnHTK2lA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Iz-aMKE0qjh2-Ij1d7S0YPQAxk87mU1ryhRAuO-j-Bs4IQ6T4hwAxfhDXsA4UxNa1jNv9e470y8KnzPnHTK2lA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Iz-aMKE0qjh2-Ij1d7S0YPQAxk87mU1ryhRAuO-j-Bs4IQ6T4hwAxfhDXsA4UxNa1jNv9e470y8KnzPnHTK2lA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J1IHLGyqQeTWHfoePqZT3X13MyocgfPKtJC8A6ckNRhIx0cVF5Z0qu4bEyGzh2FDDBuEOqztsWeefmNaGar_5Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J1IHLGyqQeTWHfoePqZT3X13MyocgfPKtJC8A6ckNRhIx0cVF5Z0qu4bEyGzh2FDDBuEOqztsWeefmNaGar_5Q== new file mode 100644 index 0000000..7447ff3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J1IHLGyqQeTWHfoePqZT3X13MyocgfPKtJC8A6ckNRhIx0cVF5Z0qu4bEyGzh2FDDBuEOqztsWeefmNaGar_5Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J2nMKQxHluHRXtPM0vG4q5k7trTyVUf_gLu9gsuLoOirjKQp1E04nIvWMjo9ZpC4Vgo8wmE-05eOhD-XGhYNxA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J2nMKQxHluHRXtPM0vG4q5k7trTyVUf_gLu9gsuLoOirjKQp1E04nIvWMjo9ZpC4Vgo8wmE-05eOhD-XGhYNxA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J2nMKQxHluHRXtPM0vG4q5k7trTyVUf_gLu9gsuLoOirjKQp1E04nIvWMjo9ZpC4Vgo8wmE-05eOhD-XGhYNxA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J53CYiSHvTwXmwfR454nCEeFZFvRPQxyiSi_oTy9XHmsPnbKg63r42p0lUVKfTFVGcq8-9W6rHQLdoYcySNxPQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J53CYiSHvTwXmwfR454nCEeFZFvRPQxyiSi_oTy9XHmsPnbKg63r42p0lUVKfTFVGcq8-9W6rHQLdoYcySNxPQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J53CYiSHvTwXmwfR454nCEeFZFvRPQxyiSi_oTy9XHmsPnbKg63r42p0lUVKfTFVGcq8-9W6rHQLdoYcySNxPQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J5ppHd2Q9A6LjlUeuuwqkdJh1KXsrAFeDRGXst06J7sY554MmgcjYI06urf4PDu2NejpYh9mn4RlHinDxNznPA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J5ppHd2Q9A6LjlUeuuwqkdJh1KXsrAFeDRGXst06J7sY554MmgcjYI06urf4PDu2NejpYh9mn4RlHinDxNznPA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J5ppHd2Q9A6LjlUeuuwqkdJh1KXsrAFeDRGXst06J7sY554MmgcjYI06urf4PDu2NejpYh9mn4RlHinDxNznPA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J6gd3_HhQSFHTeDqY486qo-ZVbnWN9rYrKQmbMg6Vf6MqUjo6Ke_dCv0NEpavyQg8ctNHl9qvc2Ag6BxCQu-ZQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J6gd3_HhQSFHTeDqY486qo-ZVbnWN9rYrKQmbMg6Vf6MqUjo6Ke_dCv0NEpavyQg8ctNHl9qvc2Ag6BxCQu-ZQ== new file mode 100644 index 0000000..eafaa0a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~J6gd3_HhQSFHTeDqY486qo-ZVbnWN9rYrKQmbMg6Vf6MqUjo6Ke_dCv0NEpavyQg8ctNHl9qvc2Ag6BxCQu-ZQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JTAxG7voBpH0isf5-L3KA-6Z_1wEqEhg3mjSa7d_i61FGmAN-4g11JnVjza1NIvqtGMRtXRh16rjfC18KFt5jg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JTAxG7voBpH0isf5-L3KA-6Z_1wEqEhg3mjSa7d_i61FGmAN-4g11JnVjza1NIvqtGMRtXRh16rjfC18KFt5jg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JTAxG7voBpH0isf5-L3KA-6Z_1wEqEhg3mjSa7d_i61FGmAN-4g11JnVjza1NIvqtGMRtXRh16rjfC18KFt5jg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JedvTnsn-sKlJ9xcX9-5MEou1bm_gtAIygV35OsUegxTpjT3uRu_7yF1pMAaZ4qx257nc2ga1jEjFeZPXyC_lg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JedvTnsn-sKlJ9xcX9-5MEou1bm_gtAIygV35OsUegxTpjT3uRu_7yF1pMAaZ4qx257nc2ga1jEjFeZPXyC_lg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JedvTnsn-sKlJ9xcX9-5MEou1bm_gtAIygV35OsUegxTpjT3uRu_7yF1pMAaZ4qx257nc2ga1jEjFeZPXyC_lg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JjJOz1Dnhottkn__mPA_wUgr4_Tkxq0ErJKDFR2EbHDJJjLAQEwETL5Pooga8K8MAf4bPShasAyBUmv8oOxnCg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JjJOz1Dnhottkn__mPA_wUgr4_Tkxq0ErJKDFR2EbHDJJjLAQEwETL5Pooga8K8MAf4bPShasAyBUmv8oOxnCg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JjJOz1Dnhottkn__mPA_wUgr4_Tkxq0ErJKDFR2EbHDJJjLAQEwETL5Pooga8K8MAf4bPShasAyBUmv8oOxnCg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JlUV0AZQINwclhLwyiApPsyTsvwN58bIrZ_0CXu_pWmAS2Gnai22C5wG0AK6-i8wjf7WTrl2-6yGMjoG1RRocg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JlUV0AZQINwclhLwyiApPsyTsvwN58bIrZ_0CXu_pWmAS2Gnai22C5wG0AK6-i8wjf7WTrl2-6yGMjoG1RRocg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JlUV0AZQINwclhLwyiApPsyTsvwN58bIrZ_0CXu_pWmAS2Gnai22C5wG0AK6-i8wjf7WTrl2-6yGMjoG1RRocg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JmXete5vQPE9xP24SOOKRTyYlrEE7IN3ag4bctvFv9WNeABpyXvu8Sk081neK5jD5BORNi_R58j43wQa-6q5FQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JmXete5vQPE9xP24SOOKRTyYlrEE7IN3ag4bctvFv9WNeABpyXvu8Sk081neK5jD5BORNi_R58j43wQa-6q5FQ== new file mode 100644 index 0000000..c074d76 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JmXete5vQPE9xP24SOOKRTyYlrEE7IN3ag4bctvFv9WNeABpyXvu8Sk081neK5jD5BORNi_R58j43wQa-6q5FQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Jr1arxBUA5pmPe0R78s0uJcUkg1PlKGWusJJWyIZbx5JMevnGonRYg5zbBuxBak2y3iRm3U02bc_PQz5fC29gg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Jr1arxBUA5pmPe0R78s0uJcUkg1PlKGWusJJWyIZbx5JMevnGonRYg5zbBuxBak2y3iRm3U02bc_PQz5fC29gg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Jr1arxBUA5pmPe0R78s0uJcUkg1PlKGWusJJWyIZbx5JMevnGonRYg5zbBuxBak2y3iRm3U02bc_PQz5fC29gg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JudVVK2Mbw-p2pzAdtFQ9oIQgwFruI4hJCXV6EIZByjnYvuIcvorj6bhxiY6mmlVnfdhWRmUSPvH70pHrYScVQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JudVVK2Mbw-p2pzAdtFQ9oIQgwFruI4hJCXV6EIZByjnYvuIcvorj6bhxiY6mmlVnfdhWRmUSPvH70pHrYScVQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~JudVVK2Mbw-p2pzAdtFQ9oIQgwFruI4hJCXV6EIZByjnYvuIcvorj6bhxiY6mmlVnfdhWRmUSPvH70pHrYScVQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~K5Xc509qFfCr-Kbrn5sD4pXmrlIMR_rb6Pvi-kc1K4Op0EGlF99NmI8l--lgOWuauyxm0KaAGrIAkrpkZ-9gfQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~K5Xc509qFfCr-Kbrn5sD4pXmrlIMR_rb6Pvi-kc1K4Op0EGlF99NmI8l--lgOWuauyxm0KaAGrIAkrpkZ-9gfQ== new file mode 100644 index 0000000..55db6c6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~K5Xc509qFfCr-Kbrn5sD4pXmrlIMR_rb6Pvi-kc1K4Op0EGlF99NmI8l--lgOWuauyxm0KaAGrIAkrpkZ-9gfQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~K7FvEHll1p4-0j-3B68u7CmkXfugd5GK3mihijkYAs0YaK82bzg-p96H53eStpzY44KSCztgNX3uFGNOtNCtBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~K7FvEHll1p4-0j-3B68u7CmkXfugd5GK3mihijkYAs0YaK82bzg-p96H53eStpzY44KSCztgNX3uFGNOtNCtBA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~K7FvEHll1p4-0j-3B68u7CmkXfugd5GK3mihijkYAs0YaK82bzg-p96H53eStpzY44KSCztgNX3uFGNOtNCtBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~K9OXJtxgqGn75WpC2pSxXZ0jPOQmigucU82poiW3iVtY2SOgvj2YTJMZBi3afBYDI-DJa6noVwL3oseTFelAhw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~K9OXJtxgqGn75WpC2pSxXZ0jPOQmigucU82poiW3iVtY2SOgvj2YTJMZBi3afBYDI-DJa6noVwL3oseTFelAhw== new file mode 100644 index 0000000..5136ee7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~K9OXJtxgqGn75WpC2pSxXZ0jPOQmigucU82poiW3iVtY2SOgvj2YTJMZBi3afBYDI-DJa6noVwL3oseTFelAhw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KAXbthmvW8oc1tJrCkkmYusyN0PB42rG_eNjIWYGfYbqBPNZhs6gkIdz5OpFq4w0lEczUVMLy8aCG4cz0ysm1Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KAXbthmvW8oc1tJrCkkmYusyN0PB42rG_eNjIWYGfYbqBPNZhs6gkIdz5OpFq4w0lEczUVMLy8aCG4cz0ysm1Q== new file mode 100644 index 0000000..ef96bd4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KAXbthmvW8oc1tJrCkkmYusyN0PB42rG_eNjIWYGfYbqBPNZhs6gkIdz5OpFq4w0lEczUVMLy8aCG4cz0ysm1Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KC8Z6RZngNmMfQ-0_VAlBa7h6oeXv0cbf_V-OSMbU3N7n5jem1yQ667fvhYd6xdXp8QYhV6YfwzuvwcI1BVGfA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KC8Z6RZngNmMfQ-0_VAlBa7h6oeXv0cbf_V-OSMbU3N7n5jem1yQ667fvhYd6xdXp8QYhV6YfwzuvwcI1BVGfA== new file mode 100644 index 0000000..b1a4fa2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KC8Z6RZngNmMfQ-0_VAlBa7h6oeXv0cbf_V-OSMbU3N7n5jem1yQ667fvhYd6xdXp8QYhV6YfwzuvwcI1BVGfA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KJt8yWx0HO3tRmh44hg6CoRHOwVFDPokomRhRKS-NqrFKO6oOHt9076rLm2wFo3sBfc6OhMdRdtW7d5GzgsLsw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KJt8yWx0HO3tRmh44hg6CoRHOwVFDPokomRhRKS-NqrFKO6oOHt9076rLm2wFo3sBfc6OhMdRdtW7d5GzgsLsw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KJt8yWx0HO3tRmh44hg6CoRHOwVFDPokomRhRKS-NqrFKO6oOHt9076rLm2wFo3sBfc6OhMdRdtW7d5GzgsLsw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KQx6TTYPe1yqQ7Jf4YDRiODKd7msc5jPUCzHrWe_zivt0s8AiV5YLwUbFvdcMfIne2iRUQZxdYLD-xPSMed81g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KQx6TTYPe1yqQ7Jf4YDRiODKd7msc5jPUCzHrWe_zivt0s8AiV5YLwUbFvdcMfIne2iRUQZxdYLD-xPSMed81g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KQx6TTYPe1yqQ7Jf4YDRiODKd7msc5jPUCzHrWe_zivt0s8AiV5YLwUbFvdcMfIne2iRUQZxdYLD-xPSMed81g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KYxeFupB77rj8mVU1cx0VfnY9MTskEG5mQoiDN4-Ti4jQsWoOe2bxjblG4R5gqzthXJ0FlBL-aGd2e0WFb6pjg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KYxeFupB77rj8mVU1cx0VfnY9MTskEG5mQoiDN4-Ti4jQsWoOe2bxjblG4R5gqzthXJ0FlBL-aGd2e0WFb6pjg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KYxeFupB77rj8mVU1cx0VfnY9MTskEG5mQoiDN4-Ti4jQsWoOe2bxjblG4R5gqzthXJ0FlBL-aGd2e0WFb6pjg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KdPf2Vae2F_69_jo48rOSiQl0V_8D2ZX1vuJ0EJm3l3BdjooHh9-0uTjbE1hAL2_nDLwqh7DnXHIBWOkwldOYA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KdPf2Vae2F_69_jo48rOSiQl0V_8D2ZX1vuJ0EJm3l3BdjooHh9-0uTjbE1hAL2_nDLwqh7DnXHIBWOkwldOYA== new file mode 100644 index 0000000..20e7b09 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KdPf2Vae2F_69_jo48rOSiQl0V_8D2ZX1vuJ0EJm3l3BdjooHh9-0uTjbE1hAL2_nDLwqh7DnXHIBWOkwldOYA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Klrv2Np3w3FmUMNRa54QGKwGHUXDJweJbXKOsvoGB4fjHtndCanjIOHbwdkyiM8g_ptXl3JvUIfn2Tbw82nqww== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Klrv2Np3w3FmUMNRa54QGKwGHUXDJweJbXKOsvoGB4fjHtndCanjIOHbwdkyiM8g_ptXl3JvUIfn2Tbw82nqww== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Klrv2Np3w3FmUMNRa54QGKwGHUXDJweJbXKOsvoGB4fjHtndCanjIOHbwdkyiM8g_ptXl3JvUIfn2Tbw82nqww== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KprGUE1zp3hAlw92jgG6ozf4Hc9qMLtQxZOwiHTF-54FKCxi5znYJFfY8rsSIwIWeqeIPTaVEuSlnNfbiue8tA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KprGUE1zp3hAlw92jgG6ozf4Hc9qMLtQxZOwiHTF-54FKCxi5znYJFfY8rsSIwIWeqeIPTaVEuSlnNfbiue8tA== new file mode 100644 index 0000000..64e0fa5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KprGUE1zp3hAlw92jgG6ozf4Hc9qMLtQxZOwiHTF-54FKCxi5znYJFfY8rsSIwIWeqeIPTaVEuSlnNfbiue8tA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KrhXiEcuXC5jGKgL5cBPe1518uTfTAVqqZrfDRXFMMvaE1MfzcVWeG_M64tRs4Q3TCzNSyJNSuJWFRot-N9YxQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KrhXiEcuXC5jGKgL5cBPe1518uTfTAVqqZrfDRXFMMvaE1MfzcVWeG_M64tRs4Q3TCzNSyJNSuJWFRot-N9YxQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KrhXiEcuXC5jGKgL5cBPe1518uTfTAVqqZrfDRXFMMvaE1MfzcVWeG_M64tRs4Q3TCzNSyJNSuJWFRot-N9YxQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KxPA_pdmXc6zV14KKXj4DEbNHb_S4Q1pASGWEeoHw9HsGeXaqbrHU_u3rKSE6vWPwbyAvwFfyxOWHAl_9jdz3g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KxPA_pdmXc6zV14KKXj4DEbNHb_S4Q1pASGWEeoHw9HsGeXaqbrHU_u3rKSE6vWPwbyAvwFfyxOWHAl_9jdz3g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~KxPA_pdmXc6zV14KKXj4DEbNHb_S4Q1pASGWEeoHw9HsGeXaqbrHU_u3rKSE6vWPwbyAvwFfyxOWHAl_9jdz3g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~L9TozNVHV8EtJAUlKSfHBFxIaHHO-eYy1z9UVkO7-1MnGhGUzHFvt6NTJsY1M69cRjUgrtUejJps4q5o8iVmFA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~L9TozNVHV8EtJAUlKSfHBFxIaHHO-eYy1z9UVkO7-1MnGhGUzHFvt6NTJsY1M69cRjUgrtUejJps4q5o8iVmFA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~L9TozNVHV8EtJAUlKSfHBFxIaHHO-eYy1z9UVkO7-1MnGhGUzHFvt6NTJsY1M69cRjUgrtUejJps4q5o8iVmFA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LCXayUMAuK9M6DBFKR7AWx0ovOY8tG5FPSb4U5wip6KU0iXpu1FuhVICJef_x8Njl1D-bCWgpMBi8HMNgLukFg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LCXayUMAuK9M6DBFKR7AWx0ovOY8tG5FPSb4U5wip6KU0iXpu1FuhVICJef_x8Njl1D-bCWgpMBi8HMNgLukFg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LCXayUMAuK9M6DBFKR7AWx0ovOY8tG5FPSb4U5wip6KU0iXpu1FuhVICJef_x8Njl1D-bCWgpMBi8HMNgLukFg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LCZmxOUdDwN9DhGALgjiMUibHiG7Pih_GYLAfpYvDabNA0ameCanVdp-zgTTNGEfnQddR1oRwbISoeK2duQNnA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LCZmxOUdDwN9DhGALgjiMUibHiG7Pih_GYLAfpYvDabNA0ameCanVdp-zgTTNGEfnQddR1oRwbISoeK2duQNnA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LCZmxOUdDwN9DhGALgjiMUibHiG7Pih_GYLAfpYvDabNA0ameCanVdp-zgTTNGEfnQddR1oRwbISoeK2duQNnA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LHEjHE4C2wKRpGWRVh2id-ahnJqZ4No6Yf5w3FzgxHk1Y5sfXPUGNMMoxDC-IZKbFwYnOIM125X4xQaZml0Z1w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LHEjHE4C2wKRpGWRVh2id-ahnJqZ4No6Yf5w3FzgxHk1Y5sfXPUGNMMoxDC-IZKbFwYnOIM125X4xQaZml0Z1w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LHEjHE4C2wKRpGWRVh2id-ahnJqZ4No6Yf5w3FzgxHk1Y5sfXPUGNMMoxDC-IZKbFwYnOIM125X4xQaZml0Z1w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LJ8Qu57d6-E-x9VFK-Tp40ZrjbqB20I0Gfzv_gv8VsnU1to3rkUXIWE4vw9FyyxKrx3-w-lL7x7TbzjfxTH_Gw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LJ8Qu57d6-E-x9VFK-Tp40ZrjbqB20I0Gfzv_gv8VsnU1to3rkUXIWE4vw9FyyxKrx3-w-lL7x7TbzjfxTH_Gw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LJ8Qu57d6-E-x9VFK-Tp40ZrjbqB20I0Gfzv_gv8VsnU1to3rkUXIWE4vw9FyyxKrx3-w-lL7x7TbzjfxTH_Gw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LRMemuPo-Nonyg4NpPR0yvtGtQ2FMr6q1I5bGt2WqUGQ-fFOtyVD_8viMy4PaM4ky0C5LI48vrvKbAIP9ZuqKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LRMemuPo-Nonyg4NpPR0yvtGtQ2FMr6q1I5bGt2WqUGQ-fFOtyVD_8viMy4PaM4ky0C5LI48vrvKbAIP9ZuqKw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LRMemuPo-Nonyg4NpPR0yvtGtQ2FMr6q1I5bGt2WqUGQ-fFOtyVD_8viMy4PaM4ky0C5LI48vrvKbAIP9ZuqKw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LRyrCFzGV6CBb2Y_CqhYxqKxdF2Uh79-1knF6Ap3PawS3Zpq4gn9qTW721pyleiHK2aXMm--YajtXTfyu1Bvgw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LRyrCFzGV6CBb2Y_CqhYxqKxdF2Uh79-1knF6Ap3PawS3Zpq4gn9qTW721pyleiHK2aXMm--YajtXTfyu1Bvgw== new file mode 100644 index 0000000..96aedcf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LRyrCFzGV6CBb2Y_CqhYxqKxdF2Uh79-1knF6Ap3PawS3Zpq4gn9qTW721pyleiHK2aXMm--YajtXTfyu1Bvgw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LSnP3M3YFN53gXJHZeAz6AzKPu1HJLblEjyhf-bOqDc8cg6piHyHPk4TJSnKdQXIlNChXgTeO_SQN3Q2w7qgVA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LSnP3M3YFN53gXJHZeAz6AzKPu1HJLblEjyhf-bOqDc8cg6piHyHPk4TJSnKdQXIlNChXgTeO_SQN3Q2w7qgVA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LSnP3M3YFN53gXJHZeAz6AzKPu1HJLblEjyhf-bOqDc8cg6piHyHPk4TJSnKdQXIlNChXgTeO_SQN3Q2w7qgVA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LVQ0tpAgyOXqA-6eiLyHcQCAzMxyU10iUU3d1f_yG7Wi-fuVX9U_WEnrFgcavTEcbHXvRxxaqMCxEG1QaQCDKA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LVQ0tpAgyOXqA-6eiLyHcQCAzMxyU10iUU3d1f_yG7Wi-fuVX9U_WEnrFgcavTEcbHXvRxxaqMCxEG1QaQCDKA== new file mode 100644 index 0000000..61d5351 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LVQ0tpAgyOXqA-6eiLyHcQCAzMxyU10iUU3d1f_yG7Wi-fuVX9U_WEnrFgcavTEcbHXvRxxaqMCxEG1QaQCDKA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LZgL5FlOjV1sF1yX62U-mp7zx5D8Qi6fvfpxaWAmdb4lS6Gxpop5CoYr9lmJruGrUolkfl0BAwG_ynyZwZ8w9Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LZgL5FlOjV1sF1yX62U-mp7zx5D8Qi6fvfpxaWAmdb4lS6Gxpop5CoYr9lmJruGrUolkfl0BAwG_ynyZwZ8w9Q== new file mode 100644 index 0000000..1c3c5b1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LZgL5FlOjV1sF1yX62U-mp7zx5D8Qi6fvfpxaWAmdb4lS6Gxpop5CoYr9lmJruGrUolkfl0BAwG_ynyZwZ8w9Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~L_Lr1WaqpRkXl2WdcnjK-BhafIWV9PIJrg5QSh3RhYnERzHgS36qClu686KbN6Kvm4-7jwFFWxGn0QhdKbC-Vg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~L_Lr1WaqpRkXl2WdcnjK-BhafIWV9PIJrg5QSh3RhYnERzHgS36qClu686KbN6Kvm4-7jwFFWxGn0QhdKbC-Vg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~L_Lr1WaqpRkXl2WdcnjK-BhafIWV9PIJrg5QSh3RhYnERzHgS36qClu686KbN6Kvm4-7jwFFWxGn0QhdKbC-Vg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~La-jE8rk65-r5xk6rzmV4nSR7Q_WAzcad2SDfnF0iY-x5qKPheLLbiwXb_FQajjiyy00989RIU9KgC_vtaK-Aw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~La-jE8rk65-r5xk6rzmV4nSR7Q_WAzcad2SDfnF0iY-x5qKPheLLbiwXb_FQajjiyy00989RIU9KgC_vtaK-Aw== new file mode 100644 index 0000000..6320431 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~La-jE8rk65-r5xk6rzmV4nSR7Q_WAzcad2SDfnF0iY-x5qKPheLLbiwXb_FQajjiyy00989RIU9KgC_vtaK-Aw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Lmwi_CF6lFxK9TiRh1RF4fUdfybOlb2cCKYu2sps75ROc78ZyTV1lNCip4GA3F3Dp8MpDBDDuQ5O_e1s27CQkA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Lmwi_CF6lFxK9TiRh1RF4fUdfybOlb2cCKYu2sps75ROc78ZyTV1lNCip4GA3F3Dp8MpDBDDuQ5O_e1s27CQkA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Lmwi_CF6lFxK9TiRh1RF4fUdfybOlb2cCKYu2sps75ROc78ZyTV1lNCip4GA3F3Dp8MpDBDDuQ5O_e1s27CQkA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LuQpNjS6sOQFigP3hv0a91pfDpyoEgzWOnxTPIpJScfvEb4YONYJo1j-qhxZqc2h3UqzsgW--KlTsC-Jih5U-Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LuQpNjS6sOQFigP3hv0a91pfDpyoEgzWOnxTPIpJScfvEb4YONYJo1j-qhxZqc2h3UqzsgW--KlTsC-Jih5U-Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LuQpNjS6sOQFigP3hv0a91pfDpyoEgzWOnxTPIpJScfvEb4YONYJo1j-qhxZqc2h3UqzsgW--KlTsC-Jih5U-Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LvzSN6Nhj4HKZxNNkqB_tM5i2_VfGKFsumynH4NsuuzWoY7lw4_Cm2jvtnmQixckJ5lFkRUvc8ZcHOu32FOv6g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LvzSN6Nhj4HKZxNNkqB_tM5i2_VfGKFsumynH4NsuuzWoY7lw4_Cm2jvtnmQixckJ5lFkRUvc8ZcHOu32FOv6g== new file mode 100644 index 0000000..0a8cd0a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~LvzSN6Nhj4HKZxNNkqB_tM5i2_VfGKFsumynH4NsuuzWoY7lw4_Cm2jvtnmQixckJ5lFkRUvc8ZcHOu32FOv6g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~M3rkNwllQVOFcSG9ET3FK8EFI4k3K4aFmSNkJnaMeXiLK3oIbMbFBYvyWlQAGSk0g42voOkWWSCLl5eCel5tow== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~M3rkNwllQVOFcSG9ET3FK8EFI4k3K4aFmSNkJnaMeXiLK3oIbMbFBYvyWlQAGSk0g42voOkWWSCLl5eCel5tow== new file mode 100644 index 0000000..e3144be Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~M3rkNwllQVOFcSG9ET3FK8EFI4k3K4aFmSNkJnaMeXiLK3oIbMbFBYvyWlQAGSk0g42voOkWWSCLl5eCel5tow== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~M6N5nmPlUv-8S6TxSvBZeD2xQk6vzwwGtAJWycXuu7MPyYzVjTelR6oGf4EKTfrXsRLTsGm4dt9Q1_g45YJSqA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~M6N5nmPlUv-8S6TxSvBZeD2xQk6vzwwGtAJWycXuu7MPyYzVjTelR6oGf4EKTfrXsRLTsGm4dt9Q1_g45YJSqA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~M6N5nmPlUv-8S6TxSvBZeD2xQk6vzwwGtAJWycXuu7MPyYzVjTelR6oGf4EKTfrXsRLTsGm4dt9Q1_g45YJSqA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~M7xWB265hozzCj-47zHliBTn3DMFHiVTpxEZUdFVrRvYJIG4WqiMmYgfgtefYiJb-4TeXUJu7TA6VnYRfMyEmg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~M7xWB265hozzCj-47zHliBTn3DMFHiVTpxEZUdFVrRvYJIG4WqiMmYgfgtefYiJb-4TeXUJu7TA6VnYRfMyEmg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~M7xWB265hozzCj-47zHliBTn3DMFHiVTpxEZUdFVrRvYJIG4WqiMmYgfgtefYiJb-4TeXUJu7TA6VnYRfMyEmg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MAB3dUL7HF03bO3eNpATR1kEB_0wARFPAPKlSwORNiGAvh7bQibezxfTlGH4dUh1UugCRWhhvl-YpU3I4fo0eg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MAB3dUL7HF03bO3eNpATR1kEB_0wARFPAPKlSwORNiGAvh7bQibezxfTlGH4dUh1UugCRWhhvl-YpU3I4fo0eg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MAB3dUL7HF03bO3eNpATR1kEB_0wARFPAPKlSwORNiGAvh7bQibezxfTlGH4dUh1UugCRWhhvl-YpU3I4fo0eg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MCThuh5CiijVxMbvROwDyRg1XeeaWfDDUM_AyFyVPVW6jeVYxPlhgW1USF97eWtTzpz_z4BY-GHNbFlKca-eyg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MCThuh5CiijVxMbvROwDyRg1XeeaWfDDUM_AyFyVPVW6jeVYxPlhgW1USF97eWtTzpz_z4BY-GHNbFlKca-eyg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MCThuh5CiijVxMbvROwDyRg1XeeaWfDDUM_AyFyVPVW6jeVYxPlhgW1USF97eWtTzpz_z4BY-GHNbFlKca-eyg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MENtlG5nXepWid-mrKDfMEf6lKqsC1TczTxxH3nId2WsBDkLHKwHKAZlu12tGr12ErJJycz2tfVtB_XyFVGppQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MENtlG5nXepWid-mrKDfMEf6lKqsC1TczTxxH3nId2WsBDkLHKwHKAZlu12tGr12ErJJycz2tfVtB_XyFVGppQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MENtlG5nXepWid-mrKDfMEf6lKqsC1TczTxxH3nId2WsBDkLHKwHKAZlu12tGr12ErJJycz2tfVtB_XyFVGppQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MGauZ2wwmyTIMrlue723sNcPqnirID_wfe50levMe8yQtPZHJ1gkS2ywV49eH9XvA_r5Uf0xKGwuu5tJGoXcMQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MGauZ2wwmyTIMrlue723sNcPqnirID_wfe50levMe8yQtPZHJ1gkS2ywV49eH9XvA_r5Uf0xKGwuu5tJGoXcMQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MGauZ2wwmyTIMrlue723sNcPqnirID_wfe50levMe8yQtPZHJ1gkS2ywV49eH9XvA_r5Uf0xKGwuu5tJGoXcMQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MKmBWQogaSW_vd7dFWUvFKBvAGfYYn3mNVNfbqs5kM49ggW9uMriavo4rz4i8DS8bxCquHJLo_PDK0E2SUiXtQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MKmBWQogaSW_vd7dFWUvFKBvAGfYYn3mNVNfbqs5kM49ggW9uMriavo4rz4i8DS8bxCquHJLo_PDK0E2SUiXtQ== new file mode 100644 index 0000000..a4a38d7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MKmBWQogaSW_vd7dFWUvFKBvAGfYYn3mNVNfbqs5kM49ggW9uMriavo4rz4i8DS8bxCquHJLo_PDK0E2SUiXtQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MMyQuGRORLebhG2drWd7qRE75jpg7_L4_fuotzGFMqEarNfYlXcOD_FsWHw4izEPeGvbWfEFkbxYsicUkgjvbw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MMyQuGRORLebhG2drWd7qRE75jpg7_L4_fuotzGFMqEarNfYlXcOD_FsWHw4izEPeGvbWfEFkbxYsicUkgjvbw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MMyQuGRORLebhG2drWd7qRE75jpg7_L4_fuotzGFMqEarNfYlXcOD_FsWHw4izEPeGvbWfEFkbxYsicUkgjvbw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MNv9LOQdzaCpmu25IpkqsWniHw9XYEAszNE3fEnryKgk6D2Zvbhkjdna5_8GtickKbtVxPJQJ17hQlv62hIWIg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MNv9LOQdzaCpmu25IpkqsWniHw9XYEAszNE3fEnryKgk6D2Zvbhkjdna5_8GtickKbtVxPJQJ17hQlv62hIWIg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MNv9LOQdzaCpmu25IpkqsWniHw9XYEAszNE3fEnryKgk6D2Zvbhkjdna5_8GtickKbtVxPJQJ17hQlv62hIWIg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MOUl5CoPvcaYQPIuwHnFdn08TtKRfXrky6IijZJOUpJ6S0chLlx2rEygGEDuN_qRKgnEJqFXOeLZgFbpR3uflA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MOUl5CoPvcaYQPIuwHnFdn08TtKRfXrky6IijZJOUpJ6S0chLlx2rEygGEDuN_qRKgnEJqFXOeLZgFbpR3uflA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MOUl5CoPvcaYQPIuwHnFdn08TtKRfXrky6IijZJOUpJ6S0chLlx2rEygGEDuN_qRKgnEJqFXOeLZgFbpR3uflA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~McuxnVBQdYjZaNpra7ebn6iAOy3s7pw5elwcqsRxC1Tm-8RlWCISX3iWvU3yqcSFw9QiKRJ2OZHsF3sRH2YPNA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~McuxnVBQdYjZaNpra7ebn6iAOy3s7pw5elwcqsRxC1Tm-8RlWCISX3iWvU3yqcSFw9QiKRJ2OZHsF3sRH2YPNA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~McuxnVBQdYjZaNpra7ebn6iAOy3s7pw5elwcqsRxC1Tm-8RlWCISX3iWvU3yqcSFw9QiKRJ2OZHsF3sRH2YPNA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MhIfPtvv24hPHPfqD4r7MbWwGIt-_y3PSgJLNjkoUMmrDMEdYYsTltFgYOVgwIOzob3bLuzV7-x_8bmOMFFtwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MhIfPtvv24hPHPfqD4r7MbWwGIt-_y3PSgJLNjkoUMmrDMEdYYsTltFgYOVgwIOzob3bLuzV7-x_8bmOMFFtwg== new file mode 100644 index 0000000..f196d9d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MhIfPtvv24hPHPfqD4r7MbWwGIt-_y3PSgJLNjkoUMmrDMEdYYsTltFgYOVgwIOzob3bLuzV7-x_8bmOMFFtwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MiDGO2roJ5GW4HX7tjniKES3FXNHtJyxl-OwG7DQKJNhWin31FaIPqwR1N5HXrpCTsCI58_1C93sn8N3eYNjhw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MiDGO2roJ5GW4HX7tjniKES3FXNHtJyxl-OwG7DQKJNhWin31FaIPqwR1N5HXrpCTsCI58_1C93sn8N3eYNjhw== new file mode 100644 index 0000000..aebade5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MiDGO2roJ5GW4HX7tjniKES3FXNHtJyxl-OwG7DQKJNhWin31FaIPqwR1N5HXrpCTsCI58_1C93sn8N3eYNjhw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MpHOas5c8XfaMmneaMtpQJeOEykISDK5XOIyHI_46X75K58d4v8ExdWMFhROKmC0eZ5U9u0LptEWWJlcrcaYJw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MpHOas5c8XfaMmneaMtpQJeOEykISDK5XOIyHI_46X75K58d4v8ExdWMFhROKmC0eZ5U9u0LptEWWJlcrcaYJw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MpHOas5c8XfaMmneaMtpQJeOEykISDK5XOIyHI_46X75K58d4v8ExdWMFhROKmC0eZ5U9u0LptEWWJlcrcaYJw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MqCb_QqG_JusVTQXY2LUpbylPMOhfd089uLzqrlZLmclBqg520PAAHFHCMJ9jXTGLz1SVQsHhiUuiQ1SFMiZVw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MqCb_QqG_JusVTQXY2LUpbylPMOhfd089uLzqrlZLmclBqg520PAAHFHCMJ9jXTGLz1SVQsHhiUuiQ1SFMiZVw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~MqCb_QqG_JusVTQXY2LUpbylPMOhfd089uLzqrlZLmclBqg520PAAHFHCMJ9jXTGLz1SVQsHhiUuiQ1SFMiZVw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~My_XXSjwShXMsMVWfzBuLr8nuTxx43uW1iPgMQJkzlnuKEeUXu7f1WMSKaoAvbAd1yq-qy_7xjpISw8jdCQwyw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~My_XXSjwShXMsMVWfzBuLr8nuTxx43uW1iPgMQJkzlnuKEeUXu7f1WMSKaoAvbAd1yq-qy_7xjpISw8jdCQwyw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~My_XXSjwShXMsMVWfzBuLr8nuTxx43uW1iPgMQJkzlnuKEeUXu7f1WMSKaoAvbAd1yq-qy_7xjpISw8jdCQwyw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Myr2-A16OlNKGrH5WL7rBYnpu9qi_MV0ieuvaLr0PZtfFTNJ17DV2cWACeSgeJhhIIQfChjD_pYPUssUeCz5Ng== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Myr2-A16OlNKGrH5WL7rBYnpu9qi_MV0ieuvaLr0PZtfFTNJ17DV2cWACeSgeJhhIIQfChjD_pYPUssUeCz5Ng== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Myr2-A16OlNKGrH5WL7rBYnpu9qi_MV0ieuvaLr0PZtfFTNJ17DV2cWACeSgeJhhIIQfChjD_pYPUssUeCz5Ng== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N-Vqu55zFJ2JGjnbh8RG3QhTihQrZxu_Rchhn-2C7geZfw9SBzZjVA5IulHlP5D8VB2yFt6gLw_cATDiZjaPcA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N-Vqu55zFJ2JGjnbh8RG3QhTihQrZxu_Rchhn-2C7geZfw9SBzZjVA5IulHlP5D8VB2yFt6gLw_cATDiZjaPcA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N-Vqu55zFJ2JGjnbh8RG3QhTihQrZxu_Rchhn-2C7geZfw9SBzZjVA5IulHlP5D8VB2yFt6gLw_cATDiZjaPcA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N0Ny6WaLa2_9UE6124ssXhOdNjklmmwb_blKeSh_58-hjSMY-akD8bUqBl8DwhZ1yyMxCH2ZRJzDPZhd5nfY9g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N0Ny6WaLa2_9UE6124ssXhOdNjklmmwb_blKeSh_58-hjSMY-akD8bUqBl8DwhZ1yyMxCH2ZRJzDPZhd5nfY9g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N0Ny6WaLa2_9UE6124ssXhOdNjklmmwb_blKeSh_58-hjSMY-akD8bUqBl8DwhZ1yyMxCH2ZRJzDPZhd5nfY9g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N1wPAPAoW7iyxSYfPGTqwi9McYwiSHadInh2LA4e7ATi7pQi8CmCgn-0vWezRdp4z_1EC41T6YLfTXvlcE-uQA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N1wPAPAoW7iyxSYfPGTqwi9McYwiSHadInh2LA4e7ATi7pQi8CmCgn-0vWezRdp4z_1EC41T6YLfTXvlcE-uQA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N1wPAPAoW7iyxSYfPGTqwi9McYwiSHadInh2LA4e7ATi7pQi8CmCgn-0vWezRdp4z_1EC41T6YLfTXvlcE-uQA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N2S-JDmi6NT7wnIVnotJmYuHnB7QP1qVxg6DA6pXix64h0ER380s3hm0s4Ck_bRNuXHRai6GSBNAeVKMUAgZXQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N2S-JDmi6NT7wnIVnotJmYuHnB7QP1qVxg6DA6pXix64h0ER380s3hm0s4Ck_bRNuXHRai6GSBNAeVKMUAgZXQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N2S-JDmi6NT7wnIVnotJmYuHnB7QP1qVxg6DA6pXix64h0ER380s3hm0s4Ck_bRNuXHRai6GSBNAeVKMUAgZXQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N2ULRKokrIDtA5j3ya10eWjX3htMfcAZ8BgMbsgXbw9LI5ESbN7JX7qnxftfQwuKUJzh_vILO-GUuOIfgh5X-w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N2ULRKokrIDtA5j3ya10eWjX3htMfcAZ8BgMbsgXbw9LI5ESbN7JX7qnxftfQwuKUJzh_vILO-GUuOIfgh5X-w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N2ULRKokrIDtA5j3ya10eWjX3htMfcAZ8BgMbsgXbw9LI5ESbN7JX7qnxftfQwuKUJzh_vILO-GUuOIfgh5X-w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N3JRIrauHMqwXlE9YCVST2NIpgMDQJvGuvI5VFlv0EADMW4NdojG_C5KNuj6GBGurSwoOkmBdZ6EnFDPw5EKzg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N3JRIrauHMqwXlE9YCVST2NIpgMDQJvGuvI5VFlv0EADMW4NdojG_C5KNuj6GBGurSwoOkmBdZ6EnFDPw5EKzg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N3JRIrauHMqwXlE9YCVST2NIpgMDQJvGuvI5VFlv0EADMW4NdojG_C5KNuj6GBGurSwoOkmBdZ6EnFDPw5EKzg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N3YA3C9jFfIitiiuRoA7SR7DqipcvtiJO5VB1BBcgaLjeN4fbnARfeXPrzKb8vL3_Aqn9kgJB36mKZoJdv0yoA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N3YA3C9jFfIitiiuRoA7SR7DqipcvtiJO5VB1BBcgaLjeN4fbnARfeXPrzKb8vL3_Aqn9kgJB36mKZoJdv0yoA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N3YA3C9jFfIitiiuRoA7SR7DqipcvtiJO5VB1BBcgaLjeN4fbnARfeXPrzKb8vL3_Aqn9kgJB36mKZoJdv0yoA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N8Y9nAs0mCejygoa9K4KBcqHI1NBl2foirCoQXKomSFf0dfX_K348EWR9lbVDacDwtQwU4zdMTRuyudzT9jlPA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N8Y9nAs0mCejygoa9K4KBcqHI1NBl2foirCoQXKomSFf0dfX_K348EWR9lbVDacDwtQwU4zdMTRuyudzT9jlPA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~N8Y9nAs0mCejygoa9K4KBcqHI1NBl2foirCoQXKomSFf0dfX_K348EWR9lbVDacDwtQwU4zdMTRuyudzT9jlPA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NAHOAdGcnbWL9O1YA8NiNDjcdnKkids1g_tvQXEsyw0TYscl9Asi6f63gHlokrAZU5lNL2-udkznfYlFf5WZTA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NAHOAdGcnbWL9O1YA8NiNDjcdnKkids1g_tvQXEsyw0TYscl9Asi6f63gHlokrAZU5lNL2-udkznfYlFf5WZTA== new file mode 100644 index 0000000..5630657 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NAHOAdGcnbWL9O1YA8NiNDjcdnKkids1g_tvQXEsyw0TYscl9Asi6f63gHlokrAZU5lNL2-udkznfYlFf5WZTA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NDJBRP7ihG716R3q3D1zXxt4_h05GEQ43pB2dhRW6x5OT3CoASIND7pAK5Xt7-jC1SkBz3iudWQCjIKj0h3hAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NDJBRP7ihG716R3q3D1zXxt4_h05GEQ43pB2dhRW6x5OT3CoASIND7pAK5Xt7-jC1SkBz3iudWQCjIKj0h3hAg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NDJBRP7ihG716R3q3D1zXxt4_h05GEQ43pB2dhRW6x5OT3CoASIND7pAK5Xt7-jC1SkBz3iudWQCjIKj0h3hAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NFt23nFnxhltwUkSJKjCSVNmOuso9C6Bk-sBjQJ5lj1YJs-FNmFv-fWRaxKn_rW6IZj5tjmr_lb1CwSVcxmYHg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NFt23nFnxhltwUkSJKjCSVNmOuso9C6Bk-sBjQJ5lj1YJs-FNmFv-fWRaxKn_rW6IZj5tjmr_lb1CwSVcxmYHg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NFt23nFnxhltwUkSJKjCSVNmOuso9C6Bk-sBjQJ5lj1YJs-FNmFv-fWRaxKn_rW6IZj5tjmr_lb1CwSVcxmYHg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NHVVC_GT2frty6n5Asyi-dYB_tmJP3wjBiPLO1up_eS4atQVmd7pSYmqt2t333wW_SdrAtyqqoENiMRKYCszNA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NHVVC_GT2frty6n5Asyi-dYB_tmJP3wjBiPLO1up_eS4atQVmd7pSYmqt2t333wW_SdrAtyqqoENiMRKYCszNA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NHVVC_GT2frty6n5Asyi-dYB_tmJP3wjBiPLO1up_eS4atQVmd7pSYmqt2t333wW_SdrAtyqqoENiMRKYCszNA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NJSza9DWdcXMr6WQ0yBqiDP0JBhc8di_7m_PFaRlo_4XaSSSxrjSMYP4m-NKW86-2FTjV1G6oAR3rZ51qj7jvQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NJSza9DWdcXMr6WQ0yBqiDP0JBhc8di_7m_PFaRlo_4XaSSSxrjSMYP4m-NKW86-2FTjV1G6oAR3rZ51qj7jvQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NJSza9DWdcXMr6WQ0yBqiDP0JBhc8di_7m_PFaRlo_4XaSSSxrjSMYP4m-NKW86-2FTjV1G6oAR3rZ51qj7jvQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NNmDC_SrWdKTq0qsHxnpFUa8OjnBmW5zqzwfv69TSuNyv-DM0ChPxc4nUsr-ssqIX1QFzYmtjBs80dYReH5oBQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NNmDC_SrWdKTq0qsHxnpFUa8OjnBmW5zqzwfv69TSuNyv-DM0ChPxc4nUsr-ssqIX1QFzYmtjBs80dYReH5oBQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NNmDC_SrWdKTq0qsHxnpFUa8OjnBmW5zqzwfv69TSuNyv-DM0ChPxc4nUsr-ssqIX1QFzYmtjBs80dYReH5oBQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NPP9A-lYRFhh13rSPzqJgNciBN_O33zzD5I_nQ3_MnhzCLCkuhUrKKakeRpo-_NHepGNgdqYhxCmAsO3Dbmszw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NPP9A-lYRFhh13rSPzqJgNciBN_O33zzD5I_nQ3_MnhzCLCkuhUrKKakeRpo-_NHepGNgdqYhxCmAsO3Dbmszw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NPP9A-lYRFhh13rSPzqJgNciBN_O33zzD5I_nQ3_MnhzCLCkuhUrKKakeRpo-_NHepGNgdqYhxCmAsO3Dbmszw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NQ9_0Fd2Mgrj1hkzFm2pS2tz7gzVLvTGv3WcYq6q2kWfzRgULBSZsBrwdY158lYY2rQh7C8fvArctgqxuWTAmw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NQ9_0Fd2Mgrj1hkzFm2pS2tz7gzVLvTGv3WcYq6q2kWfzRgULBSZsBrwdY158lYY2rQh7C8fvArctgqxuWTAmw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NQ9_0Fd2Mgrj1hkzFm2pS2tz7gzVLvTGv3WcYq6q2kWfzRgULBSZsBrwdY158lYY2rQh7C8fvArctgqxuWTAmw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NQa8IoY9T1Ke_n7KNAMGB7bUxFonWw5QTvscaP-ZC_IZmVDXfUBlZZsZvg3oVAVjgUtZeqIBbGexQpk-mhB1og== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NQa8IoY9T1Ke_n7KNAMGB7bUxFonWw5QTvscaP-ZC_IZmVDXfUBlZZsZvg3oVAVjgUtZeqIBbGexQpk-mhB1og== new file mode 100644 index 0000000..14bfc09 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NQa8IoY9T1Ke_n7KNAMGB7bUxFonWw5QTvscaP-ZC_IZmVDXfUBlZZsZvg3oVAVjgUtZeqIBbGexQpk-mhB1og== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NRKFF3PlICQYjh_FEWTqY9_NR9Ajh19HJb_KdqLuHBmatEr7FtGpvE3CAl_YouzP-blp1RpQg1NKs9aN4G7ZBw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NRKFF3PlICQYjh_FEWTqY9_NR9Ajh19HJb_KdqLuHBmatEr7FtGpvE3CAl_YouzP-blp1RpQg1NKs9aN4G7ZBw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NRKFF3PlICQYjh_FEWTqY9_NR9Ajh19HJb_KdqLuHBmatEr7FtGpvE3CAl_YouzP-blp1RpQg1NKs9aN4G7ZBw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NRZrSRIFZW3zB5Wf-AGi6AXnJXRpGTLTL5R38rcu8JKgRrpSpAghupQVbx9-7gCfnsJZi-IP9-F5K_aZgGHWSw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NRZrSRIFZW3zB5Wf-AGi6AXnJXRpGTLTL5R38rcu8JKgRrpSpAghupQVbx9-7gCfnsJZi-IP9-F5K_aZgGHWSw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NRZrSRIFZW3zB5Wf-AGi6AXnJXRpGTLTL5R38rcu8JKgRrpSpAghupQVbx9-7gCfnsJZi-IP9-F5K_aZgGHWSw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NWRwXjPL5JDO6Ma65OOI8YhmX_6ObWZIwCdiZrfC1RBXj52rEKnYMQvc8UumfLdhJQQJaYe4rOg-suG6h6KfWQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NWRwXjPL5JDO6Ma65OOI8YhmX_6ObWZIwCdiZrfC1RBXj52rEKnYMQvc8UumfLdhJQQJaYe4rOg-suG6h6KfWQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NWRwXjPL5JDO6Ma65OOI8YhmX_6ObWZIwCdiZrfC1RBXj52rEKnYMQvc8UumfLdhJQQJaYe4rOg-suG6h6KfWQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NXHE2pUVU6tAzgjCwCaGzapp544AQ_-6W3hRvGigWBKsCmBy1F3HP0E727Oa2RY0vc7z1gVbxtL-DpuOUN7bhg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NXHE2pUVU6tAzgjCwCaGzapp544AQ_-6W3hRvGigWBKsCmBy1F3HP0E727Oa2RY0vc7z1gVbxtL-DpuOUN7bhg== new file mode 100644 index 0000000..ff16814 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NXHE2pUVU6tAzgjCwCaGzapp544AQ_-6W3hRvGigWBKsCmBy1F3HP0E727Oa2RY0vc7z1gVbxtL-DpuOUN7bhg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Nds5nAZ51mrEStezLt9uEeqONPYuJQ7AudRZCbqjsJVcPe8PjqncGYOk7Hm82RxRCT7do4yi0KIatJmkvmsVrw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Nds5nAZ51mrEStezLt9uEeqONPYuJQ7AudRZCbqjsJVcPe8PjqncGYOk7Hm82RxRCT7do4yi0KIatJmkvmsVrw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Nds5nAZ51mrEStezLt9uEeqONPYuJQ7AudRZCbqjsJVcPe8PjqncGYOk7Hm82RxRCT7do4yi0KIatJmkvmsVrw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NiDEc-FJ2eYTigovDHMHkMFnXeevOaQWuGLb-3Ddg6BliDp12VC21YrUJfL2EQccd70u-ENCjHF54emAdBqfsQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NiDEc-FJ2eYTigovDHMHkMFnXeevOaQWuGLb-3Ddg6BliDp12VC21YrUJfL2EQccd70u-ENCjHF54emAdBqfsQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NiDEc-FJ2eYTigovDHMHkMFnXeevOaQWuGLb-3Ddg6BliDp12VC21YrUJfL2EQccd70u-ENCjHF54emAdBqfsQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Njtf6M7MAeQhj7s3SRG3RTRuT_KPGduaxDaahoyjXs2ATBxo3hh1mTjqB8sTd9y99PYHasFyHYs9aUaKvi4noA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Njtf6M7MAeQhj7s3SRG3RTRuT_KPGduaxDaahoyjXs2ATBxo3hh1mTjqB8sTd9y99PYHasFyHYs9aUaKvi4noA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Njtf6M7MAeQhj7s3SRG3RTRuT_KPGduaxDaahoyjXs2ATBxo3hh1mTjqB8sTd9y99PYHasFyHYs9aUaKvi4noA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NrKX81S667ZlXDrl7d8YXLzuaeJFn1Sa2_jhg1fTK_oO75NEwkr6LmdbaiQHJSV4T0LKZOD-RJrIPovgB1TpvA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NrKX81S667ZlXDrl7d8YXLzuaeJFn1Sa2_jhg1fTK_oO75NEwkr6LmdbaiQHJSV4T0LKZOD-RJrIPovgB1TpvA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NrKX81S667ZlXDrl7d8YXLzuaeJFn1Sa2_jhg1fTK_oO75NEwkr6LmdbaiQHJSV4T0LKZOD-RJrIPovgB1TpvA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NrnFgcxvTV-N4sDPwMsgt1N1eNOZOOu6_cIcFAe0U9ViQfaRqvyr4olU8lHcjAEb_RL5Xe-5yjJNv_f6RYJL0A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NrnFgcxvTV-N4sDPwMsgt1N1eNOZOOu6_cIcFAe0U9ViQfaRqvyr4olU8lHcjAEb_RL5Xe-5yjJNv_f6RYJL0A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~NrnFgcxvTV-N4sDPwMsgt1N1eNOZOOu6_cIcFAe0U9ViQfaRqvyr4olU8lHcjAEb_RL5Xe-5yjJNv_f6RYJL0A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Nt7qxms8ZmsNsRjmGBUtm5XMDS5IxLPcKSzUyn0ctC-hnH1FSOZFH369IKyzYh2zhjBJqzgsFUApefATTS9eDw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Nt7qxms8ZmsNsRjmGBUtm5XMDS5IxLPcKSzUyn0ctC-hnH1FSOZFH369IKyzYh2zhjBJqzgsFUApefATTS9eDw== new file mode 100644 index 0000000..4d9a077 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Nt7qxms8ZmsNsRjmGBUtm5XMDS5IxLPcKSzUyn0ctC-hnH1FSOZFH369IKyzYh2zhjBJqzgsFUApefATTS9eDw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Nz2GAYr9P7ZhLPjpzL5b0SRZ6Judh8nasxLbZgrf_9ULC2vOWbCDek93ejRiThjk0iGB647JRSddeAQkXdm0_g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Nz2GAYr9P7ZhLPjpzL5b0SRZ6Judh8nasxLbZgrf_9ULC2vOWbCDek93ejRiThjk0iGB647JRSddeAQkXdm0_g== new file mode 100644 index 0000000..9108ece Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Nz2GAYr9P7ZhLPjpzL5b0SRZ6Judh8nasxLbZgrf_9ULC2vOWbCDek93ejRiThjk0iGB647JRSddeAQkXdm0_g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Nzh_F4Dpwu-PIqkX2_1g5Vi1kq8coTPB4QTYg7olw1bt1aUBpUyH5r0CZIN21oRxfRX4Xjou6AsQSYMoRX5Lew== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Nzh_F4Dpwu-PIqkX2_1g5Vi1kq8coTPB4QTYg7olw1bt1aUBpUyH5r0CZIN21oRxfRX4Xjou6AsQSYMoRX5Lew== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Nzh_F4Dpwu-PIqkX2_1g5Vi1kq8coTPB4QTYg7olw1bt1aUBpUyH5r0CZIN21oRxfRX4Xjou6AsQSYMoRX5Lew== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~O4ZSeO1EliIIwFtaCwj8gKxuAWlLjfx5XJXHy8S-XKXZcMJchRX7Pth9XLDH92Pbn9LCEWaCRrVeRTb_bNzHTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~O4ZSeO1EliIIwFtaCwj8gKxuAWlLjfx5XJXHy8S-XKXZcMJchRX7Pth9XLDH92Pbn9LCEWaCRrVeRTb_bNzHTw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~O4ZSeO1EliIIwFtaCwj8gKxuAWlLjfx5XJXHy8S-XKXZcMJchRX7Pth9XLDH92Pbn9LCEWaCRrVeRTb_bNzHTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OBmFZ7jW7P4cUneAFutVePU30qBhaCm-ja8lWXyBXA-meZzIIawTpS22QeCwTy1ZapDJm3kby_dYppFEteOiVg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OBmFZ7jW7P4cUneAFutVePU30qBhaCm-ja8lWXyBXA-meZzIIawTpS22QeCwTy1ZapDJm3kby_dYppFEteOiVg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OBmFZ7jW7P4cUneAFutVePU30qBhaCm-ja8lWXyBXA-meZzIIawTpS22QeCwTy1ZapDJm3kby_dYppFEteOiVg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ONHW7O2pzgrG3CryDkA9_vmMJdFT8gfp61EoxsDW4nXCITFNt_CsBrXWP_qx0Fj3N5QJ1gGF1v3jD_JbaTbeew== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ONHW7O2pzgrG3CryDkA9_vmMJdFT8gfp61EoxsDW4nXCITFNt_CsBrXWP_qx0Fj3N5QJ1gGF1v3jD_JbaTbeew== new file mode 100644 index 0000000..474dca8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ONHW7O2pzgrG3CryDkA9_vmMJdFT8gfp61EoxsDW4nXCITFNt_CsBrXWP_qx0Fj3N5QJ1gGF1v3jD_JbaTbeew== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OOtgWmRWEGZunITunqypE3U7H7Cbud_2-F8GtgGF8W0DoQD-bU6yt1OsMie7-KD_OVSmV40nYRgj0Xw7MIm5aQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OOtgWmRWEGZunITunqypE3U7H7Cbud_2-F8GtgGF8W0DoQD-bU6yt1OsMie7-KD_OVSmV40nYRgj0Xw7MIm5aQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OOtgWmRWEGZunITunqypE3U7H7Cbud_2-F8GtgGF8W0DoQD-bU6yt1OsMie7-KD_OVSmV40nYRgj0Xw7MIm5aQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OXUoFphq2yaP270aZptuNGxi2PshxPRD8gBY4l8uYEOzrvDQHAJNJNr4qdDO0D3mCm-duHnUVBM4TbOuPxs1gA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OXUoFphq2yaP270aZptuNGxi2PshxPRD8gBY4l8uYEOzrvDQHAJNJNr4qdDO0D3mCm-duHnUVBM4TbOuPxs1gA== new file mode 100644 index 0000000..d017ef8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OXUoFphq2yaP270aZptuNGxi2PshxPRD8gBY4l8uYEOzrvDQHAJNJNr4qdDO0D3mCm-duHnUVBM4TbOuPxs1gA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OZCuKigUW-vsz_2_PR2k8xU7UpV5Jdgt4ru2jeRtqcRJcz9obOj28Dhi1F0Lk-QEq2zKqwGRathuBF1lTvU27A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OZCuKigUW-vsz_2_PR2k8xU7UpV5Jdgt4ru2jeRtqcRJcz9obOj28Dhi1F0Lk-QEq2zKqwGRathuBF1lTvU27A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OZCuKigUW-vsz_2_PR2k8xU7UpV5Jdgt4ru2jeRtqcRJcz9obOj28Dhi1F0Lk-QEq2zKqwGRathuBF1lTvU27A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~O__Tj2nBiNopq2EYMl_FjDlFnrCPufQRpSjiSbfXsRjXz3VMXIVKz3Ai4z-Xv9PEKUIP9wMwLRcc0JBsgBJ2aQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~O__Tj2nBiNopq2EYMl_FjDlFnrCPufQRpSjiSbfXsRjXz3VMXIVKz3Ai4z-Xv9PEKUIP9wMwLRcc0JBsgBJ2aQ== new file mode 100644 index 0000000..a50cde6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~O__Tj2nBiNopq2EYMl_FjDlFnrCPufQRpSjiSbfXsRjXz3VMXIVKz3Ai4z-Xv9PEKUIP9wMwLRcc0JBsgBJ2aQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Oal1PPBEPU6GvVhwcyA-9HE5kvKryJ2sSqCWjaSiFsKkx-CkvOEL20SKmGNC_bi1ArsJpA7UpIgP-xqYw3fpSA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Oal1PPBEPU6GvVhwcyA-9HE5kvKryJ2sSqCWjaSiFsKkx-CkvOEL20SKmGNC_bi1ArsJpA7UpIgP-xqYw3fpSA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Oal1PPBEPU6GvVhwcyA-9HE5kvKryJ2sSqCWjaSiFsKkx-CkvOEL20SKmGNC_bi1ArsJpA7UpIgP-xqYw3fpSA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ob6Ga6OgG9EUXlmQGRSxkiKiX-m_Wp19ArlyZQyy-6RvjsoTujzhBntzqjMf8Wp_1GkEtmL0RCb5Car-CtS49A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ob6Ga6OgG9EUXlmQGRSxkiKiX-m_Wp19ArlyZQyy-6RvjsoTujzhBntzqjMf8Wp_1GkEtmL0RCb5Car-CtS49A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ob6Ga6OgG9EUXlmQGRSxkiKiX-m_Wp19ArlyZQyy-6RvjsoTujzhBntzqjMf8Wp_1GkEtmL0RCb5Car-CtS49A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Oc-bjJr2m8EbNxqEvDeMRz5I90bMYrIpHdDT0ayEkCFVF1wfIi6leXBxw0_nQxnYIbSXStkSclv6_vkgrRuOBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Oc-bjJr2m8EbNxqEvDeMRz5I90bMYrIpHdDT0ayEkCFVF1wfIi6leXBxw0_nQxnYIbSXStkSclv6_vkgrRuOBA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Oc-bjJr2m8EbNxqEvDeMRz5I90bMYrIpHdDT0ayEkCFVF1wfIi6leXBxw0_nQxnYIbSXStkSclv6_vkgrRuOBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Odyry7yDeMozC47DOqF3XLDEWAVJt-8lCIvn9ItZt6uzHEtwiylb2OHcYBjoxcZoyYf10rLpJmGt7zeTt7dYaw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Odyry7yDeMozC47DOqF3XLDEWAVJt-8lCIvn9ItZt6uzHEtwiylb2OHcYBjoxcZoyYf10rLpJmGt7zeTt7dYaw== new file mode 100644 index 0000000..23bd61d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Odyry7yDeMozC47DOqF3XLDEWAVJt-8lCIvn9ItZt6uzHEtwiylb2OHcYBjoxcZoyYf10rLpJmGt7zeTt7dYaw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OfdhrGt_OPuoQRlelZkii2opfDOZRRF_nYEIm-x7qA7D2YmDOlfsTEKMkcf3QmHiatxMWAWrn8b8vVEY-lNcxQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OfdhrGt_OPuoQRlelZkii2opfDOZRRF_nYEIm-x7qA7D2YmDOlfsTEKMkcf3QmHiatxMWAWrn8b8vVEY-lNcxQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OfdhrGt_OPuoQRlelZkii2opfDOZRRF_nYEIm-x7qA7D2YmDOlfsTEKMkcf3QmHiatxMWAWrn8b8vVEY-lNcxQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Oh5lznvGzAp9tjvTIwTsE-x9XMsxs2MyI5Wu1Fekm6qhzhiPMB5nooZYKpjwmQdMN9yObYzLHBgKDZZBvMKgtg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Oh5lznvGzAp9tjvTIwTsE-x9XMsxs2MyI5Wu1Fekm6qhzhiPMB5nooZYKpjwmQdMN9yObYzLHBgKDZZBvMKgtg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Oh5lznvGzAp9tjvTIwTsE-x9XMsxs2MyI5Wu1Fekm6qhzhiPMB5nooZYKpjwmQdMN9yObYzLHBgKDZZBvMKgtg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Om6YqNOEADoSazdHFjGJcMtcKB8rw_3mtASHqD7CwyUrY7uPw6-5lHVFZJuF73HF7jNRXXlmLJ_8BHjgkX-kMA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Om6YqNOEADoSazdHFjGJcMtcKB8rw_3mtASHqD7CwyUrY7uPw6-5lHVFZJuF73HF7jNRXXlmLJ_8BHjgkX-kMA== new file mode 100644 index 0000000..de0b180 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Om6YqNOEADoSazdHFjGJcMtcKB8rw_3mtASHqD7CwyUrY7uPw6-5lHVFZJuF73HF7jNRXXlmLJ_8BHjgkX-kMA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OqXMNLKqP79j-WFFCnVGnlM8QuC6fkSF-c82ofJ_TgZmU6u0CrTxgwu1rvnHllXYI_ekMcez2bfGXhpCkfxFDA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OqXMNLKqP79j-WFFCnVGnlM8QuC6fkSF-c82ofJ_TgZmU6u0CrTxgwu1rvnHllXYI_ekMcez2bfGXhpCkfxFDA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OqXMNLKqP79j-WFFCnVGnlM8QuC6fkSF-c82ofJ_TgZmU6u0CrTxgwu1rvnHllXYI_ekMcez2bfGXhpCkfxFDA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OqpGs-nY0jgkVWqEi1vXUO3gllUinjrjdKFhtq-pP5vkBTj2sH4Hou3rq5xAKW3yO_1KiJO_TPnNsGanOxd-vQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OqpGs-nY0jgkVWqEi1vXUO3gllUinjrjdKFhtq-pP5vkBTj2sH4Hou3rq5xAKW3yO_1KiJO_TPnNsGanOxd-vQ== new file mode 100644 index 0000000..cdda366 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OqpGs-nY0jgkVWqEi1vXUO3gllUinjrjdKFhtq-pP5vkBTj2sH4Hou3rq5xAKW3yO_1KiJO_TPnNsGanOxd-vQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ot6p2xtc1Ap2EnYToQa7sKyoSRa9a-5oydG7BrendMIH0CAPFj5BNiDll81RTTOP5tNfqwQkB4lg0g5vCMX2eA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ot6p2xtc1Ap2EnYToQa7sKyoSRa9a-5oydG7BrendMIH0CAPFj5BNiDll81RTTOP5tNfqwQkB4lg0g5vCMX2eA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ot6p2xtc1Ap2EnYToQa7sKyoSRa9a-5oydG7BrendMIH0CAPFj5BNiDll81RTTOP5tNfqwQkB4lg0g5vCMX2eA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OvY4-6dPiCKo-Sc1q4UXHunJN7v0ayvV07IuIcTirI_psvsW1-jVg47CvLqjWUu9YTi9xf5sYFTL0Pz9ps4fQg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OvY4-6dPiCKo-Sc1q4UXHunJN7v0ayvV07IuIcTirI_psvsW1-jVg47CvLqjWUu9YTi9xf5sYFTL0Pz9ps4fQg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OvY4-6dPiCKo-Sc1q4UXHunJN7v0ayvV07IuIcTirI_psvsW1-jVg47CvLqjWUu9YTi9xf5sYFTL0Pz9ps4fQg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OyWSo98wUCIw0y08aFxAf2N570wy4vKZnnwIc2TM7XrwCF6Gv3vloQL7YQ3R21QgIdQt2TGm9CmlgJGPkPMAxg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OyWSo98wUCIw0y08aFxAf2N570wy4vKZnnwIc2TM7XrwCF6Gv3vloQL7YQ3R21QgIdQt2TGm9CmlgJGPkPMAxg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~OyWSo98wUCIw0y08aFxAf2N570wy4vKZnnwIc2TM7XrwCF6Gv3vloQL7YQ3R21QgIdQt2TGm9CmlgJGPkPMAxg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~P0PFnv42zGnFaFceA8kz0cJaVZbrdDGUZzt4Z7lhgyog1E8ggQc9KevaChF3qY1faALw0b-5BqjEAhlnI-_I2Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~P0PFnv42zGnFaFceA8kz0cJaVZbrdDGUZzt4Z7lhgyog1E8ggQc9KevaChF3qY1faALw0b-5BqjEAhlnI-_I2Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~P0PFnv42zGnFaFceA8kz0cJaVZbrdDGUZzt4Z7lhgyog1E8ggQc9KevaChF3qY1faALw0b-5BqjEAhlnI-_I2Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~P2fkmUqSEu_nbh2vfvbRw3chpoI_SKuGlOfPc_SG_zFOF2aAnR09OTez2zP_P5z1W5gUxZcdgM9H7vMrhsKsVQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~P2fkmUqSEu_nbh2vfvbRw3chpoI_SKuGlOfPc_SG_zFOF2aAnR09OTez2zP_P5z1W5gUxZcdgM9H7vMrhsKsVQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~P2fkmUqSEu_nbh2vfvbRw3chpoI_SKuGlOfPc_SG_zFOF2aAnR09OTez2zP_P5z1W5gUxZcdgM9H7vMrhsKsVQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~P6I-OQ5_iSnF56qvodrXp0pLwXIeS3i3miBmSKgG6JQbeHDKqpnakwa9-idZEoWVH59yISdT51xrD1mVExaLcQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~P6I-OQ5_iSnF56qvodrXp0pLwXIeS3i3miBmSKgG6JQbeHDKqpnakwa9-idZEoWVH59yISdT51xrD1mVExaLcQ== new file mode 100644 index 0000000..a67d6d9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~P6I-OQ5_iSnF56qvodrXp0pLwXIeS3i3miBmSKgG6JQbeHDKqpnakwa9-idZEoWVH59yISdT51xrD1mVExaLcQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PQQEx1IWwk88QFJwya_AyUukyb7QiF7tUMTikxAZlM67_eni9dbhWH0ZVKWsX6nGQB_XpyNLVyyatpt2X8oF-A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PQQEx1IWwk88QFJwya_AyUukyb7QiF7tUMTikxAZlM67_eni9dbhWH0ZVKWsX6nGQB_XpyNLVyyatpt2X8oF-A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PQQEx1IWwk88QFJwya_AyUukyb7QiF7tUMTikxAZlM67_eni9dbhWH0ZVKWsX6nGQB_XpyNLVyyatpt2X8oF-A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PRpIWC03o_rm62xRdWEIPjRjvFUUNP54f41u0Qa2vyE490Hv-hQMNZwKb0xkm3lxldeJkXLCXQ-zKiCjiRK3dg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PRpIWC03o_rm62xRdWEIPjRjvFUUNP54f41u0Qa2vyE490Hv-hQMNZwKb0xkm3lxldeJkXLCXQ-zKiCjiRK3dg== new file mode 100644 index 0000000..4f786c1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PRpIWC03o_rm62xRdWEIPjRjvFUUNP54f41u0Qa2vyE490Hv-hQMNZwKb0xkm3lxldeJkXLCXQ-zKiCjiRK3dg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PSsCnNgybsEU_1OoX4YKinBuTd2bNxfOCd3UmbcmJTYz3wSLYioRh3aDQy0BvgMl8pP2rpLi-fJtkecgRgQnrg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PSsCnNgybsEU_1OoX4YKinBuTd2bNxfOCd3UmbcmJTYz3wSLYioRh3aDQy0BvgMl8pP2rpLi-fJtkecgRgQnrg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PSsCnNgybsEU_1OoX4YKinBuTd2bNxfOCd3UmbcmJTYz3wSLYioRh3aDQy0BvgMl8pP2rpLi-fJtkecgRgQnrg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PTJT8YYlF5Ypgz_fzG_K3L1CAX8saor8x3GfLW0qKUzf8-B0WHaOsK1Tt80BEd4NyBUKpESC4WVMjcYImGNTNQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PTJT8YYlF5Ypgz_fzG_K3L1CAX8saor8x3GfLW0qKUzf8-B0WHaOsK1Tt80BEd4NyBUKpESC4WVMjcYImGNTNQ== new file mode 100644 index 0000000..9b25fbf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PTJT8YYlF5Ypgz_fzG_K3L1CAX8saor8x3GfLW0qKUzf8-B0WHaOsK1Tt80BEd4NyBUKpESC4WVMjcYImGNTNQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PUO2adVLe--2auZxMOCSIEUvXiXSP58SdZFlrIKd3wyhX025FF__WGNn2xu5VH5RRlHYDeAJfUc78J-6kZgj_Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PUO2adVLe--2auZxMOCSIEUvXiXSP58SdZFlrIKd3wyhX025FF__WGNn2xu5VH5RRlHYDeAJfUc78J-6kZgj_Q== new file mode 100644 index 0000000..19f3c9d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PUO2adVLe--2auZxMOCSIEUvXiXSP58SdZFlrIKd3wyhX025FF__WGNn2xu5VH5RRlHYDeAJfUc78J-6kZgj_Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PbTFfpnO_EH-UAYCOFlFr4A3B8kRxDxtGzDDJo6r0TXB5gCw_VFHljg8SQQguyQXqFOPQuGm85m-fYeaaX4exw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PbTFfpnO_EH-UAYCOFlFr4A3B8kRxDxtGzDDJo6r0TXB5gCw_VFHljg8SQQguyQXqFOPQuGm85m-fYeaaX4exw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PbTFfpnO_EH-UAYCOFlFr4A3B8kRxDxtGzDDJo6r0TXB5gCw_VFHljg8SQQguyQXqFOPQuGm85m-fYeaaX4exw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PgkHoKrFzaDCa3BxoGjE59HuBDZmex9tTJopgkIKPxrkpV6nwqfQ3s1aLlbG-rv81TeR3-X2USF-rl30S_ea9Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PgkHoKrFzaDCa3BxoGjE59HuBDZmex9tTJopgkIKPxrkpV6nwqfQ3s1aLlbG-rv81TeR3-X2USF-rl30S_ea9Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PgkHoKrFzaDCa3BxoGjE59HuBDZmex9tTJopgkIKPxrkpV6nwqfQ3s1aLlbG-rv81TeR3-X2USF-rl30S_ea9Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Phibjb7RIU5UplrdBIPnj4e-FdpKTfveBySXQrdrKwFCsScoXXhU5L7N_MtBDfGFqwNNIxXKvajFfmJAI-34Ag== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Phibjb7RIU5UplrdBIPnj4e-FdpKTfveBySXQrdrKwFCsScoXXhU5L7N_MtBDfGFqwNNIxXKvajFfmJAI-34Ag== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Phibjb7RIU5UplrdBIPnj4e-FdpKTfveBySXQrdrKwFCsScoXXhU5L7N_MtBDfGFqwNNIxXKvajFfmJAI-34Ag== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Pobq4OOLNogdBP0XB7VRqyEL6yhahHQHtlz2lDHX7Fg08uLKDh8jwjjsPChNzuhfqlD6JY17VNLgGiOEgDT1lA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Pobq4OOLNogdBP0XB7VRqyEL6yhahHQHtlz2lDHX7Fg08uLKDh8jwjjsPChNzuhfqlD6JY17VNLgGiOEgDT1lA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Pobq4OOLNogdBP0XB7VRqyEL6yhahHQHtlz2lDHX7Fg08uLKDh8jwjjsPChNzuhfqlD6JY17VNLgGiOEgDT1lA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Pojf3024a4aes3q1OJm7cwuSK3XQvhkpT8I6puTbQ9vinl0wpMwClyXJWsPg-U3_edrroa0HD3l1sZPPAjr4XA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Pojf3024a4aes3q1OJm7cwuSK3XQvhkpT8I6puTbQ9vinl0wpMwClyXJWsPg-U3_edrroa0HD3l1sZPPAjr4XA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Pojf3024a4aes3q1OJm7cwuSK3XQvhkpT8I6puTbQ9vinl0wpMwClyXJWsPg-U3_edrroa0HD3l1sZPPAjr4XA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ptuu5DWwnTLU15-iZjnyofTsz7f2BBjAx-QxmJSMrFvcyp1cb5auDWyi86eN2bM8yPq88j4YxTQas4VqULbZwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ptuu5DWwnTLU15-iZjnyofTsz7f2BBjAx-QxmJSMrFvcyp1cb5auDWyi86eN2bM8yPq88j4YxTQas4VqULbZwg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ptuu5DWwnTLU15-iZjnyofTsz7f2BBjAx-QxmJSMrFvcyp1cb5auDWyi86eN2bM8yPq88j4YxTQas4VqULbZwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PuHA8ebXL-qxmzmKa4SGBm0XX9cZK9nKBRqteA9hdEZ3LKJNWjDtV7QzZfxcD1nEWsjFFTdLFs95HlumNO4mDg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PuHA8ebXL-qxmzmKa4SGBm0XX9cZK9nKBRqteA9hdEZ3LKJNWjDtV7QzZfxcD1nEWsjFFTdLFs95HlumNO4mDg== new file mode 100644 index 0000000..8ca5654 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~PuHA8ebXL-qxmzmKa4SGBm0XX9cZK9nKBRqteA9hdEZ3LKJNWjDtV7QzZfxcD1nEWsjFFTdLFs95HlumNO4mDg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q3mXUS1dF6uUGyIDIDmMo09lMMqfmOg3rP5GDm_lSwtpF5z3jfeMEzhM4_2gz1UTCGruARczqIWnANVcmMsgnw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q3mXUS1dF6uUGyIDIDmMo09lMMqfmOg3rP5GDm_lSwtpF5z3jfeMEzhM4_2gz1UTCGruARczqIWnANVcmMsgnw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q3mXUS1dF6uUGyIDIDmMo09lMMqfmOg3rP5GDm_lSwtpF5z3jfeMEzhM4_2gz1UTCGruARczqIWnANVcmMsgnw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q3xT0bQn-qOB3ts879uh-oUOU-eOuZoEfTzAZB9Sz0ERDOme-RGO8O9T1-cFEBoG9j96K44Hxmi6BmXPdiho4A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q3xT0bQn-qOB3ts879uh-oUOU-eOuZoEfTzAZB9Sz0ERDOme-RGO8O9T1-cFEBoG9j96K44Hxmi6BmXPdiho4A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q3xT0bQn-qOB3ts879uh-oUOU-eOuZoEfTzAZB9Sz0ERDOme-RGO8O9T1-cFEBoG9j96K44Hxmi6BmXPdiho4A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q64ObzGt9ZBHUfASylQ4p57z9wI9QGYkfZX-fP6lTlDZixg7HrXI6mq283YULHxdGyd9Q5VExT0WZqRpQ4E4gA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q64ObzGt9ZBHUfASylQ4p57z9wI9QGYkfZX-fP6lTlDZixg7HrXI6mq283YULHxdGyd9Q5VExT0WZqRpQ4E4gA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q64ObzGt9ZBHUfASylQ4p57z9wI9QGYkfZX-fP6lTlDZixg7HrXI6mq283YULHxdGyd9Q5VExT0WZqRpQ4E4gA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q7ZFPsgpOa49C_Ywu9-S5WbHN1I-RQHmz3JRdEqSpn3U0hrkJSvP30QuAnodpTiF6M9pLpgAqDmzzxpytjAriQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q7ZFPsgpOa49C_Ywu9-S5WbHN1I-RQHmz3JRdEqSpn3U0hrkJSvP30QuAnodpTiF6M9pLpgAqDmzzxpytjAriQ== new file mode 100644 index 0000000..b60fb16 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q7ZFPsgpOa49C_Ywu9-S5WbHN1I-RQHmz3JRdEqSpn3U0hrkJSvP30QuAnodpTiF6M9pLpgAqDmzzxpytjAriQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q9-yq1uhDUTkOk1H9nV1zE-dCEHLvNyFp5b61wz_swB_lA_brGPDIuhTWEAxoK8DUUaALQKTmkQkjIAi_Xy5Ug== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q9-yq1uhDUTkOk1H9nV1zE-dCEHLvNyFp5b61wz_swB_lA_brGPDIuhTWEAxoK8DUUaALQKTmkQkjIAi_Xy5Ug== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Q9-yq1uhDUTkOk1H9nV1zE-dCEHLvNyFp5b61wz_swB_lA_brGPDIuhTWEAxoK8DUUaALQKTmkQkjIAi_Xy5Ug== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QFuKxrFikBRlYxxcllhTVgUQ5rTOFuqtv-LDHSQJ7BACMiVicCwtmN-nax-Hb-ezHmEAz7_dkrh7FoX6WqbX2g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QFuKxrFikBRlYxxcllhTVgUQ5rTOFuqtv-LDHSQJ7BACMiVicCwtmN-nax-Hb-ezHmEAz7_dkrh7FoX6WqbX2g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QFuKxrFikBRlYxxcllhTVgUQ5rTOFuqtv-LDHSQJ7BACMiVicCwtmN-nax-Hb-ezHmEAz7_dkrh7FoX6WqbX2g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QG10ggfN5aDf3xzu5Xjrr_CG5X2d71Hq9M4AI_UNQNPTMXTxcL7s2WOcdeP_vtZDfEsw2KP3CaMQtQJ0kttjDQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QG10ggfN5aDf3xzu5Xjrr_CG5X2d71Hq9M4AI_UNQNPTMXTxcL7s2WOcdeP_vtZDfEsw2KP3CaMQtQJ0kttjDQ== new file mode 100644 index 0000000..3d4ad6d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QG10ggfN5aDf3xzu5Xjrr_CG5X2d71Hq9M4AI_UNQNPTMXTxcL7s2WOcdeP_vtZDfEsw2KP3CaMQtQJ0kttjDQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QIj-dkz2H9Wk9Rr3JKYaOUx06IXCES6PphnMl3qOajOn5et6PVCsxV2n_h1pFuq7jf5QD6yj8w09JVGYxlqGWw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QIj-dkz2H9Wk9Rr3JKYaOUx06IXCES6PphnMl3qOajOn5et6PVCsxV2n_h1pFuq7jf5QD6yj8w09JVGYxlqGWw== new file mode 100644 index 0000000..447c1e0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QIj-dkz2H9Wk9Rr3JKYaOUx06IXCES6PphnMl3qOajOn5et6PVCsxV2n_h1pFuq7jf5QD6yj8w09JVGYxlqGWw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QKFYDiGdrByUJ3scYRAWVCCQhWbDg4LNVkk1oPmXVKy6_3wpPdo0O8QyjkosYpFRAGnDbQcb_B86lpVmZeJWQA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QKFYDiGdrByUJ3scYRAWVCCQhWbDg4LNVkk1oPmXVKy6_3wpPdo0O8QyjkosYpFRAGnDbQcb_B86lpVmZeJWQA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QKFYDiGdrByUJ3scYRAWVCCQhWbDg4LNVkk1oPmXVKy6_3wpPdo0O8QyjkosYpFRAGnDbQcb_B86lpVmZeJWQA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QQoGcSCG6ZlVfF2LBiG--VKUtBanfAS_0fryGVjj0DEXXgSB7R28A8wOnn1o0BWDRjPX9lij70Ak7e20LzxmuQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QQoGcSCG6ZlVfF2LBiG--VKUtBanfAS_0fryGVjj0DEXXgSB7R28A8wOnn1o0BWDRjPX9lij70Ak7e20LzxmuQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QQoGcSCG6ZlVfF2LBiG--VKUtBanfAS_0fryGVjj0DEXXgSB7R28A8wOnn1o0BWDRjPX9lij70Ak7e20LzxmuQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QXeM0aO4WUb8QIksx9UvXdQ06QOlNd6hGMGR8O8WlA-CoLzVX11Kt1YgKJhFicSWtf8z64BBp0-ON5ytwr1dhg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QXeM0aO4WUb8QIksx9UvXdQ06QOlNd6hGMGR8O8WlA-CoLzVX11Kt1YgKJhFicSWtf8z64BBp0-ON5ytwr1dhg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QXeM0aO4WUb8QIksx9UvXdQ06QOlNd6hGMGR8O8WlA-CoLzVX11Kt1YgKJhFicSWtf8z64BBp0-ON5ytwr1dhg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Qhl2nK0_gQdRSQI7aAnTjtBr2AfZxxfqrYhWDrp4xwM7xsHu-Re6DP0Ky15REiZ0cBJ6lHqNFVxCEVFyycEmAA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Qhl2nK0_gQdRSQI7aAnTjtBr2AfZxxfqrYhWDrp4xwM7xsHu-Re6DP0Ky15REiZ0cBJ6lHqNFVxCEVFyycEmAA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Qhl2nK0_gQdRSQI7aAnTjtBr2AfZxxfqrYhWDrp4xwM7xsHu-Re6DP0Ky15REiZ0cBJ6lHqNFVxCEVFyycEmAA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Qj2vGGccDsfzVWmZ4n43TEbbzLWtVzNZPJjsJXsPPBQeZ0kpH7OCVBwZbgFPBaMh9RRdJ4szf3NZZMDT7Yq18w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Qj2vGGccDsfzVWmZ4n43TEbbzLWtVzNZPJjsJXsPPBQeZ0kpH7OCVBwZbgFPBaMh9RRdJ4szf3NZZMDT7Yq18w== new file mode 100644 index 0000000..1a6162d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Qj2vGGccDsfzVWmZ4n43TEbbzLWtVzNZPJjsJXsPPBQeZ0kpH7OCVBwZbgFPBaMh9RRdJ4szf3NZZMDT7Yq18w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QmA9vqSOHfbLZzaC9dOdUf1ZTZLzSNx80Zo3emdkJiF1fSiDz6_3Q6oo8yZFXVAjDtAsDWOVNfy1A4NyHe0bMw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QmA9vqSOHfbLZzaC9dOdUf1ZTZLzSNx80Zo3emdkJiF1fSiDz6_3Q6oo8yZFXVAjDtAsDWOVNfy1A4NyHe0bMw== new file mode 100644 index 0000000..4d1f973 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QmA9vqSOHfbLZzaC9dOdUf1ZTZLzSNx80Zo3emdkJiF1fSiDz6_3Q6oo8yZFXVAjDtAsDWOVNfy1A4NyHe0bMw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QshQpbh4RKkdMAMf2oGzby5gDTEx16LpVaMuQ0rcLJAeHP3e3SOVcaYnezvXqoY_aoxP_j1IDyupwhBHFrcnlg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QshQpbh4RKkdMAMf2oGzby5gDTEx16LpVaMuQ0rcLJAeHP3e3SOVcaYnezvXqoY_aoxP_j1IDyupwhBHFrcnlg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QshQpbh4RKkdMAMf2oGzby5gDTEx16LpVaMuQ0rcLJAeHP3e3SOVcaYnezvXqoY_aoxP_j1IDyupwhBHFrcnlg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QtWgAom5co2rAIguEBASvpZRGMD6fvcDk96_bLFdOy44rwYPS1T5gLOZNcT-Z49xRIn_JIPMQtkNK2u-tHYfSA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QtWgAom5co2rAIguEBASvpZRGMD6fvcDk96_bLFdOy44rwYPS1T5gLOZNcT-Z49xRIn_JIPMQtkNK2u-tHYfSA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QtWgAom5co2rAIguEBASvpZRGMD6fvcDk96_bLFdOy44rwYPS1T5gLOZNcT-Z49xRIn_JIPMQtkNK2u-tHYfSA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QuhwS7Y056o6GAaFfASqFR_NKJqk8-BTSZ4Y9KHyM7g2XPFYLbTjv59XdC7_xPDw_XcEDokrJiaGDZ_E7kwMgg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QuhwS7Y056o6GAaFfASqFR_NKJqk8-BTSZ4Y9KHyM7g2XPFYLbTjv59XdC7_xPDw_XcEDokrJiaGDZ_E7kwMgg== new file mode 100644 index 0000000..c32c7ea Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~QuhwS7Y056o6GAaFfASqFR_NKJqk8-BTSZ4Y9KHyM7g2XPFYLbTjv59XdC7_xPDw_XcEDokrJiaGDZ_E7kwMgg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~R-L8ABD7f30yc_l5Sl3tG8DAOt-uzVxgvE8phC69opH1tm0m_kQg4nfFccJTM4AVF7gsbptIAcI6r8FuIiL7VQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~R-L8ABD7f30yc_l5Sl3tG8DAOt-uzVxgvE8phC69opH1tm0m_kQg4nfFccJTM4AVF7gsbptIAcI6r8FuIiL7VQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~R-L8ABD7f30yc_l5Sl3tG8DAOt-uzVxgvE8phC69opH1tm0m_kQg4nfFccJTM4AVF7gsbptIAcI6r8FuIiL7VQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~R69iGeIbbFWNMG84lsv0YECJbk82F5zNRm1lXv_NUlu5e_r5PJb2ga7yjduDpP0MrzLWCxRQ4giSEmJ4KCjusA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~R69iGeIbbFWNMG84lsv0YECJbk82F5zNRm1lXv_NUlu5e_r5PJb2ga7yjduDpP0MrzLWCxRQ4giSEmJ4KCjusA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~R69iGeIbbFWNMG84lsv0YECJbk82F5zNRm1lXv_NUlu5e_r5PJb2ga7yjduDpP0MrzLWCxRQ4giSEmJ4KCjusA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~R8t0gfI-cQ1RG-dhBjnd33eULKZipeDNBJbWkmETMCC645i2mpIHKqTA4-H9zdug0kHBNAtjG-E1uD7ZoPYMrQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~R8t0gfI-cQ1RG-dhBjnd33eULKZipeDNBJbWkmETMCC645i2mpIHKqTA4-H9zdug0kHBNAtjG-E1uD7ZoPYMrQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~R8t0gfI-cQ1RG-dhBjnd33eULKZipeDNBJbWkmETMCC645i2mpIHKqTA4-H9zdug0kHBNAtjG-E1uD7ZoPYMrQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RAOYSFqiiJkBXLo_3n6OvIV78pv9jmRWJE_ajZi5gkwoq5ijab7JqP9tRH2LIrEBaIsMYws1VUk6K2Vl6PBCeQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RAOYSFqiiJkBXLo_3n6OvIV78pv9jmRWJE_ajZi5gkwoq5ijab7JqP9tRH2LIrEBaIsMYws1VUk6K2Vl6PBCeQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RAOYSFqiiJkBXLo_3n6OvIV78pv9jmRWJE_ajZi5gkwoq5ijab7JqP9tRH2LIrEBaIsMYws1VUk6K2Vl6PBCeQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RAll9xg3px5oxgVxqpAkM1K_XxGvw_NsLMJk0tAtA9EkROWL09_9d1DWskvQux2NsCN82Gjx9520d9BKLBs4PQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RAll9xg3px5oxgVxqpAkM1K_XxGvw_NsLMJk0tAtA9EkROWL09_9d1DWskvQux2NsCN82Gjx9520d9BKLBs4PQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RAll9xg3px5oxgVxqpAkM1K_XxGvw_NsLMJk0tAtA9EkROWL09_9d1DWskvQux2NsCN82Gjx9520d9BKLBs4PQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RCChzTmerijOv-U8XjNd1cel2LTlNZ5ghNmnJXfTxr2UItkgO8O5bk6H9ULTyIBj3w3E-crO1-NMW6AQnKRlwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RCChzTmerijOv-U8XjNd1cel2LTlNZ5ghNmnJXfTxr2UItkgO8O5bk6H9ULTyIBj3w3E-crO1-NMW6AQnKRlwg== new file mode 100644 index 0000000..3135ab2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RCChzTmerijOv-U8XjNd1cel2LTlNZ5ghNmnJXfTxr2UItkgO8O5bk6H9ULTyIBj3w3E-crO1-NMW6AQnKRlwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RIbXjx-hK5YhguABL3i01IeuSoDniWHhgEm3-cwzVygzNxC-mK47drSYvCkrFGVQ3wm2bB3ZNpUpjxkFnkzLew== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RIbXjx-hK5YhguABL3i01IeuSoDniWHhgEm3-cwzVygzNxC-mK47drSYvCkrFGVQ3wm2bB3ZNpUpjxkFnkzLew== new file mode 100644 index 0000000..67af2e6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RIbXjx-hK5YhguABL3i01IeuSoDniWHhgEm3-cwzVygzNxC-mK47drSYvCkrFGVQ3wm2bB3ZNpUpjxkFnkzLew== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RKP239EGUHX_dyJUOpzyx3c6Dw7BrUSIgDuFLLsFB2ywJUd8khPWagWlFo01oK5zaNjKSppPbXw5zjgs9BfR2Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RKP239EGUHX_dyJUOpzyx3c6Dw7BrUSIgDuFLLsFB2ywJUd8khPWagWlFo01oK5zaNjKSppPbXw5zjgs9BfR2Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RKP239EGUHX_dyJUOpzyx3c6Dw7BrUSIgDuFLLsFB2ywJUd8khPWagWlFo01oK5zaNjKSppPbXw5zjgs9BfR2Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RSDFoJ4inUazN2ghZmzfLcetyjKqU_8_mJQ1HW6aX6SIQQSmYJC2sS4a5pkvr63npuug4tMFSbGWkoE_oHF65A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RSDFoJ4inUazN2ghZmzfLcetyjKqU_8_mJQ1HW6aX6SIQQSmYJC2sS4a5pkvr63npuug4tMFSbGWkoE_oHF65A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RSDFoJ4inUazN2ghZmzfLcetyjKqU_8_mJQ1HW6aX6SIQQSmYJC2sS4a5pkvr63npuug4tMFSbGWkoE_oHF65A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RUlBsNL9VfMu3WvNNlxTZMalx-EY0ZyViWZLappE2LwLAcZ7Fu4PFzbU4Toez8_S6i7JMdQdprIwQRP639-s9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RUlBsNL9VfMu3WvNNlxTZMalx-EY0ZyViWZLappE2LwLAcZ7Fu4PFzbU4Toez8_S6i7JMdQdprIwQRP639-s9A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RUlBsNL9VfMu3WvNNlxTZMalx-EY0ZyViWZLappE2LwLAcZ7Fu4PFzbU4Toez8_S6i7JMdQdprIwQRP639-s9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RWha7Nninu4Xt6eKdkIVwB6paj_8GrZKMk0c3HcYfC_B4Gl23tZCShWUJFDyFODbUVs01Uv82U67AgvNSLAKJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RWha7Nninu4Xt6eKdkIVwB6paj_8GrZKMk0c3HcYfC_B4Gl23tZCShWUJFDyFODbUVs01Uv82U67AgvNSLAKJg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RWha7Nninu4Xt6eKdkIVwB6paj_8GrZKMk0c3HcYfC_B4Gl23tZCShWUJFDyFODbUVs01Uv82U67AgvNSLAKJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RaMv0FyJxgkVNDBJVPIHLFDjCGnAmOpnAJRrYjPmXKtyHOzR9xFGrWvyP8gt5sFLgPevO4OBX5HtxpkZLRsidA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RaMv0FyJxgkVNDBJVPIHLFDjCGnAmOpnAJRrYjPmXKtyHOzR9xFGrWvyP8gt5sFLgPevO4OBX5HtxpkZLRsidA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RaMv0FyJxgkVNDBJVPIHLFDjCGnAmOpnAJRrYjPmXKtyHOzR9xFGrWvyP8gt5sFLgPevO4OBX5HtxpkZLRsidA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ReNtLpkLf6YWaN-Tvo-3q5zUuMEllak6dBKoIXcFDPBhtNhVv7j7WVa1PN-Bn6-ET8QzxPT8LbaIIBhvPbbtLw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ReNtLpkLf6YWaN-Tvo-3q5zUuMEllak6dBKoIXcFDPBhtNhVv7j7WVa1PN-Bn6-ET8QzxPT8LbaIIBhvPbbtLw== new file mode 100644 index 0000000..4153ffd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ReNtLpkLf6YWaN-Tvo-3q5zUuMEllak6dBKoIXcFDPBhtNhVv7j7WVa1PN-Bn6-ET8QzxPT8LbaIIBhvPbbtLw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Rf2C9yj1ppH39Zf-ma3o_oAx-h4u9q_WsrVJBFQNga8-YOLVDjw-tipo4wMyoDcayK5AT9fAt1uq_VinSHwDng== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Rf2C9yj1ppH39Zf-ma3o_oAx-h4u9q_WsrVJBFQNga8-YOLVDjw-tipo4wMyoDcayK5AT9fAt1uq_VinSHwDng== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Rf2C9yj1ppH39Zf-ma3o_oAx-h4u9q_WsrVJBFQNga8-YOLVDjw-tipo4wMyoDcayK5AT9fAt1uq_VinSHwDng== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Riau3sjbXMj5pqNdvDHO7p3njy6YgbcCk3Vog0wXxUCXcu1BtIsQMNRSft7jJTFrEL5OYOGL-FZGuFjgpiUnkA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Riau3sjbXMj5pqNdvDHO7p3njy6YgbcCk3Vog0wXxUCXcu1BtIsQMNRSft7jJTFrEL5OYOGL-FZGuFjgpiUnkA== new file mode 100644 index 0000000..8fa8a67 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Riau3sjbXMj5pqNdvDHO7p3njy6YgbcCk3Vog0wXxUCXcu1BtIsQMNRSft7jJTFrEL5OYOGL-FZGuFjgpiUnkA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RrF-1wqlDhtVbgozLnlMagwj2As8nBSuEczHV5snvI1b_QIpYAZio1qa07eCI4PGhDxr2jVuxM3rcR8jC6IGng== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RrF-1wqlDhtVbgozLnlMagwj2As8nBSuEczHV5snvI1b_QIpYAZio1qa07eCI4PGhDxr2jVuxM3rcR8jC6IGng== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RrF-1wqlDhtVbgozLnlMagwj2As8nBSuEczHV5snvI1b_QIpYAZio1qa07eCI4PGhDxr2jVuxM3rcR8jC6IGng== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RuvitdZ7ey-XwFb0eMdInSWORvuXBs79aLorbsCpXnAcle8bQ2mctAJwPdAyOLESHzddvGwIYnqS6rKYuwvg9Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RuvitdZ7ey-XwFb0eMdInSWORvuXBs79aLorbsCpXnAcle8bQ2mctAJwPdAyOLESHzddvGwIYnqS6rKYuwvg9Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RuvitdZ7ey-XwFb0eMdInSWORvuXBs79aLorbsCpXnAcle8bQ2mctAJwPdAyOLESHzddvGwIYnqS6rKYuwvg9Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RxKup6tW4DGOB_nSKiCuxoYtm6GQyMsZfMBfkMtsreOmCyxD2SiN2Rxfww5QfgDUB7muzso0d6i2noxnJkKiYw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RxKup6tW4DGOB_nSKiCuxoYtm6GQyMsZfMBfkMtsreOmCyxD2SiN2Rxfww5QfgDUB7muzso0d6i2noxnJkKiYw== new file mode 100644 index 0000000..37408ab Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~RxKup6tW4DGOB_nSKiCuxoYtm6GQyMsZfMBfkMtsreOmCyxD2SiN2Rxfww5QfgDUB7muzso0d6i2noxnJkKiYw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~S-RVGHiglNhHrFkJ_RzpXTJRfyiJ2_Jn5WLAK3jN3u8RB9u4sb_xmbtNcy9uReMHqOYar_ntJJiv7NHWs8Yo9w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~S-RVGHiglNhHrFkJ_RzpXTJRfyiJ2_Jn5WLAK3jN3u8RB9u4sb_xmbtNcy9uReMHqOYar_ntJJiv7NHWs8Yo9w== new file mode 100644 index 0000000..d35fb96 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~S-RVGHiglNhHrFkJ_RzpXTJRfyiJ2_Jn5WLAK3jN3u8RB9u4sb_xmbtNcy9uReMHqOYar_ntJJiv7NHWs8Yo9w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SF11nIjFQdssQFEwGw6ze_KdmoBEALp1t8JaxJr7X1U92cFTGxS2NegRNfO2mx58fSpd8zUWIddAfnHeqF5pSg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SF11nIjFQdssQFEwGw6ze_KdmoBEALp1t8JaxJr7X1U92cFTGxS2NegRNfO2mx58fSpd8zUWIddAfnHeqF5pSg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SF11nIjFQdssQFEwGw6ze_KdmoBEALp1t8JaxJr7X1U92cFTGxS2NegRNfO2mx58fSpd8zUWIddAfnHeqF5pSg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SGHarkNXvJfXulmziGq1oPYNqIfpSS4_4iQy_tVzpGbVJCu3YSoJJ3qVmDAdTMO0iUVlzZg1n9jbz94vRVL3tA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SGHarkNXvJfXulmziGq1oPYNqIfpSS4_4iQy_tVzpGbVJCu3YSoJJ3qVmDAdTMO0iUVlzZg1n9jbz94vRVL3tA== new file mode 100644 index 0000000..a29c8fd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SGHarkNXvJfXulmziGq1oPYNqIfpSS4_4iQy_tVzpGbVJCu3YSoJJ3qVmDAdTMO0iUVlzZg1n9jbz94vRVL3tA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SQYMCe9TAts-y6V7yTPm2AAuXUF8EXmfYvBXngxL3JE-ooK6p8a4wf6O1wLdAKIndbxIfxd0C24PQo30GFUypA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SQYMCe9TAts-y6V7yTPm2AAuXUF8EXmfYvBXngxL3JE-ooK6p8a4wf6O1wLdAKIndbxIfxd0C24PQo30GFUypA== new file mode 100644 index 0000000..d464f9a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SQYMCe9TAts-y6V7yTPm2AAuXUF8EXmfYvBXngxL3JE-ooK6p8a4wf6O1wLdAKIndbxIfxd0C24PQo30GFUypA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SStg6yTYHoWpecG1IWfUMmvSysUGOCmFcDn9CMpxtYEwIMGWcBX3eVv1qVr_ODLG2bVJnffiQGF5cRhDHsVl1w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SStg6yTYHoWpecG1IWfUMmvSysUGOCmFcDn9CMpxtYEwIMGWcBX3eVv1qVr_ODLG2bVJnffiQGF5cRhDHsVl1w== new file mode 100644 index 0000000..e80b37b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SStg6yTYHoWpecG1IWfUMmvSysUGOCmFcDn9CMpxtYEwIMGWcBX3eVv1qVr_ODLG2bVJnffiQGF5cRhDHsVl1w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SUalcW7GB5DIx9Bs-X8K40BOomzrJZ7k9krDQ2AAIjHEGzWxEkbEPHKioP29rKl22EN-6O8qhaA478ZWg_iV4Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SUalcW7GB5DIx9Bs-X8K40BOomzrJZ7k9krDQ2AAIjHEGzWxEkbEPHKioP29rKl22EN-6O8qhaA478ZWg_iV4Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SUalcW7GB5DIx9Bs-X8K40BOomzrJZ7k9krDQ2AAIjHEGzWxEkbEPHKioP29rKl22EN-6O8qhaA478ZWg_iV4Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SX-BFVu1rNuk__hn1O_EzHrIJ3EUZGCptKvBroeHVkxhX1TAYyLFSOEMDNP9abDz4Q-3nnEJcPtsxpdKfN7S9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SX-BFVu1rNuk__hn1O_EzHrIJ3EUZGCptKvBroeHVkxhX1TAYyLFSOEMDNP9abDz4Q-3nnEJcPtsxpdKfN7S9A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SX-BFVu1rNuk__hn1O_EzHrIJ3EUZGCptKvBroeHVkxhX1TAYyLFSOEMDNP9abDz4Q-3nnEJcPtsxpdKfN7S9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SnPkf9zbehm30lGUcDO-VCmy3IqB8NYS_zwKOpQS0NJ9uVIwR2yQtcleIKg7tdK43tKSoPW2ESqyPDcyQm-ejQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SnPkf9zbehm30lGUcDO-VCmy3IqB8NYS_zwKOpQS0NJ9uVIwR2yQtcleIKg7tdK43tKSoPW2ESqyPDcyQm-ejQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SnPkf9zbehm30lGUcDO-VCmy3IqB8NYS_zwKOpQS0NJ9uVIwR2yQtcleIKg7tdK43tKSoPW2ESqyPDcyQm-ejQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SpZ5lk9IZiW8HnHIzViJLcK1_jEhV3O4LybOZjGNAYsec2BoicArZXqY0PlJBros8OHKNMykbQf22zpTy3tZPw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SpZ5lk9IZiW8HnHIzViJLcK1_jEhV3O4LybOZjGNAYsec2BoicArZXqY0PlJBros8OHKNMykbQf22zpTy3tZPw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SpZ5lk9IZiW8HnHIzViJLcK1_jEhV3O4LybOZjGNAYsec2BoicArZXqY0PlJBros8OHKNMykbQf22zpTy3tZPw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SyoWZgyf-oysddprWWe2glX0PYmhwS7AxtQm8iXtCgem56qHP94gq0TKDXIjvSvyfAOpwR8WQnI1M5rYsLmcWA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SyoWZgyf-oysddprWWe2glX0PYmhwS7AxtQm8iXtCgem56qHP94gq0TKDXIjvSvyfAOpwR8WQnI1M5rYsLmcWA== new file mode 100644 index 0000000..90a9e5b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~SyoWZgyf-oysddprWWe2glX0PYmhwS7AxtQm8iXtCgem56qHP94gq0TKDXIjvSvyfAOpwR8WQnI1M5rYsLmcWA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~T2Vo21sFcfQrygOt_9JeD_2_muI8pJom8q6lT0DUoV_MyNZkNRo3UtXhQC--wzMztVA4iK01wu7ZvGWBbPkSTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~T2Vo21sFcfQrygOt_9JeD_2_muI8pJom8q6lT0DUoV_MyNZkNRo3UtXhQC--wzMztVA4iK01wu7ZvGWBbPkSTw== new file mode 100644 index 0000000..1feedc5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~T2Vo21sFcfQrygOt_9JeD_2_muI8pJom8q6lT0DUoV_MyNZkNRo3UtXhQC--wzMztVA4iK01wu7ZvGWBbPkSTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~T8v99TJB__iJy7rg1uo1hpRCArwW_Hy40OKlP-yQBKc7KLES1e6mqsaLM_lxKtH4Rx7zPUPn905HtM7IGwzb8w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~T8v99TJB__iJy7rg1uo1hpRCArwW_Hy40OKlP-yQBKc7KLES1e6mqsaLM_lxKtH4Rx7zPUPn905HtM7IGwzb8w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~T8v99TJB__iJy7rg1uo1hpRCArwW_Hy40OKlP-yQBKc7KLES1e6mqsaLM_lxKtH4Rx7zPUPn905HtM7IGwzb8w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~T9kGFk11vbMrvd6TDIEDqRs-10jPxadnqbXb6DbtEXFs_FeYSYgWN6sQJWUKWQR4Wb4T61cTk76TW1ewYX9Agw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~T9kGFk11vbMrvd6TDIEDqRs-10jPxadnqbXb6DbtEXFs_FeYSYgWN6sQJWUKWQR4Wb4T61cTk76TW1ewYX9Agw== new file mode 100644 index 0000000..1bc2496 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~T9kGFk11vbMrvd6TDIEDqRs-10jPxadnqbXb6DbtEXFs_FeYSYgWN6sQJWUKWQR4Wb4T61cTk76TW1ewYX9Agw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TAsJafQd44k0fl3Gh8dbN5cDTUAcumb44IrtQ_-CxTtyAmw76him-cPHnrlTB3Lfq1SWfDDBOze_mFfCHvZoHg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TAsJafQd44k0fl3Gh8dbN5cDTUAcumb44IrtQ_-CxTtyAmw76him-cPHnrlTB3Lfq1SWfDDBOze_mFfCHvZoHg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TAsJafQd44k0fl3Gh8dbN5cDTUAcumb44IrtQ_-CxTtyAmw76him-cPHnrlTB3Lfq1SWfDDBOze_mFfCHvZoHg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TKgEScrALEGlN6oSS6CdpfOmQo8CnBDqeeSfWevbmhm-w05pbsPVUSUKYXZnt1UaLLF6ybSR16oUEwbFp5heEA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TKgEScrALEGlN6oSS6CdpfOmQo8CnBDqeeSfWevbmhm-w05pbsPVUSUKYXZnt1UaLLF6ybSR16oUEwbFp5heEA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TKgEScrALEGlN6oSS6CdpfOmQo8CnBDqeeSfWevbmhm-w05pbsPVUSUKYXZnt1UaLLF6ybSR16oUEwbFp5heEA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TO1WPDKwRxLH0JjxpdwAtaSjNHEQaPSKyYFbUCaEsEybgcTNcr1cXHeTOY3bDaRqmy-90JimqzC0Rn4eAT4FCA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TO1WPDKwRxLH0JjxpdwAtaSjNHEQaPSKyYFbUCaEsEybgcTNcr1cXHeTOY3bDaRqmy-90JimqzC0Rn4eAT4FCA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TO1WPDKwRxLH0JjxpdwAtaSjNHEQaPSKyYFbUCaEsEybgcTNcr1cXHeTOY3bDaRqmy-90JimqzC0Rn4eAT4FCA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TP7Jrt4aLYvc3RSrId9uiS2nzzkLYWQPnFeWF_grlF6LrKmyVbV_MFA2MJ0tbSnib3GZi6ql4U-NZxlc7aHN8g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TP7Jrt4aLYvc3RSrId9uiS2nzzkLYWQPnFeWF_grlF6LrKmyVbV_MFA2MJ0tbSnib3GZi6ql4U-NZxlc7aHN8g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TP7Jrt4aLYvc3RSrId9uiS2nzzkLYWQPnFeWF_grlF6LrKmyVbV_MFA2MJ0tbSnib3GZi6ql4U-NZxlc7aHN8g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TPUPEHqExrRf-k7nI8VAkc5Xh__SFDyPuQ6U_xuD3CJ1Lq21ZFCKX6r1aQWKrthIzzGUsMUnH5X4_klJ2b30nQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TPUPEHqExrRf-k7nI8VAkc5Xh__SFDyPuQ6U_xuD3CJ1Lq21ZFCKX6r1aQWKrthIzzGUsMUnH5X4_klJ2b30nQ== new file mode 100644 index 0000000..05a8524 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TPUPEHqExrRf-k7nI8VAkc5Xh__SFDyPuQ6U_xuD3CJ1Lq21ZFCKX6r1aQWKrthIzzGUsMUnH5X4_klJ2b30nQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TYHgWqOk6tBZcvNLSN64hweDKljtLIBRMX6rGoNpKTQ8KSw4Gv79UibJMCP5U3DN6ndjZh6AjEM7h9p-04Dujg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TYHgWqOk6tBZcvNLSN64hweDKljtLIBRMX6rGoNpKTQ8KSw4Gv79UibJMCP5U3DN6ndjZh6AjEM7h9p-04Dujg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TYHgWqOk6tBZcvNLSN64hweDKljtLIBRMX6rGoNpKTQ8KSw4Gv79UibJMCP5U3DN6ndjZh6AjEM7h9p-04Dujg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TdCvWcQYagitGe55Hkw5kz4uhbi633JQOZrub4W1A9uqX2Yun8SGmCWY1cHn2i-ynw8SLKTaTnAf2-KYsnTAmQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TdCvWcQYagitGe55Hkw5kz4uhbi633JQOZrub4W1A9uqX2Yun8SGmCWY1cHn2i-ynw8SLKTaTnAf2-KYsnTAmQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TdCvWcQYagitGe55Hkw5kz4uhbi633JQOZrub4W1A9uqX2Yun8SGmCWY1cHn2i-ynw8SLKTaTnAf2-KYsnTAmQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ted0Q6AlBJb8NyHnMnZlrE1qB6yv6BoEgPE94wtcHbn_m08SAv2OpRN3HUsz8Tsej4QesnWl2WRLvoj-CcslJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ted0Q6AlBJb8NyHnMnZlrE1qB6yv6BoEgPE94wtcHbn_m08SAv2OpRN3HUsz8Tsej4QesnWl2WRLvoj-CcslJg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ted0Q6AlBJb8NyHnMnZlrE1qB6yv6BoEgPE94wtcHbn_m08SAv2OpRN3HUsz8Tsej4QesnWl2WRLvoj-CcslJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ThQz8ovlR6MDDUTRHX8C_U1rQDardT9-e9puHO3AtOdEkAJXLdVXO0qXA-XqpHv5PRXhMCcjKelMUe0xpFPSNg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ThQz8ovlR6MDDUTRHX8C_U1rQDardT9-e9puHO3AtOdEkAJXLdVXO0qXA-XqpHv5PRXhMCcjKelMUe0xpFPSNg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ThQz8ovlR6MDDUTRHX8C_U1rQDardT9-e9puHO3AtOdEkAJXLdVXO0qXA-XqpHv5PRXhMCcjKelMUe0xpFPSNg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Tjy-38EISDEZVgprMCpwzpyxqkHMX33Zvgc0Cgyg486EBffM0Bi9P-LBs7NDx-XIFwqHFmGOEwPMlnOQbMcDCg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Tjy-38EISDEZVgprMCpwzpyxqkHMX33Zvgc0Cgyg486EBffM0Bi9P-LBs7NDx-XIFwqHFmGOEwPMlnOQbMcDCg== new file mode 100644 index 0000000..5995b58 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Tjy-38EISDEZVgprMCpwzpyxqkHMX33Zvgc0Cgyg486EBffM0Bi9P-LBs7NDx-XIFwqHFmGOEwPMlnOQbMcDCg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TlaSQAb-WI-ckvWp-m_q1keMl9JssshrSYq4kjyZJ2N0T0VPBrrTQamVCI_Se_q1Gk7OAkdbdXaEmOZ85jissg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TlaSQAb-WI-ckvWp-m_q1keMl9JssshrSYq4kjyZJ2N0T0VPBrrTQamVCI_Se_q1Gk7OAkdbdXaEmOZ85jissg== new file mode 100644 index 0000000..9393908 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TlaSQAb-WI-ckvWp-m_q1keMl9JssshrSYq4kjyZJ2N0T0VPBrrTQamVCI_Se_q1Gk7OAkdbdXaEmOZ85jissg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TnkR69jd0kexpYR9AwdshVUaXPXaR6O0P_u4s_Cno6wuD109AJHRCGmngCcMTc1wZHBq8AGl80Zard4-yTkOhw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TnkR69jd0kexpYR9AwdshVUaXPXaR6O0P_u4s_Cno6wuD109AJHRCGmngCcMTc1wZHBq8AGl80Zard4-yTkOhw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TnkR69jd0kexpYR9AwdshVUaXPXaR6O0P_u4s_Cno6wuD109AJHRCGmngCcMTc1wZHBq8AGl80Zard4-yTkOhw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ts6qU5ejDdWqjTt3vKnT0e5QSaS7RCRW2DoUCxgH6V4QT1alvDWmYT2FWoJ1JA6M_Av2mUJ3yj7_VYseXzWyuQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ts6qU5ejDdWqjTt3vKnT0e5QSaS7RCRW2DoUCxgH6V4QT1alvDWmYT2FWoJ1JA6M_Av2mUJ3yj7_VYseXzWyuQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ts6qU5ejDdWqjTt3vKnT0e5QSaS7RCRW2DoUCxgH6V4QT1alvDWmYT2FWoJ1JA6M_Av2mUJ3yj7_VYseXzWyuQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TydhGwWgGA-QrM65-iLTTi4dGIhD9lb4ZVvOIs3UFy8N1QfDsnQmkEjelpq7op3s5cmkmdYys3hZStx2Nl1Ruw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TydhGwWgGA-QrM65-iLTTi4dGIhD9lb4ZVvOIs3UFy8N1QfDsnQmkEjelpq7op3s5cmkmdYys3hZStx2Nl1Ruw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~TydhGwWgGA-QrM65-iLTTi4dGIhD9lb4ZVvOIs3UFy8N1QfDsnQmkEjelpq7op3s5cmkmdYys3hZStx2Nl1Ruw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~U4AqNrEl0jc5D4zGi50v9gl5YLMFRB8I5h97XAV2iv5JGLTBK-HnoH2jqqnQb16npeK6bOI7WJ_mRdrvqHLJLQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~U4AqNrEl0jc5D4zGi50v9gl5YLMFRB8I5h97XAV2iv5JGLTBK-HnoH2jqqnQb16npeK6bOI7WJ_mRdrvqHLJLQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~U4AqNrEl0jc5D4zGi50v9gl5YLMFRB8I5h97XAV2iv5JGLTBK-HnoH2jqqnQb16npeK6bOI7WJ_mRdrvqHLJLQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~U9q1FpnPDW8ar2RNQhfW7f-6wcMyOXpOA8-DPo0uYKUcJ-TVLJ4v-2tHYLb-5M0BrHhEQjXk0wMhBUCrxqJZ_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~U9q1FpnPDW8ar2RNQhfW7f-6wcMyOXpOA8-DPo0uYKUcJ-TVLJ4v-2tHYLb-5M0BrHhEQjXk0wMhBUCrxqJZ_w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~U9q1FpnPDW8ar2RNQhfW7f-6wcMyOXpOA8-DPo0uYKUcJ-TVLJ4v-2tHYLb-5M0BrHhEQjXk0wMhBUCrxqJZ_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UGLJ7Ue1iQFDiOdYJOGpBXC3o_QwbUy1e5VXMNMzCBeL4jJs8RSTHyMAIfoZLxu1L8oiwQysEzxc5PLc0VvJkg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UGLJ7Ue1iQFDiOdYJOGpBXC3o_QwbUy1e5VXMNMzCBeL4jJs8RSTHyMAIfoZLxu1L8oiwQysEzxc5PLc0VvJkg== new file mode 100644 index 0000000..f2fd589 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UGLJ7Ue1iQFDiOdYJOGpBXC3o_QwbUy1e5VXMNMzCBeL4jJs8RSTHyMAIfoZLxu1L8oiwQysEzxc5PLc0VvJkg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UPyYsd5Xz61tFgkg9TYbIqz6OrZm68xQsg2Cn0q3RNpyo6RMetUH5hoJCRN6bB1MusGhTgI0TFYKeR0oObmXxw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UPyYsd5Xz61tFgkg9TYbIqz6OrZm68xQsg2Cn0q3RNpyo6RMetUH5hoJCRN6bB1MusGhTgI0TFYKeR0oObmXxw== new file mode 100644 index 0000000..4ab74fd Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UPyYsd5Xz61tFgkg9TYbIqz6OrZm68xQsg2Cn0q3RNpyo6RMetUH5hoJCRN6bB1MusGhTgI0TFYKeR0oObmXxw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UR_E6q04vP5a8sc--nfzJgJ6qXhORY2ugPyQvaWVMopKexcxkOyORuCl-e_8ItVpsEU375-Z_a1Gyla6L1gy6Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UR_E6q04vP5a8sc--nfzJgJ6qXhORY2ugPyQvaWVMopKexcxkOyORuCl-e_8ItVpsEU375-Z_a1Gyla6L1gy6Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UR_E6q04vP5a8sc--nfzJgJ6qXhORY2ugPyQvaWVMopKexcxkOyORuCl-e_8ItVpsEU375-Z_a1Gyla6L1gy6Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UR_cVo5ZYDxNU94BPi1kM-QWTZ79aWy0AEyzTlRv3YTCiiWk_LqU5cQ7kifYs2S6LMsD8QtyZVVN_RzMCKvCxg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UR_cVo5ZYDxNU94BPi1kM-QWTZ79aWy0AEyzTlRv3YTCiiWk_LqU5cQ7kifYs2S6LMsD8QtyZVVN_RzMCKvCxg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UR_cVo5ZYDxNU94BPi1kM-QWTZ79aWy0AEyzTlRv3YTCiiWk_LqU5cQ7kifYs2S6LMsD8QtyZVVN_RzMCKvCxg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UoNIl632dHsRY0YxxNMAOzkKUHpGklojVj752R9FUm_i7KEaEWDODB8JAwjtIacL9c7CZc3jLD6lf3wdM1CVKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UoNIl632dHsRY0YxxNMAOzkKUHpGklojVj752R9FUm_i7KEaEWDODB8JAwjtIacL9c7CZc3jLD6lf3wdM1CVKw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UoNIl632dHsRY0YxxNMAOzkKUHpGklojVj752R9FUm_i7KEaEWDODB8JAwjtIacL9c7CZc3jLD6lf3wdM1CVKw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UsyvqYSgQTiEVeN8QWtaPlbeg-oDSSDM0e5eTmMODfRzgM9J2gkotNXIrUqgQVO0nDmPAsPNt3ru-OJywL1igA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UsyvqYSgQTiEVeN8QWtaPlbeg-oDSSDM0e5eTmMODfRzgM9J2gkotNXIrUqgQVO0nDmPAsPNt3ru-OJywL1igA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~UsyvqYSgQTiEVeN8QWtaPlbeg-oDSSDM0e5eTmMODfRzgM9J2gkotNXIrUqgQVO0nDmPAsPNt3ru-OJywL1igA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~V7pUfqBijAKR_9_SgHA6fKDiTl6Y1ymxPTlhODlXBa9lUn6RA3amYFae5VqD5JWRhqK0wHgqzUbT5rynUFA_HQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~V7pUfqBijAKR_9_SgHA6fKDiTl6Y1ymxPTlhODlXBa9lUn6RA3amYFae5VqD5JWRhqK0wHgqzUbT5rynUFA_HQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~V7pUfqBijAKR_9_SgHA6fKDiTl6Y1ymxPTlhODlXBa9lUn6RA3amYFae5VqD5JWRhqK0wHgqzUbT5rynUFA_HQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~V8kDt9E9Us9D2Ws1X1VsSKH2vhLWaMWMjF02mb4YnjjMBbHFugPxKOfvRqz559ANtdHtEVRwUgzAegREcdW7xg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~V8kDt9E9Us9D2Ws1X1VsSKH2vhLWaMWMjF02mb4YnjjMBbHFugPxKOfvRqz559ANtdHtEVRwUgzAegREcdW7xg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~V8kDt9E9Us9D2Ws1X1VsSKH2vhLWaMWMjF02mb4YnjjMBbHFugPxKOfvRqz559ANtdHtEVRwUgzAegREcdW7xg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VBbBYE1U4qavd_YoRvJEoOBhpsifmMjckaVoCxTRgV4GY1h-fH_lFMaJf5PYU9Aa6R1tW1GrshSoStaLCZSvZw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VBbBYE1U4qavd_YoRvJEoOBhpsifmMjckaVoCxTRgV4GY1h-fH_lFMaJf5PYU9Aa6R1tW1GrshSoStaLCZSvZw== new file mode 100644 index 0000000..47aa5a0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VBbBYE1U4qavd_YoRvJEoOBhpsifmMjckaVoCxTRgV4GY1h-fH_lFMaJf5PYU9Aa6R1tW1GrshSoStaLCZSvZw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VDQqYv7mQaJ4dj20_UwxNajJOpR6UVKhOOKRCHuexxkLon0l210b_-Z89dIEQ6y3PTqY47Zl3XGQauYIonhDdg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VDQqYv7mQaJ4dj20_UwxNajJOpR6UVKhOOKRCHuexxkLon0l210b_-Z89dIEQ6y3PTqY47Zl3XGQauYIonhDdg== new file mode 100644 index 0000000..745411b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VDQqYv7mQaJ4dj20_UwxNajJOpR6UVKhOOKRCHuexxkLon0l210b_-Z89dIEQ6y3PTqY47Zl3XGQauYIonhDdg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VEe6hfq2hSPhBaOVPQFjNSBf2u2rRwazGqPuUmhQOqMKYxSyK51ndJqPr4222CNuk-CxMiYLB_dfhtL79Wfr1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VEe6hfq2hSPhBaOVPQFjNSBf2u2rRwazGqPuUmhQOqMKYxSyK51ndJqPr4222CNuk-CxMiYLB_dfhtL79Wfr1g== new file mode 100644 index 0000000..9f07e76 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VEe6hfq2hSPhBaOVPQFjNSBf2u2rRwazGqPuUmhQOqMKYxSyK51ndJqPr4222CNuk-CxMiYLB_dfhtL79Wfr1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VFhxl6AoUxjaC-2jdF7S-2smeDCh8m-1eEf0EZBxdbY_KVBc7e4IqWlVHbATpOhOMkgin1l3C_zd2tHSRssBlA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VFhxl6AoUxjaC-2jdF7S-2smeDCh8m-1eEf0EZBxdbY_KVBc7e4IqWlVHbATpOhOMkgin1l3C_zd2tHSRssBlA== new file mode 100644 index 0000000..a5d46e7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VFhxl6AoUxjaC-2jdF7S-2smeDCh8m-1eEf0EZBxdbY_KVBc7e4IqWlVHbATpOhOMkgin1l3C_zd2tHSRssBlA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VGrPfawfdMfhrDwfBem5M1bI9YZshzYzxf1k-y9ET0f4PyDz8B6vNPX7gDIo-dLMkKvWhZNhu92Ywa4h8cdn5Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VGrPfawfdMfhrDwfBem5M1bI9YZshzYzxf1k-y9ET0f4PyDz8B6vNPX7gDIo-dLMkKvWhZNhu92Ywa4h8cdn5Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VGrPfawfdMfhrDwfBem5M1bI9YZshzYzxf1k-y9ET0f4PyDz8B6vNPX7gDIo-dLMkKvWhZNhu92Ywa4h8cdn5Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VHX0ZQuzvPyelnOD-qMxrfxYgHfL7ZM1YPahZJ_3yU0v0k2zYCQNpSb7Rf5vzpAqjpTvpYkqtnOjKUOs2ss3SA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VHX0ZQuzvPyelnOD-qMxrfxYgHfL7ZM1YPahZJ_3yU0v0k2zYCQNpSb7Rf5vzpAqjpTvpYkqtnOjKUOs2ss3SA== new file mode 100644 index 0000000..37b2da9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VHX0ZQuzvPyelnOD-qMxrfxYgHfL7ZM1YPahZJ_3yU0v0k2zYCQNpSb7Rf5vzpAqjpTvpYkqtnOjKUOs2ss3SA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VJKxStRAKC8KziWZYY96GdrhJJxOd8wkrhijO9HTqJw2MPJLval0IctN0xC_OkzyjJKz4DJCq1p0XCIvWGoo3w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VJKxStRAKC8KziWZYY96GdrhJJxOd8wkrhijO9HTqJw2MPJLval0IctN0xC_OkzyjJKz4DJCq1p0XCIvWGoo3w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VJKxStRAKC8KziWZYY96GdrhJJxOd8wkrhijO9HTqJw2MPJLval0IctN0xC_OkzyjJKz4DJCq1p0XCIvWGoo3w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VKnpvJDCOfFNVfTM4hHPaqyKlXyiA7O2njTBZNeTjbrLBk-ZMjK20QWJ9qwPdpC6VtSY666sF45UnurQe--FFA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VKnpvJDCOfFNVfTM4hHPaqyKlXyiA7O2njTBZNeTjbrLBk-ZMjK20QWJ9qwPdpC6VtSY666sF45UnurQe--FFA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VKnpvJDCOfFNVfTM4hHPaqyKlXyiA7O2njTBZNeTjbrLBk-ZMjK20QWJ9qwPdpC6VtSY666sF45UnurQe--FFA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VMzlPD4wDE20xFRw_ddI49BkfoOPSePy1TKTZqF29_ERn9-ZTc_8H1_X5Wl-hk0Teu4rkKlgF8MpKhVkkhKATQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VMzlPD4wDE20xFRw_ddI49BkfoOPSePy1TKTZqF29_ERn9-ZTc_8H1_X5Wl-hk0Teu4rkKlgF8MpKhVkkhKATQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VMzlPD4wDE20xFRw_ddI49BkfoOPSePy1TKTZqF29_ERn9-ZTc_8H1_X5Wl-hk0Teu4rkKlgF8MpKhVkkhKATQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VVFTn6qG3e_2q9LYokguUfjkNgeTrVDQdgrU7ftnyL6zdCbEjV_XGhn__fmbBabUFeTB-ZUsmkI2D7KLqeqzgg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VVFTn6qG3e_2q9LYokguUfjkNgeTrVDQdgrU7ftnyL6zdCbEjV_XGhn__fmbBabUFeTB-ZUsmkI2D7KLqeqzgg== new file mode 100644 index 0000000..260cf2f Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VVFTn6qG3e_2q9LYokguUfjkNgeTrVDQdgrU7ftnyL6zdCbEjV_XGhn__fmbBabUFeTB-ZUsmkI2D7KLqeqzgg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VejvP8qK3gOJTyqrm0unG401NVq_OUmqeJdajQFUIHpaCs9HhEt8VycflbT9EqIHBv4mzHcBcly72MLhVF-MTQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VejvP8qK3gOJTyqrm0unG401NVq_OUmqeJdajQFUIHpaCs9HhEt8VycflbT9EqIHBv4mzHcBcly72MLhVF-MTQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VejvP8qK3gOJTyqrm0unG401NVq_OUmqeJdajQFUIHpaCs9HhEt8VycflbT9EqIHBv4mzHcBcly72MLhVF-MTQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VmSRvCpqRgK2RrH9o1Zo3HrADaXx9_qUt321Z-qWOOynYzhhkH-cecE1I8_mrUgpj4BJoQxe03dw2i3XxZ_vyg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VmSRvCpqRgK2RrH9o1Zo3HrADaXx9_qUt321Z-qWOOynYzhhkH-cecE1I8_mrUgpj4BJoQxe03dw2i3XxZ_vyg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VmSRvCpqRgK2RrH9o1Zo3HrADaXx9_qUt321Z-qWOOynYzhhkH-cecE1I8_mrUgpj4BJoQxe03dw2i3XxZ_vyg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Vp1a4NSAC0OouUYnmEPbzEkDPXq9NXj7c4BSkUxAGw9WxIaIC2ijQOO2d124ZfYTAvEjBQ20mgBUzXQvZePClA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Vp1a4NSAC0OouUYnmEPbzEkDPXq9NXj7c4BSkUxAGw9WxIaIC2ijQOO2d124ZfYTAvEjBQ20mgBUzXQvZePClA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Vp1a4NSAC0OouUYnmEPbzEkDPXq9NXj7c4BSkUxAGw9WxIaIC2ijQOO2d124ZfYTAvEjBQ20mgBUzXQvZePClA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Vq06DLiTsCKOlgUibgHwXMeUI1uNBGSTXmcYe1yI8S-VlUiCzl-rzwQ1exn3GNXoc9m9I5fND7eifQdd5QjgkQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Vq06DLiTsCKOlgUibgHwXMeUI1uNBGSTXmcYe1yI8S-VlUiCzl-rzwQ1exn3GNXoc9m9I5fND7eifQdd5QjgkQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Vq06DLiTsCKOlgUibgHwXMeUI1uNBGSTXmcYe1yI8S-VlUiCzl-rzwQ1exn3GNXoc9m9I5fND7eifQdd5QjgkQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VrHCFUmsj8S_IjUKoR8RsfggMQ-8-9Zu95AX_1gCp6aADJSj_aYez9DPOFp75yvjvWTlm9u99dZyBJRm5Qd1Og== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VrHCFUmsj8S_IjUKoR8RsfggMQ-8-9Zu95AX_1gCp6aADJSj_aYez9DPOFp75yvjvWTlm9u99dZyBJRm5Qd1Og== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VrHCFUmsj8S_IjUKoR8RsfggMQ-8-9Zu95AX_1gCp6aADJSj_aYez9DPOFp75yvjvWTlm9u99dZyBJRm5Qd1Og== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VsOnB9D5kb08jidcu-N4a5_UgfVERhWuCTXrTIfDkcOfp5u3sRIREIHn_ptAm7rR3bmJYfEPcAu8Aoi-9_pnJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VsOnB9D5kb08jidcu-N4a5_UgfVERhWuCTXrTIfDkcOfp5u3sRIREIHn_ptAm7rR3bmJYfEPcAu8Aoi-9_pnJg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VsOnB9D5kb08jidcu-N4a5_UgfVERhWuCTXrTIfDkcOfp5u3sRIREIHn_ptAm7rR3bmJYfEPcAu8Aoi-9_pnJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Vu6dTqkzmm4IGojx5u8LeYXn8gWPoXkhgqQ11tujjeVFJipSZATe6V-bkx2YTIkPXYiRWBu3Z1-9CU8haaDdLw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Vu6dTqkzmm4IGojx5u8LeYXn8gWPoXkhgqQ11tujjeVFJipSZATe6V-bkx2YTIkPXYiRWBu3Z1-9CU8haaDdLw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Vu6dTqkzmm4IGojx5u8LeYXn8gWPoXkhgqQ11tujjeVFJipSZATe6V-bkx2YTIkPXYiRWBu3Z1-9CU8haaDdLw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VuVIkyFWlknrY0UoZp0m1Fepn-6oMBBItTMhjpEpxYvf8NBIj3BOYt0RC64lP_frikdpIhyas7K46Pz_IhZKWA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VuVIkyFWlknrY0UoZp0m1Fepn-6oMBBItTMhjpEpxYvf8NBIj3BOYt0RC64lP_frikdpIhyas7K46Pz_IhZKWA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VuVIkyFWlknrY0UoZp0m1Fepn-6oMBBItTMhjpEpxYvf8NBIj3BOYt0RC64lP_frikdpIhyas7K46Pz_IhZKWA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Vvu2M2XQah39par4j93ZjCEIIGq45jLaXAEDm5AgjhiVmey-2pwpfeYjnzqEBjs35AFRj9SvUONIFEFddLhnyg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Vvu2M2XQah39par4j93ZjCEIIGq45jLaXAEDm5AgjhiVmey-2pwpfeYjnzqEBjs35AFRj9SvUONIFEFddLhnyg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Vvu2M2XQah39par4j93ZjCEIIGq45jLaXAEDm5AgjhiVmey-2pwpfeYjnzqEBjs35AFRj9SvUONIFEFddLhnyg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VyzI_TdociIagYi9Eu1-Nd3lzVmdXqFAfSur7aJGacA2TIsjPKNPATRjrDKI1y4zHJejXJiFi0PAscwiMhv19Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VyzI_TdociIagYi9Eu1-Nd3lzVmdXqFAfSur7aJGacA2TIsjPKNPATRjrDKI1y4zHJejXJiFi0PAscwiMhv19Q== new file mode 100644 index 0000000..279a27a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~VyzI_TdociIagYi9Eu1-Nd3lzVmdXqFAfSur7aJGacA2TIsjPKNPATRjrDKI1y4zHJejXJiFi0PAscwiMhv19Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~W5-qLoWIx3PgvlStqtmFk8Dd2n9gB2NMbTYWJslzLxpfdvDN75ZZFUyfGCKxU9mNmJM0iU2xL_cMPOpd4CnDHw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~W5-qLoWIx3PgvlStqtmFk8Dd2n9gB2NMbTYWJslzLxpfdvDN75ZZFUyfGCKxU9mNmJM0iU2xL_cMPOpd4CnDHw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~W5-qLoWIx3PgvlStqtmFk8Dd2n9gB2NMbTYWJslzLxpfdvDN75ZZFUyfGCKxU9mNmJM0iU2xL_cMPOpd4CnDHw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~W69lSkJJ7vPdWDIEZhoULSagUJLO8AIQDUMY5fTOixL-bLEAWfAO2Xlf7x5Fni5aJO4DfAcsn6U1Cy_OzxHS0g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~W69lSkJJ7vPdWDIEZhoULSagUJLO8AIQDUMY5fTOixL-bLEAWfAO2Xlf7x5Fni5aJO4DfAcsn6U1Cy_OzxHS0g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~W69lSkJJ7vPdWDIEZhoULSagUJLO8AIQDUMY5fTOixL-bLEAWfAO2Xlf7x5Fni5aJO4DfAcsn6U1Cy_OzxHS0g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WBgDrCSmGW3IU2KXX21rjY1Hrh4qV-mrhW2_c_wQp7ZAe-p7fnhiJ3hQGjG16UD8FuR4sWdAqHko1LxFOF1Z_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WBgDrCSmGW3IU2KXX21rjY1Hrh4qV-mrhW2_c_wQp7ZAe-p7fnhiJ3hQGjG16UD8FuR4sWdAqHko1LxFOF1Z_A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WBgDrCSmGW3IU2KXX21rjY1Hrh4qV-mrhW2_c_wQp7ZAe-p7fnhiJ3hQGjG16UD8FuR4sWdAqHko1LxFOF1Z_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WHfMcTAaCJ2XQxauAPgzH8_mWDmppzDrcJwLHKXsbRGUlWifaXy8pNM7J_sXdu0VjLfG0ED4PZQDfu4Ez0z3Iw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WHfMcTAaCJ2XQxauAPgzH8_mWDmppzDrcJwLHKXsbRGUlWifaXy8pNM7J_sXdu0VjLfG0ED4PZQDfu4Ez0z3Iw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WHfMcTAaCJ2XQxauAPgzH8_mWDmppzDrcJwLHKXsbRGUlWifaXy8pNM7J_sXdu0VjLfG0ED4PZQDfu4Ez0z3Iw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WHk8o3LsbqYPhu0eVCR-Z_EEXsA6xQ0suvi2aCQtVHWPHLEUO4wsDLLyvbQT0C7eqlBJCkD4RTohXWXto1-PDQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WHk8o3LsbqYPhu0eVCR-Z_EEXsA6xQ0suvi2aCQtVHWPHLEUO4wsDLLyvbQT0C7eqlBJCkD4RTohXWXto1-PDQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WHk8o3LsbqYPhu0eVCR-Z_EEXsA6xQ0suvi2aCQtVHWPHLEUO4wsDLLyvbQT0C7eqlBJCkD4RTohXWXto1-PDQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WIzAPEfq-F338X52a_K18q5fZdt66RI2ojNeOAGEofbnzEeYTwRnHtHf3NCjF3MFzxEgOrTRaMOpD6Ufq3aLYw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WIzAPEfq-F338X52a_K18q5fZdt66RI2ojNeOAGEofbnzEeYTwRnHtHf3NCjF3MFzxEgOrTRaMOpD6Ufq3aLYw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WIzAPEfq-F338X52a_K18q5fZdt66RI2ojNeOAGEofbnzEeYTwRnHtHf3NCjF3MFzxEgOrTRaMOpD6Ufq3aLYw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WKlrrU72nk-3HM3XKsNOqjpvxc11QBDSR8Gr3qSOX_JZG7qqfNw-Xpyv8vo-uXKAXZN_vYNrAsDEYsayeKZGRA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WKlrrU72nk-3HM3XKsNOqjpvxc11QBDSR8Gr3qSOX_JZG7qqfNw-Xpyv8vo-uXKAXZN_vYNrAsDEYsayeKZGRA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WKlrrU72nk-3HM3XKsNOqjpvxc11QBDSR8Gr3qSOX_JZG7qqfNw-Xpyv8vo-uXKAXZN_vYNrAsDEYsayeKZGRA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WLyCZWnBX9Yz5L9_XcBLgBdyuK3UZAEI6UwxJXW0MOsrymuZsFkRABusYhDuZzLiRg_vF3Ym5zlPuXDi4cWaNg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WLyCZWnBX9Yz5L9_XcBLgBdyuK3UZAEI6UwxJXW0MOsrymuZsFkRABusYhDuZzLiRg_vF3Ym5zlPuXDi4cWaNg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WLyCZWnBX9Yz5L9_XcBLgBdyuK3UZAEI6UwxJXW0MOsrymuZsFkRABusYhDuZzLiRg_vF3Ym5zlPuXDi4cWaNg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WM2-Hkde3oQSAtllyr056jW1Y186WOKOX7oTLAIrdBy01lQXsrbh8Sy-jewFmuAnMNsWzqIvwp5g-4As55pwog== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WM2-Hkde3oQSAtllyr056jW1Y186WOKOX7oTLAIrdBy01lQXsrbh8Sy-jewFmuAnMNsWzqIvwp5g-4As55pwog== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WM2-Hkde3oQSAtllyr056jW1Y186WOKOX7oTLAIrdBy01lQXsrbh8Sy-jewFmuAnMNsWzqIvwp5g-4As55pwog== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WNEGX4MvSc0GOHTNU-67reLiMyIrcAGP1WAHFeeUpe3omd9oCUnaS0hAC2Gh_MJXE-_dvFSHH_BW-340yfdr_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WNEGX4MvSc0GOHTNU-67reLiMyIrcAGP1WAHFeeUpe3omd9oCUnaS0hAC2Gh_MJXE-_dvFSHH_BW-340yfdr_w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WNEGX4MvSc0GOHTNU-67reLiMyIrcAGP1WAHFeeUpe3omd9oCUnaS0hAC2Gh_MJXE-_dvFSHH_BW-340yfdr_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WgEApWmfs--y5yz5CggfWAfu5eQlwFz9jxvV9bRbX1FAGy2HCdLK7PxkqKa7_QSzjS7oF6U_bMazh_q1DOKC3g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WgEApWmfs--y5yz5CggfWAfu5eQlwFz9jxvV9bRbX1FAGy2HCdLK7PxkqKa7_QSzjS7oF6U_bMazh_q1DOKC3g== new file mode 100644 index 0000000..9805a46 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WgEApWmfs--y5yz5CggfWAfu5eQlwFz9jxvV9bRbX1FAGy2HCdLK7PxkqKa7_QSzjS7oF6U_bMazh_q1DOKC3g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WlcXBFGRkwO7FWMI7M5YhecUi4xFjQtCfFXlB1v6UhFhwGE_CI0tSfx9ZUloQY4M_gvT1JY7SQf1c3fUMA64gg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WlcXBFGRkwO7FWMI7M5YhecUi4xFjQtCfFXlB1v6UhFhwGE_CI0tSfx9ZUloQY4M_gvT1JY7SQf1c3fUMA64gg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WlcXBFGRkwO7FWMI7M5YhecUi4xFjQtCfFXlB1v6UhFhwGE_CI0tSfx9ZUloQY4M_gvT1JY7SQf1c3fUMA64gg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WlhAoq9jiZN1iQj1EKYHwZSOTtsOxcBFfsEeD5-fRpvIg6hvD-JoE6yOr8eII-khoUMnEOckAQ2NkbmZCIVHug== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WlhAoq9jiZN1iQj1EKYHwZSOTtsOxcBFfsEeD5-fRpvIg6hvD-JoE6yOr8eII-khoUMnEOckAQ2NkbmZCIVHug== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WlhAoq9jiZN1iQj1EKYHwZSOTtsOxcBFfsEeD5-fRpvIg6hvD-JoE6yOr8eII-khoUMnEOckAQ2NkbmZCIVHug== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WoP8DWqo_h2uZ6R4BFoQb-f_f7UEbA1uJse03CTqKvx1kRLXG5k2I5JIji_FuiGcBEI6oSz5gctZm7EIOUU_5g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WoP8DWqo_h2uZ6R4BFoQb-f_f7UEbA1uJse03CTqKvx1kRLXG5k2I5JIji_FuiGcBEI6oSz5gctZm7EIOUU_5g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WoP8DWqo_h2uZ6R4BFoQb-f_f7UEbA1uJse03CTqKvx1kRLXG5k2I5JIji_FuiGcBEI6oSz5gctZm7EIOUU_5g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WsCcYp4DoSiF6p2OA4PpMcGb1ULJx2qSvko-jz5o-PVByacvkZcqjsD42ZlvIJ5Nh24IXMaZeWKhWQFqZfDO2w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WsCcYp4DoSiF6p2OA4PpMcGb1ULJx2qSvko-jz5o-PVByacvkZcqjsD42ZlvIJ5Nh24IXMaZeWKhWQFqZfDO2w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WsCcYp4DoSiF6p2OA4PpMcGb1ULJx2qSvko-jz5o-PVByacvkZcqjsD42ZlvIJ5Nh24IXMaZeWKhWQFqZfDO2w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WwL8pVB9HjyPkxV6vU4FzlGbqeKyd4CwAE-CXITlyDwT7GrMRWICin8mzSmQNLPQ0VuPgfIGdCJVpAl9xzxt0Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WwL8pVB9HjyPkxV6vU4FzlGbqeKyd4CwAE-CXITlyDwT7GrMRWICin8mzSmQNLPQ0VuPgfIGdCJVpAl9xzxt0Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~WwL8pVB9HjyPkxV6vU4FzlGbqeKyd4CwAE-CXITlyDwT7GrMRWICin8mzSmQNLPQ0VuPgfIGdCJVpAl9xzxt0Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~X02PscwfAZEX6LOrDoGllVVsWe8koNHeqlPZXhjIaWSxWnjFXwQl4uF81dW65uBhktVYI6gc-ltwnk-14n7cZg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~X02PscwfAZEX6LOrDoGllVVsWe8koNHeqlPZXhjIaWSxWnjFXwQl4uF81dW65uBhktVYI6gc-ltwnk-14n7cZg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~X02PscwfAZEX6LOrDoGllVVsWe8koNHeqlPZXhjIaWSxWnjFXwQl4uF81dW65uBhktVYI6gc-ltwnk-14n7cZg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~X1N2JarRx67VreL4TZqTBzkEGS7VxsEvUbBYu38vETynnLKDrrJ9uMeb3Q_XWhSKQgQvepBl-WHlKwZBe3k7RA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~X1N2JarRx67VreL4TZqTBzkEGS7VxsEvUbBYu38vETynnLKDrrJ9uMeb3Q_XWhSKQgQvepBl-WHlKwZBe3k7RA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~X1N2JarRx67VreL4TZqTBzkEGS7VxsEvUbBYu38vETynnLKDrrJ9uMeb3Q_XWhSKQgQvepBl-WHlKwZBe3k7RA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~X5chPA6u94DaFSZx4-zonfcHygoxBQBXTHNtS_fvgqPeDmlBEBwXYrKASKETznOjR5X78VfEEvTvfuYE8PGXnQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~X5chPA6u94DaFSZx4-zonfcHygoxBQBXTHNtS_fvgqPeDmlBEBwXYrKASKETznOjR5X78VfEEvTvfuYE8PGXnQ== new file mode 100644 index 0000000..e945583 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~X5chPA6u94DaFSZx4-zonfcHygoxBQBXTHNtS_fvgqPeDmlBEBwXYrKASKETznOjR5X78VfEEvTvfuYE8PGXnQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~X9IbUsIJYuVhDi8OllREWWA8Naei4BEocPJhmAQRoM51VVVm_NeXyBoA4EtnEJwx6VmoHw9oSiZJCBLAVzSzlw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~X9IbUsIJYuVhDi8OllREWWA8Naei4BEocPJhmAQRoM51VVVm_NeXyBoA4EtnEJwx6VmoHw9oSiZJCBLAVzSzlw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~X9IbUsIJYuVhDi8OllREWWA8Naei4BEocPJhmAQRoM51VVVm_NeXyBoA4EtnEJwx6VmoHw9oSiZJCBLAVzSzlw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XAATZUHciu8TNJn1tcmijDgZ2QqERqI2bvM9L-imkYiIaQPiFd3mJtZY5gd8nZbBGSyE1FMiixMN--7teXX61w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XAATZUHciu8TNJn1tcmijDgZ2QqERqI2bvM9L-imkYiIaQPiFd3mJtZY5gd8nZbBGSyE1FMiixMN--7teXX61w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XAATZUHciu8TNJn1tcmijDgZ2QqERqI2bvM9L-imkYiIaQPiFd3mJtZY5gd8nZbBGSyE1FMiixMN--7teXX61w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XCpNmsUFW9ITN9YGlY0yMKb48InroeYJ6Mw0iHep_2Hs5xqumaSIF1V19HIpdKRRcEyXMPuzx-44pFHcnsO3Zw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XCpNmsUFW9ITN9YGlY0yMKb48InroeYJ6Mw0iHep_2Hs5xqumaSIF1V19HIpdKRRcEyXMPuzx-44pFHcnsO3Zw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XCpNmsUFW9ITN9YGlY0yMKb48InroeYJ6Mw0iHep_2Hs5xqumaSIF1V19HIpdKRRcEyXMPuzx-44pFHcnsO3Zw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XIfU7MhGcKaGmb7RZn23BHHq3WOaOCUsBj3_u9AEEkWRbBOEv5hN9rwwwRJ0e57Bz6-2rbNzuNuwlPekbQWNwA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XIfU7MhGcKaGmb7RZn23BHHq3WOaOCUsBj3_u9AEEkWRbBOEv5hN9rwwwRJ0e57Bz6-2rbNzuNuwlPekbQWNwA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XIfU7MhGcKaGmb7RZn23BHHq3WOaOCUsBj3_u9AEEkWRbBOEv5hN9rwwwRJ0e57Bz6-2rbNzuNuwlPekbQWNwA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XLmTp3d0RE5vfSvvjilllv4obsg6JSWHSlDU6gugIj26XWHKI8zupQ8tvnUUuOpZGTx71x3jzH-77oTFgIF8Cw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XLmTp3d0RE5vfSvvjilllv4obsg6JSWHSlDU6gugIj26XWHKI8zupQ8tvnUUuOpZGTx71x3jzH-77oTFgIF8Cw== new file mode 100644 index 0000000..61bc385 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XLmTp3d0RE5vfSvvjilllv4obsg6JSWHSlDU6gugIj26XWHKI8zupQ8tvnUUuOpZGTx71x3jzH-77oTFgIF8Cw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XOc8u-UIbZszge756i9DPaBVtnjvjr5zjxQxj-pu3Tgw_gawpu3s5lTEcqIw5WRGyx9rSueZa7uh4fdKZM8iSw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XOc8u-UIbZszge756i9DPaBVtnjvjr5zjxQxj-pu3Tgw_gawpu3s5lTEcqIw5WRGyx9rSueZa7uh4fdKZM8iSw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XOc8u-UIbZszge756i9DPaBVtnjvjr5zjxQxj-pu3Tgw_gawpu3s5lTEcqIw5WRGyx9rSueZa7uh4fdKZM8iSw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XTgsUlXOzsnCRYZ-KAEb0Vav9r-_ihGT3ntweSFt1nFw7RmvnqaCAT6KO6Cl1xi7CVTCgsp85ENA9AA_YxMmzw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XTgsUlXOzsnCRYZ-KAEb0Vav9r-_ihGT3ntweSFt1nFw7RmvnqaCAT6KO6Cl1xi7CVTCgsp85ENA9AA_YxMmzw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XTgsUlXOzsnCRYZ-KAEb0Vav9r-_ihGT3ntweSFt1nFw7RmvnqaCAT6KO6Cl1xi7CVTCgsp85ENA9AA_YxMmzw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XX3x1eaKdyJ2Cm7u0CVmYCjGnDWR77jiXbIHJ0dzJTONZc75SHJEikNnPYQFOPOlmxaS_Kqn42L93KBRNOA1Qw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XX3x1eaKdyJ2Cm7u0CVmYCjGnDWR77jiXbIHJ0dzJTONZc75SHJEikNnPYQFOPOlmxaS_Kqn42L93KBRNOA1Qw== new file mode 100644 index 0000000..a9859b0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XX3x1eaKdyJ2Cm7u0CVmYCjGnDWR77jiXbIHJ0dzJTONZc75SHJEikNnPYQFOPOlmxaS_Kqn42L93KBRNOA1Qw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XbxPIcpTSM8aZGtXlFWnW1TRvI7Lwh5DHkg4YnmOenF24lGbj8d5Yz6vuYtfrWY5pw-iosM6rb28oeJ5fGV_hA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XbxPIcpTSM8aZGtXlFWnW1TRvI7Lwh5DHkg4YnmOenF24lGbj8d5Yz6vuYtfrWY5pw-iosM6rb28oeJ5fGV_hA== new file mode 100644 index 0000000..75e10b5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XbxPIcpTSM8aZGtXlFWnW1TRvI7Lwh5DHkg4YnmOenF24lGbj8d5Yz6vuYtfrWY5pw-iosM6rb28oeJ5fGV_hA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XhuIdCDjz2a7xZki_Krxx1XBLdAj3R5ulpjqSOY2lnjkIkcGcibdtG1mXPL8oEm7ne2Y0CMSGqTFFPYrFl_b7Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XhuIdCDjz2a7xZki_Krxx1XBLdAj3R5ulpjqSOY2lnjkIkcGcibdtG1mXPL8oEm7ne2Y0CMSGqTFFPYrFl_b7Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XhuIdCDjz2a7xZki_Krxx1XBLdAj3R5ulpjqSOY2lnjkIkcGcibdtG1mXPL8oEm7ne2Y0CMSGqTFFPYrFl_b7Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XiEL7WGOER1xXjir1z7ztoyivPeGMM27vf2_J6DxQbx6Oh9ZSlhI2I9sYSiylFQT7g7mELgcSw7XJ-eOr5wMrw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XiEL7WGOER1xXjir1z7ztoyivPeGMM27vf2_J6DxQbx6Oh9ZSlhI2I9sYSiylFQT7g7mELgcSw7XJ-eOr5wMrw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XiEL7WGOER1xXjir1z7ztoyivPeGMM27vf2_J6DxQbx6Oh9ZSlhI2I9sYSiylFQT7g7mELgcSw7XJ-eOr5wMrw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XiQm8cI5K9dYRG-1vGRqSjjysv_cMkhi-WzRTQabgVQgNVOieuaCnmEtIQHGdxXmaKVuJcXBy46ASCG-vi8Z4w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XiQm8cI5K9dYRG-1vGRqSjjysv_cMkhi-WzRTQabgVQgNVOieuaCnmEtIQHGdxXmaKVuJcXBy46ASCG-vi8Z4w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XiQm8cI5K9dYRG-1vGRqSjjysv_cMkhi-WzRTQabgVQgNVOieuaCnmEtIQHGdxXmaKVuJcXBy46ASCG-vi8Z4w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XnVUXJwSOUWe54oL2EzanEwkSnIUO-CDcsD3EmBM2GvplpQrc_wZgeB4gqwLGZ1TV0EJRLWSGc5bhNViGEwb2g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XnVUXJwSOUWe54oL2EzanEwkSnIUO-CDcsD3EmBM2GvplpQrc_wZgeB4gqwLGZ1TV0EJRLWSGc5bhNViGEwb2g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~XnVUXJwSOUWe54oL2EzanEwkSnIUO-CDcsD3EmBM2GvplpQrc_wZgeB4gqwLGZ1TV0EJRLWSGc5bhNViGEwb2g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Xzr0RRtFn7GX-ErOGZqlgOb2--KZX_pnfI8kvs9DTMa0TW7GtkBjg3nsdMhfaw3JlBK7B2r6Ut9dhjcMeG4sgA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Xzr0RRtFn7GX-ErOGZqlgOb2--KZX_pnfI8kvs9DTMa0TW7GtkBjg3nsdMhfaw3JlBK7B2r6Ut9dhjcMeG4sgA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Xzr0RRtFn7GX-ErOGZqlgOb2--KZX_pnfI8kvs9DTMa0TW7GtkBjg3nsdMhfaw3JlBK7B2r6Ut9dhjcMeG4sgA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y-CSWXC9Vld99qyN_2TwlEswp1jrZitfd7emKcJvBSDHBRwdAcmKPJXze4TmRpcWSaz_4npUr5vvA4IjO0FpnA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y-CSWXC9Vld99qyN_2TwlEswp1jrZitfd7emKcJvBSDHBRwdAcmKPJXze4TmRpcWSaz_4npUr5vvA4IjO0FpnA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y-CSWXC9Vld99qyN_2TwlEswp1jrZitfd7emKcJvBSDHBRwdAcmKPJXze4TmRpcWSaz_4npUr5vvA4IjO0FpnA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y0rpuSjqF9jasu7viA5C_C5FsULHbhRwJJaDS6qnBznIzirsb4u2JrgreefSAAemSIBGLBIUKwrXiIUeNbN5ZA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y0rpuSjqF9jasu7viA5C_C5FsULHbhRwJJaDS6qnBznIzirsb4u2JrgreefSAAemSIBGLBIUKwrXiIUeNbN5ZA== new file mode 100644 index 0000000..98b68d2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y0rpuSjqF9jasu7viA5C_C5FsULHbhRwJJaDS6qnBznIzirsb4u2JrgreefSAAemSIBGLBIUKwrXiIUeNbN5ZA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y4wpe7zQqtUcUR0ev5YdgftzOpIKIGOzmDepGgkMcLbOyuJunJ5lXEk_8mvllYgw950JFVEouYoJ2cI4RXdfzw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y4wpe7zQqtUcUR0ev5YdgftzOpIKIGOzmDepGgkMcLbOyuJunJ5lXEk_8mvllYgw950JFVEouYoJ2cI4RXdfzw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y4wpe7zQqtUcUR0ev5YdgftzOpIKIGOzmDepGgkMcLbOyuJunJ5lXEk_8mvllYgw950JFVEouYoJ2cI4RXdfzw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y6CuCl4QSRs3tU1KuJyNtEEg-k4fa76NtsV6Kqo1Kvz8RwWD0-Sibfw0sPMrT8_SOKp3gCC58p4ftqmt1kSwug== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y6CuCl4QSRs3tU1KuJyNtEEg-k4fa76NtsV6Kqo1Kvz8RwWD0-Sibfw0sPMrT8_SOKp3gCC58p4ftqmt1kSwug== new file mode 100644 index 0000000..4d37b9d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y6CuCl4QSRs3tU1KuJyNtEEg-k4fa76NtsV6Kqo1Kvz8RwWD0-Sibfw0sPMrT8_SOKp3gCC58p4ftqmt1kSwug== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y8s0Y0RHg3DbiGeSZ6RQteVnzgAYO6_bqtiq_ZwxPbtBl9At8zOuly_sIcqwFh1KHtLXAI-B8-ES6BzjhxXeXQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y8s0Y0RHg3DbiGeSZ6RQteVnzgAYO6_bqtiq_ZwxPbtBl9At8zOuly_sIcqwFh1KHtLXAI-B8-ES6BzjhxXeXQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Y8s0Y0RHg3DbiGeSZ6RQteVnzgAYO6_bqtiq_ZwxPbtBl9At8zOuly_sIcqwFh1KHtLXAI-B8-ES6BzjhxXeXQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YAtGqpeiEMH3lbTdWVQOOXQzCBxc7c8bgmC5eLjKTPTAT5Pbadzu8ertLITjTlanOpYESsYUPdrseNsA-Dghtw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YAtGqpeiEMH3lbTdWVQOOXQzCBxc7c8bgmC5eLjKTPTAT5Pbadzu8ertLITjTlanOpYESsYUPdrseNsA-Dghtw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YAtGqpeiEMH3lbTdWVQOOXQzCBxc7c8bgmC5eLjKTPTAT5Pbadzu8ertLITjTlanOpYESsYUPdrseNsA-Dghtw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YDkEUi8sdfG0w1CuFGufJq-QiGA7oZZZBVqXztiPxG0E4aAq1mdDd5DNYaKN_sRd1YKxS-DuT5JyWLZP605gRg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YDkEUi8sdfG0w1CuFGufJq-QiGA7oZZZBVqXztiPxG0E4aAq1mdDd5DNYaKN_sRd1YKxS-DuT5JyWLZP605gRg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YDkEUi8sdfG0w1CuFGufJq-QiGA7oZZZBVqXztiPxG0E4aAq1mdDd5DNYaKN_sRd1YKxS-DuT5JyWLZP605gRg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YNNrojMa-iooYzSmz-HYSaYQgbwK-a5Fwr8KH7I2E4wlBXWKlmnLnSrS1fUOyMdBf-eaiFQp6qwtbH0qId9Vjw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YNNrojMa-iooYzSmz-HYSaYQgbwK-a5Fwr8KH7I2E4wlBXWKlmnLnSrS1fUOyMdBf-eaiFQp6qwtbH0qId9Vjw== new file mode 100644 index 0000000..e54ce69 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YNNrojMa-iooYzSmz-HYSaYQgbwK-a5Fwr8KH7I2E4wlBXWKlmnLnSrS1fUOyMdBf-eaiFQp6qwtbH0qId9Vjw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YNgl8PpZvaYWgfBEY0xSuCmI669NpuvZUl_cIrnssig909abGhdJnwCxy-sKNPNqbhXJG4e0TIv8IdaMdQh4KQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YNgl8PpZvaYWgfBEY0xSuCmI669NpuvZUl_cIrnssig909abGhdJnwCxy-sKNPNqbhXJG4e0TIv8IdaMdQh4KQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YNgl8PpZvaYWgfBEY0xSuCmI669NpuvZUl_cIrnssig909abGhdJnwCxy-sKNPNqbhXJG4e0TIv8IdaMdQh4KQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YQB4ftFBlp3QWBg_TI2OStPHiSr2JINB3-zQTDbkw6QQPE6VDZOKx2thgbBxCf0kVr_RtTY7hPF6QY529IfKSQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YQB4ftFBlp3QWBg_TI2OStPHiSr2JINB3-zQTDbkw6QQPE6VDZOKx2thgbBxCf0kVr_RtTY7hPF6QY529IfKSQ== new file mode 100644 index 0000000..2b597b5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YQB4ftFBlp3QWBg_TI2OStPHiSr2JINB3-zQTDbkw6QQPE6VDZOKx2thgbBxCf0kVr_RtTY7hPF6QY529IfKSQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YQNLsTFYiBOvFENzKEh1sj3BOIq_iVdJHGhJj1H4Bo5fFuzOlizY3YlcC_MzQh9HMHxdlh0sISHpiMNnrT7icQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YQNLsTFYiBOvFENzKEh1sj3BOIq_iVdJHGhJj1H4Bo5fFuzOlizY3YlcC_MzQh9HMHxdlh0sISHpiMNnrT7icQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YQNLsTFYiBOvFENzKEh1sj3BOIq_iVdJHGhJj1H4Bo5fFuzOlizY3YlcC_MzQh9HMHxdlh0sISHpiMNnrT7icQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YRYXqfdrctN6fNcgd-fDskwx2R9q4JBVSiUjnXudV_Jg13gYK9zlsAs149ja2mfEz9dswfKwdeb_Zgdc-i_F0A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YRYXqfdrctN6fNcgd-fDskwx2R9q4JBVSiUjnXudV_Jg13gYK9zlsAs149ja2mfEz9dswfKwdeb_Zgdc-i_F0A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YRYXqfdrctN6fNcgd-fDskwx2R9q4JBVSiUjnXudV_Jg13gYK9zlsAs149ja2mfEz9dswfKwdeb_Zgdc-i_F0A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YS2XggpiIm2usyK3oYqfiTtthcIlt5QXEu2-a59LdqIAqqTOLTG5qZ3nsiXpn3ZYgJqGVN28zRv8fNGVdMpsBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YS2XggpiIm2usyK3oYqfiTtthcIlt5QXEu2-a59LdqIAqqTOLTG5qZ3nsiXpn3ZYgJqGVN28zRv8fNGVdMpsBA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YS2XggpiIm2usyK3oYqfiTtthcIlt5QXEu2-a59LdqIAqqTOLTG5qZ3nsiXpn3ZYgJqGVN28zRv8fNGVdMpsBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YWdEGvDA8dkC4Rr6QP1EZ980B3E6SmsTznDHauVHbXcOwxAXCxoNj17Z0oQXg1ExcUlwtDhlys432YfFpU-87A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YWdEGvDA8dkC4Rr6QP1EZ980B3E6SmsTznDHauVHbXcOwxAXCxoNj17Z0oQXg1ExcUlwtDhlys432YfFpU-87A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YWdEGvDA8dkC4Rr6QP1EZ980B3E6SmsTznDHauVHbXcOwxAXCxoNj17Z0oQXg1ExcUlwtDhlys432YfFpU-87A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YXZECNjTwszPLIIbQa-hzVfuxmaTYCcBrvLw9Q2uCPB9OpdF73B02TCrgQ6Ax2RVHsYS6a1iNPoDWejBTV1kzw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YXZECNjTwszPLIIbQa-hzVfuxmaTYCcBrvLw9Q2uCPB9OpdF73B02TCrgQ6Ax2RVHsYS6a1iNPoDWejBTV1kzw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YXZECNjTwszPLIIbQa-hzVfuxmaTYCcBrvLw9Q2uCPB9OpdF73B02TCrgQ6Ax2RVHsYS6a1iNPoDWejBTV1kzw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YXpjVsHziOpfGUkMlVZTP0pv2N50Hikp_TNOBHIEmgeqAjV9S7r92w0Hqe1zc-92WG-_1Cc8aV0vDrKkmdLMVQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YXpjVsHziOpfGUkMlVZTP0pv2N50Hikp_TNOBHIEmgeqAjV9S7r92w0Hqe1zc-92WG-_1Cc8aV0vDrKkmdLMVQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YXpjVsHziOpfGUkMlVZTP0pv2N50Hikp_TNOBHIEmgeqAjV9S7r92w0Hqe1zc-92WG-_1Cc8aV0vDrKkmdLMVQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ya1mz7abiy2GIJvICxYhqUVNQlm_Ify8QhX4eIosz9tlZLlbl2Fx8s2RtlwMHM9nzyBxI_rUbDBFamKRH7ERww== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ya1mz7abiy2GIJvICxYhqUVNQlm_Ify8QhX4eIosz9tlZLlbl2Fx8s2RtlwMHM9nzyBxI_rUbDBFamKRH7ERww== new file mode 100644 index 0000000..6542f5d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Ya1mz7abiy2GIJvICxYhqUVNQlm_Ify8QhX4eIosz9tlZLlbl2Fx8s2RtlwMHM9nzyBxI_rUbDBFamKRH7ERww== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YauEVrbE5ZjliZ4xbREtSWZ1p52NBuo-AHtzdm7qcQWCshxeEaKtqeHy7rHdeNosMiRfJcitlTlC75ivw3pLKA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YauEVrbE5ZjliZ4xbREtSWZ1p52NBuo-AHtzdm7qcQWCshxeEaKtqeHy7rHdeNosMiRfJcitlTlC75ivw3pLKA== new file mode 100644 index 0000000..49301a3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YauEVrbE5ZjliZ4xbREtSWZ1p52NBuo-AHtzdm7qcQWCshxeEaKtqeHy7rHdeNosMiRfJcitlTlC75ivw3pLKA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YcpNii-z5blpLrPBXHtmtM-geqpiEpZCS-Y9PBB-7s785Yog801UZbNhiry8pEE8DmIXnYkJlkFHYcSY-oxw2g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YcpNii-z5blpLrPBXHtmtM-geqpiEpZCS-Y9PBB-7s785Yog801UZbNhiry8pEE8DmIXnYkJlkFHYcSY-oxw2g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YcpNii-z5blpLrPBXHtmtM-geqpiEpZCS-Y9PBB-7s785Yog801UZbNhiry8pEE8DmIXnYkJlkFHYcSY-oxw2g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Yf82Eul4Th_RP8nZqDzt138FvYNFI1CTNTmvVkkjnTPJOyPl9xNfWohR5dXLtTJ5_V-YZ0DFdphAr2hlRE2EGA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Yf82Eul4Th_RP8nZqDzt138FvYNFI1CTNTmvVkkjnTPJOyPl9xNfWohR5dXLtTJ5_V-YZ0DFdphAr2hlRE2EGA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Yf82Eul4Th_RP8nZqDzt138FvYNFI1CTNTmvVkkjnTPJOyPl9xNfWohR5dXLtTJ5_V-YZ0DFdphAr2hlRE2EGA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YfmyMR22uPvaiSr4kfKPdhdg7vtW0vqnGHmTNwIEjqY1FpvbJUzKLwE4zU0-SZ80EZvt78UdYgA2O_OtiG1jPg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YfmyMR22uPvaiSr4kfKPdhdg7vtW0vqnGHmTNwIEjqY1FpvbJUzKLwE4zU0-SZ80EZvt78UdYgA2O_OtiG1jPg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YfmyMR22uPvaiSr4kfKPdhdg7vtW0vqnGHmTNwIEjqY1FpvbJUzKLwE4zU0-SZ80EZvt78UdYgA2O_OtiG1jPg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YlCMA4sD8wpJJnrp5WK55d-Nzmwx0Q6Ve5aLLJWnsk2lnM_5qVFJ1pZzoJmY1Tt7C75TD1wHZihRIuViX4B0bw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YlCMA4sD8wpJJnrp5WK55d-Nzmwx0Q6Ve5aLLJWnsk2lnM_5qVFJ1pZzoJmY1Tt7C75TD1wHZihRIuViX4B0bw== new file mode 100644 index 0000000..48a268b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YlCMA4sD8wpJJnrp5WK55d-Nzmwx0Q6Ve5aLLJWnsk2lnM_5qVFJ1pZzoJmY1Tt7C75TD1wHZihRIuViX4B0bw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Yts769Pu4xzT56RVjTFPAZydjUbaZ14xAfsvVKAJa6mgFX6xQ2SCN2CoWfA9RIIC7HuXx720vYfHd0Sxav1W9w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Yts769Pu4xzT56RVjTFPAZydjUbaZ14xAfsvVKAJa6mgFX6xQ2SCN2CoWfA9RIIC7HuXx720vYfHd0Sxav1W9w== new file mode 100644 index 0000000..08b045e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Yts769Pu4xzT56RVjTFPAZydjUbaZ14xAfsvVKAJa6mgFX6xQ2SCN2CoWfA9RIIC7HuXx720vYfHd0Sxav1W9w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YyQVtLAECb7jzHEtpxuv4oYkSKSEySln5eGQdnJuRB1mKOi96k0yxBgJIW15xbLSFiILVXUHcGBfQ0Th3Fv-Iw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YyQVtLAECb7jzHEtpxuv4oYkSKSEySln5eGQdnJuRB1mKOi96k0yxBgJIW15xbLSFiILVXUHcGBfQ0Th3Fv-Iw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~YyQVtLAECb7jzHEtpxuv4oYkSKSEySln5eGQdnJuRB1mKOi96k0yxBgJIW15xbLSFiILVXUHcGBfQ0Th3Fv-Iw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Z8kLvuYnK2a1dwu_glhZmesWUJeMZOwxAkHTycOydJA5IKePlxyTc5_9T6PnoHkNBzx-ngo5wIUIPopKL8e3WQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Z8kLvuYnK2a1dwu_glhZmesWUJeMZOwxAkHTycOydJA5IKePlxyTc5_9T6PnoHkNBzx-ngo5wIUIPopKL8e3WQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Z8kLvuYnK2a1dwu_glhZmesWUJeMZOwxAkHTycOydJA5IKePlxyTc5_9T6PnoHkNBzx-ngo5wIUIPopKL8e3WQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZCDLPYaBr-MY7tDmh5E7hHuYItB4f1s5y3_sNoqGq2KruUOWsRyvcBC2HFR4W0Kd9qizBM99F602p2T7u4O2eA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZCDLPYaBr-MY7tDmh5E7hHuYItB4f1s5y3_sNoqGq2KruUOWsRyvcBC2HFR4W0Kd9qizBM99F602p2T7u4O2eA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZCDLPYaBr-MY7tDmh5E7hHuYItB4f1s5y3_sNoqGq2KruUOWsRyvcBC2HFR4W0Kd9qizBM99F602p2T7u4O2eA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZEe2QRr5VOIwwN1yGC6guY0vYb5AjkbjjkpN2LCfNtruj0gYM4JnwJCnZhRw7UC6oouTJpPrpgMF_1VcIx80IA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZEe2QRr5VOIwwN1yGC6guY0vYb5AjkbjjkpN2LCfNtruj0gYM4JnwJCnZhRw7UC6oouTJpPrpgMF_1VcIx80IA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZEe2QRr5VOIwwN1yGC6guY0vYb5AjkbjjkpN2LCfNtruj0gYM4JnwJCnZhRw7UC6oouTJpPrpgMF_1VcIx80IA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZEsQMTwzTVnF9we6EwdbnvvqaPok3nU1ORADfoXFIlirdN9r1j6NOsdeMwoqc6Pji8NfttfqeMhVdgjWjjFZuA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZEsQMTwzTVnF9we6EwdbnvvqaPok3nU1ORADfoXFIlirdN9r1j6NOsdeMwoqc6Pji8NfttfqeMhVdgjWjjFZuA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZEsQMTwzTVnF9we6EwdbnvvqaPok3nU1ORADfoXFIlirdN9r1j6NOsdeMwoqc6Pji8NfttfqeMhVdgjWjjFZuA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZLkn-Jf39lngZ4AVZfCbfvNxkzZeeugQSMZzfxknU5ns-7SPzA8yQU1fRzq0YCpp1vXw7t5i8l-CC068Y4krXw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZLkn-Jf39lngZ4AVZfCbfvNxkzZeeugQSMZzfxknU5ns-7SPzA8yQU1fRzq0YCpp1vXw7t5i8l-CC068Y4krXw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZLkn-Jf39lngZ4AVZfCbfvNxkzZeeugQSMZzfxknU5ns-7SPzA8yQU1fRzq0YCpp1vXw7t5i8l-CC068Y4krXw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZVAjwyUHNYEvhDU3lOxI69jUOecK-YfHQtekyOwlMrcbO9izz6sb9WfduaLnIRzbr0dDXH_y9iRdhK3COf362w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZVAjwyUHNYEvhDU3lOxI69jUOecK-YfHQtekyOwlMrcbO9izz6sb9WfduaLnIRzbr0dDXH_y9iRdhK3COf362w== new file mode 100644 index 0000000..9998030 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZVAjwyUHNYEvhDU3lOxI69jUOecK-YfHQtekyOwlMrcbO9izz6sb9WfduaLnIRzbr0dDXH_y9iRdhK3COf362w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZW9LoWS7O24zcSZtdCPSTlZv21X7itAVTdfpMtmNaJJZDX0siXwYR2OqvcTS-KkZm2V2dzem7Y1dzoQQIxeaQA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZW9LoWS7O24zcSZtdCPSTlZv21X7itAVTdfpMtmNaJJZDX0siXwYR2OqvcTS-KkZm2V2dzem7Y1dzoQQIxeaQA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZW9LoWS7O24zcSZtdCPSTlZv21X7itAVTdfpMtmNaJJZDX0siXwYR2OqvcTS-KkZm2V2dzem7Y1dzoQQIxeaQA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZWKgOZfGrqMVe4qP1TISsYtX-k87Yz9XdF-E7ejPYCWUHVdueB2zQfW0aBg3XypOQnHatD11dwEOn5aUBBdvAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZWKgOZfGrqMVe4qP1TISsYtX-k87Yz9XdF-E7ejPYCWUHVdueB2zQfW0aBg3XypOQnHatD11dwEOn5aUBBdvAg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ZWKgOZfGrqMVe4qP1TISsYtX-k87Yz9XdF-E7ejPYCWUHVdueB2zQfW0aBg3XypOQnHatD11dwEOn5aUBBdvAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Zws7ooq1CnUEzWxmDoT07CS0EPVAK1PeJLBCMSQK6nX9Or-Q5-9Ad3vsUaRTDLOeCiHP3E_CwaajDEoI4puNNA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Zws7ooq1CnUEzWxmDoT07CS0EPVAK1PeJLBCMSQK6nX9Or-Q5-9Ad3vsUaRTDLOeCiHP3E_CwaajDEoI4puNNA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~Zws7ooq1CnUEzWxmDoT07CS0EPVAK1PeJLBCMSQK6nX9Or-Q5-9Ad3vsUaRTDLOeCiHP3E_CwaajDEoI4puNNA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_-e1ptr_q5OflFN0CI0udxw79qwH8YV3hi608kn0RuPKNQI51pAZ7lD1OB1HIwVZnMSyu6pNilqz-pxxVybGUg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_-e1ptr_q5OflFN0CI0udxw79qwH8YV3hi608kn0RuPKNQI51pAZ7lD1OB1HIwVZnMSyu6pNilqz-pxxVybGUg== new file mode 100644 index 0000000..209f57e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_-e1ptr_q5OflFN0CI0udxw79qwH8YV3hi608kn0RuPKNQI51pAZ7lD1OB1HIwVZnMSyu6pNilqz-pxxVybGUg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_1UZ9p3M8MbppZ4E2rZtXbpuT-9YBccaOASdfn6eVqsaysotjTjjk6ayP47ubzUQBOnfo2drEazeAxQN3jtV9Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_1UZ9p3M8MbppZ4E2rZtXbpuT-9YBccaOASdfn6eVqsaysotjTjjk6ayP47ubzUQBOnfo2drEazeAxQN3jtV9Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_1UZ9p3M8MbppZ4E2rZtXbpuT-9YBccaOASdfn6eVqsaysotjTjjk6ayP47ubzUQBOnfo2drEazeAxQN3jtV9Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_25cYXwCxvvB5WeAH9-HtCkATg2mK0-a9SvY3FP_6qBRgTVP-ZFqoGQlSFoHDpluD-ofU9EFxm6k-utXXEWGLA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_25cYXwCxvvB5WeAH9-HtCkATg2mK0-a9SvY3FP_6qBRgTVP-ZFqoGQlSFoHDpluD-ofU9EFxm6k-utXXEWGLA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_25cYXwCxvvB5WeAH9-HtCkATg2mK0-a9SvY3FP_6qBRgTVP-ZFqoGQlSFoHDpluD-ofU9EFxm6k-utXXEWGLA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_8Lcb9drIhGkE1oHQkM_Y_P4lI-ZecmlQvIZRPTcEShpl8UJQ36dWwxPO_vnbQB5RGNomRYVR_MHdBpt6JfQLA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_8Lcb9drIhGkE1oHQkM_Y_P4lI-ZecmlQvIZRPTcEShpl8UJQ36dWwxPO_vnbQB5RGNomRYVR_MHdBpt6JfQLA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_8Lcb9drIhGkE1oHQkM_Y_P4lI-ZecmlQvIZRPTcEShpl8UJQ36dWwxPO_vnbQB5RGNomRYVR_MHdBpt6JfQLA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_JtuYUZoyW0X_qtVifvzI2L8_GkGpzy4Os1vn1bbBUBJx5Az_U_AZ-VAD57uQWp6sh3RrXynDyLU3h_9yYyThQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_JtuYUZoyW0X_qtVifvzI2L8_GkGpzy4Os1vn1bbBUBJx5Az_U_AZ-VAD57uQWp6sh3RrXynDyLU3h_9yYyThQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_JtuYUZoyW0X_qtVifvzI2L8_GkGpzy4Os1vn1bbBUBJx5Az_U_AZ-VAD57uQWp6sh3RrXynDyLU3h_9yYyThQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_XaWixF6IC835hyPuvlxmuoZlKPlIFINAZRee-P2CyssyN9Tpf1COcsTflsvXF9BY67NoUU7NxTuOovI3r-Ovg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_XaWixF6IC835hyPuvlxmuoZlKPlIFINAZRee-P2CyssyN9Tpf1COcsTflsvXF9BY67NoUU7NxTuOovI3r-Ovg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_XaWixF6IC835hyPuvlxmuoZlKPlIFINAZRee-P2CyssyN9Tpf1COcsTflsvXF9BY67NoUU7NxTuOovI3r-Ovg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_ZxW4QBLaloWD5gqRSSia0kbgquSQ_sZTcJrh6QtSMQ6jgfIrGt7Elvo_O3bKvwPYiGtn1-kVuelZxOPlDh8dA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_ZxW4QBLaloWD5gqRSSia0kbgquSQ_sZTcJrh6QtSMQ6jgfIrGt7Elvo_O3bKvwPYiGtn1-kVuelZxOPlDh8dA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_ZxW4QBLaloWD5gqRSSia0kbgquSQ_sZTcJrh6QtSMQ6jgfIrGt7Elvo_O3bKvwPYiGtn1-kVuelZxOPlDh8dA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_cu-XUm2YMa_L5eV3X1q1XCAlDdPXQpend5y6rixnKgHUrpDqvJM7NmgGZm66d4RnrNvcHRK9U3nQQNYFxK1xQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_cu-XUm2YMa_L5eV3X1q1XCAlDdPXQpend5y6rixnKgHUrpDqvJM7NmgGZm66d4RnrNvcHRK9U3nQQNYFxK1xQ== new file mode 100644 index 0000000..04bec5e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_cu-XUm2YMa_L5eV3X1q1XCAlDdPXQpend5y6rixnKgHUrpDqvJM7NmgGZm66d4RnrNvcHRK9U3nQQNYFxK1xQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_fmkrtNHiI8ChhAxhV3gncgKBuo8_rcDBl4bafHtubau34EdClQfqksznyjZFxy48rSgjdr5eLjestfkYowTtQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_fmkrtNHiI8ChhAxhV3gncgKBuo8_rcDBl4bafHtubau34EdClQfqksznyjZFxy48rSgjdr5eLjestfkYowTtQ== new file mode 100644 index 0000000..f3bb104 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_fmkrtNHiI8ChhAxhV3gncgKBuo8_rcDBl4bafHtubau34EdClQfqksznyjZFxy48rSgjdr5eLjestfkYowTtQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_hAt68eHIoqqG5d-HpJj84YxKq7Ow4jqVAjiBmFpRsisrk7vMbhELATBXSfEZbTqwMeU_n9cSbldWPynGLs6EA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_hAt68eHIoqqG5d-HpJj84YxKq7Ow4jqVAjiBmFpRsisrk7vMbhELATBXSfEZbTqwMeU_n9cSbldWPynGLs6EA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_hAt68eHIoqqG5d-HpJj84YxKq7Ow4jqVAjiBmFpRsisrk7vMbhELATBXSfEZbTqwMeU_n9cSbldWPynGLs6EA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_k9IGOFRK9ascq_WWuAHveWjP3hY6O0EzgZJ6kALGjp8M_I8qHOvVZkocR4WG7G6LUnbtNEo9WJMimoKY0vO7w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_k9IGOFRK9ascq_WWuAHveWjP3hY6O0EzgZJ6kALGjp8M_I8qHOvVZkocR4WG7G6LUnbtNEo9WJMimoKY0vO7w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_k9IGOFRK9ascq_WWuAHveWjP3hY6O0EzgZJ6kALGjp8M_I8qHOvVZkocR4WG7G6LUnbtNEo9WJMimoKY0vO7w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_qb0BrGS4OaGyV9CV85KtR547TVyCGXYYbDXT3GwplINfCxpDS34hoyIlTgItxSvmRgyx8vsegWqXn1kElaT9w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_qb0BrGS4OaGyV9CV85KtR547TVyCGXYYbDXT3GwplINfCxpDS34hoyIlTgItxSvmRgyx8vsegWqXn1kElaT9w== new file mode 100644 index 0000000..8397439 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_qb0BrGS4OaGyV9CV85KtR547TVyCGXYYbDXT3GwplINfCxpDS34hoyIlTgItxSvmRgyx8vsegWqXn1kElaT9w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_rOgVFdgDABhtQvGtaD_ToNEU-iGXCTtnlmS68v_xvbLZWSatfBQ7cTjJEpQll6A4Eqe3KxiQr9zihswPacbzw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_rOgVFdgDABhtQvGtaD_ToNEU-iGXCTtnlmS68v_xvbLZWSatfBQ7cTjJEpQll6A4Eqe3KxiQr9zihswPacbzw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_rOgVFdgDABhtQvGtaD_ToNEU-iGXCTtnlmS68v_xvbLZWSatfBQ7cTjJEpQll6A4Eqe3KxiQr9zihswPacbzw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_tfetjaRy4QQYcT3LXcpdDdIeAHuYzoLj-dxrvlNteGIoY7ynw-_lqIbBgvtVx7PaihBm6ctTdjTARsT1kVnew== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_tfetjaRy4QQYcT3LXcpdDdIeAHuYzoLj-dxrvlNteGIoY7ynw-_lqIbBgvtVx7PaihBm6ctTdjTARsT1kVnew== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_tfetjaRy4QQYcT3LXcpdDdIeAHuYzoLj-dxrvlNteGIoY7ynw-_lqIbBgvtVx7PaihBm6ctTdjTARsT1kVnew== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_vm8ja-qvr3T02tBGLSGXwBRuEGZ_qY9jyP2FgakD0jD1NwCYRtM4h_p-6TrjLbVPKh1bQ1PQ0tbOQdyK7H8_g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_vm8ja-qvr3T02tBGLSGXwBRuEGZ_qY9jyP2FgakD0jD1NwCYRtM4h_p-6TrjLbVPKh1bQ1PQ0tbOQdyK7H8_g== new file mode 100644 index 0000000..1d95f1d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_vm8ja-qvr3T02tBGLSGXwBRuEGZ_qY9jyP2FgakD0jD1NwCYRtM4h_p-6TrjLbVPKh1bQ1PQ0tbOQdyK7H8_g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_xzCgSwZyS6A8T5nBnJycOn56pCgel4bo0DI24SS4sQsHFG8J7E5hwy8t3ovBGs8Yp0C1Z_YFF2HEdgc88shmA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_xzCgSwZyS6A8T5nBnJycOn56pCgel4bo0DI24SS4sQsHFG8J7E5hwy8t3ovBGs8Yp0C1Z_YFF2HEdgc88shmA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_xzCgSwZyS6A8T5nBnJycOn56pCgel4bo0DI24SS4sQsHFG8J7E5hwy8t3ovBGs8Yp0C1Z_YFF2HEdgc88shmA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_y8QRT3YljGwjsY1TcJEfS_EncTygylBHHXw6z1xC0WdcILdHIH19UbHU43mJGBAMZ-iHwd9Y1SL-q3CEmFbJQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_y8QRT3YljGwjsY1TcJEfS_EncTygylBHHXw6z1xC0WdcILdHIH19UbHU43mJGBAMZ-iHwd9Y1SL-q3CEmFbJQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~_y8QRT3YljGwjsY1TcJEfS_EncTygylBHHXw6z1xC0WdcILdHIH19UbHU43mJGBAMZ-iHwd9Y1SL-q3CEmFbJQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~a5cXEtq3SHRUVWcHxRc_9aPAax5EySNT582M_cF2yw-nLO3SzaTmqk03XQGHN5VuxYmBSCJmcmHhYPj1ZolNaw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~a5cXEtq3SHRUVWcHxRc_9aPAax5EySNT582M_cF2yw-nLO3SzaTmqk03XQGHN5VuxYmBSCJmcmHhYPj1ZolNaw== new file mode 100644 index 0000000..b0d1c3e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~a5cXEtq3SHRUVWcHxRc_9aPAax5EySNT582M_cF2yw-nLO3SzaTmqk03XQGHN5VuxYmBSCJmcmHhYPj1ZolNaw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aJ1tec5fMu7VglZ1Xz1ibjEPIiioa4VhrIkWholbZvI-WnTae5hNlTKTrG1Ry8n5b3KAiJbv4c5sR8iHEXqubA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aJ1tec5fMu7VglZ1Xz1ibjEPIiioa4VhrIkWholbZvI-WnTae5hNlTKTrG1Ry8n5b3KAiJbv4c5sR8iHEXqubA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aJ1tec5fMu7VglZ1Xz1ibjEPIiioa4VhrIkWholbZvI-WnTae5hNlTKTrG1Ry8n5b3KAiJbv4c5sR8iHEXqubA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aRRYvFeOEY99evmzWDDDxG9ANOdzt8f-qZ0t-EIGIAL5AycygnAMVZruBfcCE609lgdiQWByLV9Kg96pDPdY4Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aRRYvFeOEY99evmzWDDDxG9ANOdzt8f-qZ0t-EIGIAL5AycygnAMVZruBfcCE609lgdiQWByLV9Kg96pDPdY4Q== new file mode 100644 index 0000000..543cee0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aRRYvFeOEY99evmzWDDDxG9ANOdzt8f-qZ0t-EIGIAL5AycygnAMVZruBfcCE609lgdiQWByLV9Kg96pDPdY4Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aSQi07tN5D5VOmp-y-R40lGTs6RItQm2uFf9UYA-fSSLSJYJsqYu8VpszEgw9mwlwQ5joN1kxc8Dj1bXfdoZIg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aSQi07tN5D5VOmp-y-R40lGTs6RItQm2uFf9UYA-fSSLSJYJsqYu8VpszEgw9mwlwQ5joN1kxc8Dj1bXfdoZIg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aSQi07tN5D5VOmp-y-R40lGTs6RItQm2uFf9UYA-fSSLSJYJsqYu8VpszEgw9mwlwQ5joN1kxc8Dj1bXfdoZIg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aYdN1z2sDCoX5tT_2-Yl2TyCRI6cKd_qnCWeW93XewLEHVqXCrHsk023CM8-UKHxXOMYmhU0t2sq8Gl-FYuleg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aYdN1z2sDCoX5tT_2-Yl2TyCRI6cKd_qnCWeW93XewLEHVqXCrHsk023CM8-UKHxXOMYmhU0t2sq8Gl-FYuleg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aYdN1z2sDCoX5tT_2-Yl2TyCRI6cKd_qnCWeW93XewLEHVqXCrHsk023CM8-UKHxXOMYmhU0t2sq8Gl-FYuleg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~abfopuBad23nl5saexBGfnvMLnPqHLh2kxxCkO3yJF8kByFTLovQf5po8GZpkabsMMxtzDuirBbKLpOpFiIkkg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~abfopuBad23nl5saexBGfnvMLnPqHLh2kxxCkO3yJF8kByFTLovQf5po8GZpkabsMMxtzDuirBbKLpOpFiIkkg== new file mode 100644 index 0000000..2ccc429 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~abfopuBad23nl5saexBGfnvMLnPqHLh2kxxCkO3yJF8kByFTLovQf5po8GZpkabsMMxtzDuirBbKLpOpFiIkkg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ae4NqVDLKrwp3Pn4EmskH7oOjNmkb3BrjMsOSGTh0bGA7_wSWz0LYgFLf-Qc2AZ2jkKsF-cGwVTQZU-XNHH5qg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ae4NqVDLKrwp3Pn4EmskH7oOjNmkb3BrjMsOSGTh0bGA7_wSWz0LYgFLf-Qc2AZ2jkKsF-cGwVTQZU-XNHH5qg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ae4NqVDLKrwp3Pn4EmskH7oOjNmkb3BrjMsOSGTh0bGA7_wSWz0LYgFLf-Qc2AZ2jkKsF-cGwVTQZU-XNHH5qg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aeZ1Rfejv94FRHtsp87t5_X3d_5tUt0veEdAFxLuG87y5ut0k5eaffEFP7eOR0EbSTgo59gZtVe-fFH1EuM-Fw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aeZ1Rfejv94FRHtsp87t5_X3d_5tUt0veEdAFxLuG87y5ut0k5eaffEFP7eOR0EbSTgo59gZtVe-fFH1EuM-Fw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~aeZ1Rfejv94FRHtsp87t5_X3d_5tUt0veEdAFxLuG87y5ut0k5eaffEFP7eOR0EbSTgo59gZtVe-fFH1EuM-Fw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~as_LuRXgBnHqYzZnV2WEbvT4yU6UZzNe23EWiK_fBLjRa5K3A1_XWSP5CLOgtqL1xmPG5uZSf1qwIba6tJCcFw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~as_LuRXgBnHqYzZnV2WEbvT4yU6UZzNe23EWiK_fBLjRa5K3A1_XWSP5CLOgtqL1xmPG5uZSf1qwIba6tJCcFw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~as_LuRXgBnHqYzZnV2WEbvT4yU6UZzNe23EWiK_fBLjRa5K3A1_XWSP5CLOgtqL1xmPG5uZSf1qwIba6tJCcFw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~awAJcCRFz47DOCCe0sxkxpuhOmKhqF6oxBE8je7RZPwbhyCdX9p8ngYPARlZGZH9jZ_5DwqrAUgCy6x-0IGzkg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~awAJcCRFz47DOCCe0sxkxpuhOmKhqF6oxBE8je7RZPwbhyCdX9p8ngYPARlZGZH9jZ_5DwqrAUgCy6x-0IGzkg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~awAJcCRFz47DOCCe0sxkxpuhOmKhqF6oxBE8je7RZPwbhyCdX9p8ngYPARlZGZH9jZ_5DwqrAUgCy6x-0IGzkg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~axd8fUUJlYNpEhwLGnHrkqWncttJ2jbQxM2--_Rjj0q9-F51nENVF2djzVg1ERxUCZLSuZyjrAzeNIkZIj8O_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~axd8fUUJlYNpEhwLGnHrkqWncttJ2jbQxM2--_Rjj0q9-F51nENVF2djzVg1ERxUCZLSuZyjrAzeNIkZIj8O_w== new file mode 100644 index 0000000..b4766b0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~axd8fUUJlYNpEhwLGnHrkqWncttJ2jbQxM2--_Rjj0q9-F51nENVF2djzVg1ERxUCZLSuZyjrAzeNIkZIj8O_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b0LcEYtZYUc40N2IR1M0ox9idENBsiqZMTtD77NHe0UMQD_Hu3jJhNWMYXwoGxu1R2S6HmNFfYSsVZqAUFGCsA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b0LcEYtZYUc40N2IR1M0ox9idENBsiqZMTtD77NHe0UMQD_Hu3jJhNWMYXwoGxu1R2S6HmNFfYSsVZqAUFGCsA== new file mode 100644 index 0000000..31f7b36 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b0LcEYtZYUc40N2IR1M0ox9idENBsiqZMTtD77NHe0UMQD_Hu3jJhNWMYXwoGxu1R2S6HmNFfYSsVZqAUFGCsA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b5aPqeKp9DkXwHNyEvedQgsK-9yJ9RtPKJ12TtMDqw48_wCiV_56WYqAXXyC-HQrhiPxFrnpNRpdMjEddFay0g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b5aPqeKp9DkXwHNyEvedQgsK-9yJ9RtPKJ12TtMDqw48_wCiV_56WYqAXXyC-HQrhiPxFrnpNRpdMjEddFay0g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b5aPqeKp9DkXwHNyEvedQgsK-9yJ9RtPKJ12TtMDqw48_wCiV_56WYqAXXyC-HQrhiPxFrnpNRpdMjEddFay0g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b8S4a4zw8byuPNS2nKf9EfIh4WtvNiNMc-75ZZ1MPVuw611U4Ny4vVVhdjSRaXJFLGlh8iTLUnLYvUVpNhNceg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b8S4a4zw8byuPNS2nKf9EfIh4WtvNiNMc-75ZZ1MPVuw611U4Ny4vVVhdjSRaXJFLGlh8iTLUnLYvUVpNhNceg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b8S4a4zw8byuPNS2nKf9EfIh4WtvNiNMc-75ZZ1MPVuw611U4Ny4vVVhdjSRaXJFLGlh8iTLUnLYvUVpNhNceg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b9PfddKbQH8HwlJFunFw2KnnysAMxiDb_AFWLX0-YYQtiqycESsEHJa1J_Wk7JB2vEjH5fvNwfggEnuzT7q4LA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b9PfddKbQH8HwlJFunFw2KnnysAMxiDb_AFWLX0-YYQtiqycESsEHJa1J_Wk7JB2vEjH5fvNwfggEnuzT7q4LA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b9PfddKbQH8HwlJFunFw2KnnysAMxiDb_AFWLX0-YYQtiqycESsEHJa1J_Wk7JB2vEjH5fvNwfggEnuzT7q4LA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bEhNjU5wuNt-GaZYk9LfTXtdAuKEPP_3y0GJ7S2wAs_imkoyVtpYKu1HqXR-T1pBs91w3QaBRvTv2zeIpdzr5Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bEhNjU5wuNt-GaZYk9LfTXtdAuKEPP_3y0GJ7S2wAs_imkoyVtpYKu1HqXR-T1pBs91w3QaBRvTv2zeIpdzr5Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bEhNjU5wuNt-GaZYk9LfTXtdAuKEPP_3y0GJ7S2wAs_imkoyVtpYKu1HqXR-T1pBs91w3QaBRvTv2zeIpdzr5Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bNrotZZE02XBHmy8W5BUKbOqUAGiBmbh1UM0At3PoHSVirVY1SmXRo30GCV5x4suPWjOQ2qjYu0coPa3W3iQJw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bNrotZZE02XBHmy8W5BUKbOqUAGiBmbh1UM0At3PoHSVirVY1SmXRo30GCV5x4suPWjOQ2qjYu0coPa3W3iQJw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bNrotZZE02XBHmy8W5BUKbOqUAGiBmbh1UM0At3PoHSVirVY1SmXRo30GCV5x4suPWjOQ2qjYu0coPa3W3iQJw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bOBdq79irozUS57A8f5_vicXNo5drHDB9WDxBAvr6Qir4l2xDOEme_bcenHi3qMN69m2iBqwb1bOSLC7tRvwyQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bOBdq79irozUS57A8f5_vicXNo5drHDB9WDxBAvr6Qir4l2xDOEme_bcenHi3qMN69m2iBqwb1bOSLC7tRvwyQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bOBdq79irozUS57A8f5_vicXNo5drHDB9WDxBAvr6Qir4l2xDOEme_bcenHi3qMN69m2iBqwb1bOSLC7tRvwyQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bPEoY2Iautn5bJB--aXH8pbopAL13RtYphEEVIw8Pz1VArlC50jtR0ZPV4PC7ljHxlhYTrpcfpOoogYziaAbuA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bPEoY2Iautn5bJB--aXH8pbopAL13RtYphEEVIw8Pz1VArlC50jtR0ZPV4PC7ljHxlhYTrpcfpOoogYziaAbuA== new file mode 100644 index 0000000..c367005 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bPEoY2Iautn5bJB--aXH8pbopAL13RtYphEEVIw8Pz1VArlC50jtR0ZPV4PC7ljHxlhYTrpcfpOoogYziaAbuA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bPRb2RXKrimKQy8HHif0OIxkz8bdH7frmLZ8PfOk8SWU2xMjdm_CFAxL-mRaQiVAQsp8xEj3TE6w3kSS8IbkHg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bPRb2RXKrimKQy8HHif0OIxkz8bdH7frmLZ8PfOk8SWU2xMjdm_CFAxL-mRaQiVAQsp8xEj3TE6w3kSS8IbkHg== new file mode 100644 index 0000000..eaaf953 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bPRb2RXKrimKQy8HHif0OIxkz8bdH7frmLZ8PfOk8SWU2xMjdm_CFAxL-mRaQiVAQsp8xEj3TE6w3kSS8IbkHg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bUif_kvA8NkKbILknZKcIPqwJjHWMQqNnBwJE4bnykLIbrtGE7kpdOi22mYFJ-vodxPwzRljNC-26Qzo_5zkEw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bUif_kvA8NkKbILknZKcIPqwJjHWMQqNnBwJE4bnykLIbrtGE7kpdOi22mYFJ-vodxPwzRljNC-26Qzo_5zkEw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bUif_kvA8NkKbILknZKcIPqwJjHWMQqNnBwJE4bnykLIbrtGE7kpdOi22mYFJ-vodxPwzRljNC-26Qzo_5zkEw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bUo3eXl7keOW1QM9r1nYmwVWCJrCB0dIveeKN_SUDkklgIW9Ox9ISrhLIwbvbbOpPmCqW1g16SYF12_T1TLhDQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bUo3eXl7keOW1QM9r1nYmwVWCJrCB0dIveeKN_SUDkklgIW9Ox9ISrhLIwbvbbOpPmCqW1g16SYF12_T1TLhDQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bUo3eXl7keOW1QM9r1nYmwVWCJrCB0dIveeKN_SUDkklgIW9Ox9ISrhLIwbvbbOpPmCqW1g16SYF12_T1TLhDQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bWYP9OMNihflpPO29ukq3QLpjy4_bAbKcS15wZth9NCNk_YyuqTr2b3UOrFbaZq6JxtK756IAyU_MOMZFFWLWA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bWYP9OMNihflpPO29ukq3QLpjy4_bAbKcS15wZth9NCNk_YyuqTr2b3UOrFbaZq6JxtK756IAyU_MOMZFFWLWA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bWYP9OMNihflpPO29ukq3QLpjy4_bAbKcS15wZth9NCNk_YyuqTr2b3UOrFbaZq6JxtK756IAyU_MOMZFFWLWA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bXBrrgPzRueD3VHkX1BqdEXUyQ-xeUD6fTWUvyRA-0dRRHo453-OZUDPiPuDmZKXHdQMVJEL6g92eA2xT2-A1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bXBrrgPzRueD3VHkX1BqdEXUyQ-xeUD6fTWUvyRA-0dRRHo453-OZUDPiPuDmZKXHdQMVJEL6g92eA2xT2-A1g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bXBrrgPzRueD3VHkX1BqdEXUyQ-xeUD6fTWUvyRA-0dRRHo453-OZUDPiPuDmZKXHdQMVJEL6g92eA2xT2-A1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bXn_dyQ43AK4VlA4VMufWdbG2A5vkVuzg1dR1Q1tAGA04wt10jRi22gAjHB_r-zGyFZyv01PAjm0AA96qlUdlw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bXn_dyQ43AK4VlA4VMufWdbG2A5vkVuzg1dR1Q1tAGA04wt10jRi22gAjHB_r-zGyFZyv01PAjm0AA96qlUdlw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bXn_dyQ43AK4VlA4VMufWdbG2A5vkVuzg1dR1Q1tAGA04wt10jRi22gAjHB_r-zGyFZyv01PAjm0AA96qlUdlw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bXtv8MST_MvZNF-MVRhOHdiM45SQXfIB_ZdstfvMnpm82mEqhQX5kw1Wx6pcJV7U_WUBFsDUN1oTmvoSg_8z_g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bXtv8MST_MvZNF-MVRhOHdiM45SQXfIB_ZdstfvMnpm82mEqhQX5kw1Wx6pcJV7U_WUBFsDUN1oTmvoSg_8z_g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bXtv8MST_MvZNF-MVRhOHdiM45SQXfIB_ZdstfvMnpm82mEqhQX5kw1Wx6pcJV7U_WUBFsDUN1oTmvoSg_8z_g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b_FXgLZ1VVKkXy7_VOVm-n8AwsriTTcKMYkYzN2qvjV2v8t62eD7V3qZdr6LoPpjOEhcxy74tJkH93L5pOHXKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b_FXgLZ1VVKkXy7_VOVm-n8AwsriTTcKMYkYzN2qvjV2v8t62eD7V3qZdr6LoPpjOEhcxy74tJkH93L5pOHXKw== new file mode 100644 index 0000000..2ce445c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~b_FXgLZ1VVKkXy7_VOVm-n8AwsriTTcKMYkYzN2qvjV2v8t62eD7V3qZdr6LoPpjOEhcxy74tJkH93L5pOHXKw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bgtmAN03yc7aDbmI0POQPRP7eW3sE1giIUDz4-vKZqneC_qeUhG_arCLaWRYPpHObcbdzE_6GaiavjIW-cLzPA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bgtmAN03yc7aDbmI0POQPRP7eW3sE1giIUDz4-vKZqneC_qeUhG_arCLaWRYPpHObcbdzE_6GaiavjIW-cLzPA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bgtmAN03yc7aDbmI0POQPRP7eW3sE1giIUDz4-vKZqneC_qeUhG_arCLaWRYPpHObcbdzE_6GaiavjIW-cLzPA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bhQ7RTydV75KkdsddvD7bpjoZi3lTR-JBmQE7kbN-XZaqYIaqGHzlWfGTnbAdsftjVl4Edtx9mvmIK8qGTXtTQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bhQ7RTydV75KkdsddvD7bpjoZi3lTR-JBmQE7kbN-XZaqYIaqGHzlWfGTnbAdsftjVl4Edtx9mvmIK8qGTXtTQ== new file mode 100644 index 0000000..df25468 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bhQ7RTydV75KkdsddvD7bpjoZi3lTR-JBmQE7kbN-XZaqYIaqGHzlWfGTnbAdsftjVl4Edtx9mvmIK8qGTXtTQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bju5u7boSw65j0KLu0iNB8gzQq9g0x6Lzyx3idRL9KZLK037WOE8dh4l5HQRPHYr0_1KGtfHfN1f5D2r9S_A8w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bju5u7boSw65j0KLu0iNB8gzQq9g0x6Lzyx3idRL9KZLK037WOE8dh4l5HQRPHYr0_1KGtfHfN1f5D2r9S_A8w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bju5u7boSw65j0KLu0iNB8gzQq9g0x6Lzyx3idRL9KZLK037WOE8dh4l5HQRPHYr0_1KGtfHfN1f5D2r9S_A8w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bmcudpMVksSlGHZ2s_qae8CAISNgfVk8hDF6xubFCrwcV1F77RJJbTZaZjZBVfg4_YWXvkV1tNT14nH2hAQdjA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bmcudpMVksSlGHZ2s_qae8CAISNgfVk8hDF6xubFCrwcV1F77RJJbTZaZjZBVfg4_YWXvkV1tNT14nH2hAQdjA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bmcudpMVksSlGHZ2s_qae8CAISNgfVk8hDF6xubFCrwcV1F77RJJbTZaZjZBVfg4_YWXvkV1tNT14nH2hAQdjA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bq8067rZhdF-BtQQ-qyEhEej5xmDPTkIPnKFNpMtar_TwWriCqhrOrfuMJ030yPDWqLDDrIbK_l5O639OS2A3A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bq8067rZhdF-BtQQ-qyEhEej5xmDPTkIPnKFNpMtar_TwWriCqhrOrfuMJ030yPDWqLDDrIbK_l5O639OS2A3A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bq8067rZhdF-BtQQ-qyEhEej5xmDPTkIPnKFNpMtar_TwWriCqhrOrfuMJ030yPDWqLDDrIbK_l5O639OS2A3A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~brGD0I7JOGVgcQo0ckeCWVhQBP67yo-XeyzohY6eMIWmtx7_sW8FVgPr1OkQ6UQaLVfd5PBqEv_1_A7ji6y5Lw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~brGD0I7JOGVgcQo0ckeCWVhQBP67yo-XeyzohY6eMIWmtx7_sW8FVgPr1OkQ6UQaLVfd5PBqEv_1_A7ji6y5Lw== new file mode 100644 index 0000000..a1d5a1e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~brGD0I7JOGVgcQo0ckeCWVhQBP67yo-XeyzohY6eMIWmtx7_sW8FVgPr1OkQ6UQaLVfd5PBqEv_1_A7ji6y5Lw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~buGrR3a4NTxe_j8dWt3UWVIw_O-iwo1Fr6bzyYgLpWSX6QAq_67qMWSvi3MkvFjijWzvuxrA01EHvhvQRTI3yw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~buGrR3a4NTxe_j8dWt3UWVIw_O-iwo1Fr6bzyYgLpWSX6QAq_67qMWSvi3MkvFjijWzvuxrA01EHvhvQRTI3yw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~buGrR3a4NTxe_j8dWt3UWVIw_O-iwo1Fr6bzyYgLpWSX6QAq_67qMWSvi3MkvFjijWzvuxrA01EHvhvQRTI3yw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bwyZ1N-qZFwz_8Np-o9mkJRboxCMSTFoddRIBm38TlqIYz-HKoY3yXS_ouII-gvTYkYpmyPxJVQbe9BwoA2rtw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bwyZ1N-qZFwz_8Np-o9mkJRboxCMSTFoddRIBm38TlqIYz-HKoY3yXS_ouII-gvTYkYpmyPxJVQbe9BwoA2rtw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bwyZ1N-qZFwz_8Np-o9mkJRboxCMSTFoddRIBm38TlqIYz-HKoY3yXS_ouII-gvTYkYpmyPxJVQbe9BwoA2rtw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bxo1vT52AQkv3wvQS_poqtMOMW1Vx68U5IhRbt416r8jpnQlB8qrQi3ig2uVt_t4ERsnHmf_762MQqgrF9G_5A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bxo1vT52AQkv3wvQS_poqtMOMW1Vx68U5IhRbt416r8jpnQlB8qrQi3ig2uVt_t4ERsnHmf_762MQqgrF9G_5A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bxo1vT52AQkv3wvQS_poqtMOMW1Vx68U5IhRbt416r8jpnQlB8qrQi3ig2uVt_t4ERsnHmf_762MQqgrF9G_5A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~byR-ZBKKFI8FeLmrvg5-oOWCDDn-eBhZ3s_NiWpcg2xltWlgtfvg4WnUTE-Y5f5Y3jancqISDUbIeXJqdfz5zQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~byR-ZBKKFI8FeLmrvg5-oOWCDDn-eBhZ3s_NiWpcg2xltWlgtfvg4WnUTE-Y5f5Y3jancqISDUbIeXJqdfz5zQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~byR-ZBKKFI8FeLmrvg5-oOWCDDn-eBhZ3s_NiWpcg2xltWlgtfvg4WnUTE-Y5f5Y3jancqISDUbIeXJqdfz5zQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bykL5wvPOAa2iSkMBRzSfpdmagYDFPewJ16su-rKzkf3ip4oSHnByKClVXIAD-VVhRrGRAUiFtRvcoT2jUM_qg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bykL5wvPOAa2iSkMBRzSfpdmagYDFPewJ16su-rKzkf3ip4oSHnByKClVXIAD-VVhRrGRAUiFtRvcoT2jUM_qg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bykL5wvPOAa2iSkMBRzSfpdmagYDFPewJ16su-rKzkf3ip4oSHnByKClVXIAD-VVhRrGRAUiFtRvcoT2jUM_qg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bzslxVPBJSnmQtMTX5_v_1tWXZ9n8fQ6B8jeGz-fCgEW8jheBhoXBK76epUCo09j4u9p_ejt7C8UJg0CWwptpQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bzslxVPBJSnmQtMTX5_v_1tWXZ9n8fQ6B8jeGz-fCgEW8jheBhoXBK76epUCo09j4u9p_ejt7C8UJg0CWwptpQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~bzslxVPBJSnmQtMTX5_v_1tWXZ9n8fQ6B8jeGz-fCgEW8jheBhoXBK76epUCo09j4u9p_ejt7C8UJg0CWwptpQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~c36r3-ym03M1NaRKVfv4NRKb-r6XHxPZE_Ato-KoXHlwzQfZy9R-XxH55gjojIH7b5naR6aBQ-PhLUOxWUnXpA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~c36r3-ym03M1NaRKVfv4NRKb-r6XHxPZE_Ato-KoXHlwzQfZy9R-XxH55gjojIH7b5naR6aBQ-PhLUOxWUnXpA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~c36r3-ym03M1NaRKVfv4NRKb-r6XHxPZE_Ato-KoXHlwzQfZy9R-XxH55gjojIH7b5naR6aBQ-PhLUOxWUnXpA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~c491RURjthf8ddiFTe5mRt4G1RN4daSI9EIjcQFbBTV8HLQOStCTK3DNI5DPjoY4p0AIMZuBk3ZFyDSZdmzgQw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~c491RURjthf8ddiFTe5mRt4G1RN4daSI9EIjcQFbBTV8HLQOStCTK3DNI5DPjoY4p0AIMZuBk3ZFyDSZdmzgQw== new file mode 100644 index 0000000..e32eedf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~c491RURjthf8ddiFTe5mRt4G1RN4daSI9EIjcQFbBTV8HLQOStCTK3DNI5DPjoY4p0AIMZuBk3ZFyDSZdmzgQw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cA4faJWiUaY9PcotGr5IpIPGuJ6eFoLvf-zlxght6HlIPSqH6XPCjal2Y477q-ymK0-1aWW4v2b_eJOQwsCm-w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cA4faJWiUaY9PcotGr5IpIPGuJ6eFoLvf-zlxght6HlIPSqH6XPCjal2Y477q-ymK0-1aWW4v2b_eJOQwsCm-w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cA4faJWiUaY9PcotGr5IpIPGuJ6eFoLvf-zlxght6HlIPSqH6XPCjal2Y477q-ymK0-1aWW4v2b_eJOQwsCm-w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cAikv6nuzdq0RUgjPnHmiq01osRkv5AbnAAfvNtuE54YTk0n7a2cXQKKuc6YB3nPKGC_2Dn4NwaRYYZqk1_DAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cAikv6nuzdq0RUgjPnHmiq01osRkv5AbnAAfvNtuE54YTk0n7a2cXQKKuc6YB3nPKGC_2Dn4NwaRYYZqk1_DAg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cAikv6nuzdq0RUgjPnHmiq01osRkv5AbnAAfvNtuE54YTk0n7a2cXQKKuc6YB3nPKGC_2Dn4NwaRYYZqk1_DAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cFo5LSFRpcHo5DwMBKpDumosOWPRfhNP6MG-eLN4eFAN54ykYhaKrQK6QpSklBuNp7xdgB9m5AA2qqsRqTXPXA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cFo5LSFRpcHo5DwMBKpDumosOWPRfhNP6MG-eLN4eFAN54ykYhaKrQK6QpSklBuNp7xdgB9m5AA2qqsRqTXPXA== new file mode 100644 index 0000000..51d1fc1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cFo5LSFRpcHo5DwMBKpDumosOWPRfhNP6MG-eLN4eFAN54ykYhaKrQK6QpSklBuNp7xdgB9m5AA2qqsRqTXPXA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cG1_-bl_5SKxpTCf36rM8kcDFovxCqtOXydhpb6EVLzeyRO-2X1dp8bnU8sbh855xnhvLlCHRl0wL_S3EOZ0Tw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cG1_-bl_5SKxpTCf36rM8kcDFovxCqtOXydhpb6EVLzeyRO-2X1dp8bnU8sbh855xnhvLlCHRl0wL_S3EOZ0Tw== new file mode 100644 index 0000000..10ae49e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cG1_-bl_5SKxpTCf36rM8kcDFovxCqtOXydhpb6EVLzeyRO-2X1dp8bnU8sbh855xnhvLlCHRl0wL_S3EOZ0Tw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cIXVgRvtigkINSmHbmZxi-yv1uEGO-31vHm-GKAhYJII2BV80IbdP0Bd3zNVzUxp_zupdwpfkW5_8cRW0wep8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cIXVgRvtigkINSmHbmZxi-yv1uEGO-31vHm-GKAhYJII2BV80IbdP0Bd3zNVzUxp_zupdwpfkW5_8cRW0wep8Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cIXVgRvtigkINSmHbmZxi-yv1uEGO-31vHm-GKAhYJII2BV80IbdP0Bd3zNVzUxp_zupdwpfkW5_8cRW0wep8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cKQ5QrQDcxrvpKAm8jeZ2dq5eruFlOxDR9bJ8FgGy88ewEZH2N83zKp0h_y2N5vY5vaofjSu5EdYQhDn8ljvAw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cKQ5QrQDcxrvpKAm8jeZ2dq5eruFlOxDR9bJ8FgGy88ewEZH2N83zKp0h_y2N5vY5vaofjSu5EdYQhDn8ljvAw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cKQ5QrQDcxrvpKAm8jeZ2dq5eruFlOxDR9bJ8FgGy88ewEZH2N83zKp0h_y2N5vY5vaofjSu5EdYQhDn8ljvAw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cKZGZwGodA1GoNOJFWr6dK9A1BwC7OPOg-jN3PXKZdKJS0XrsANJSs2hV2SWS7Fu75D96tfw3Ca1__luc1EkiQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cKZGZwGodA1GoNOJFWr6dK9A1BwC7OPOg-jN3PXKZdKJS0XrsANJSs2hV2SWS7Fu75D96tfw3Ca1__luc1EkiQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cKZGZwGodA1GoNOJFWr6dK9A1BwC7OPOg-jN3PXKZdKJS0XrsANJSs2hV2SWS7Fu75D96tfw3Ca1__luc1EkiQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cPQbE2N2Nsgmg3exJA1yBiNzNfNxAqCzNIDMWsnKC8yw8ebpYELfMKxZ7BRu5ExkEaKslM7gYZ9Mk-48IXSfOg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cPQbE2N2Nsgmg3exJA1yBiNzNfNxAqCzNIDMWsnKC8yw8ebpYELfMKxZ7BRu5ExkEaKslM7gYZ9Mk-48IXSfOg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cPQbE2N2Nsgmg3exJA1yBiNzNfNxAqCzNIDMWsnKC8yw8ebpYELfMKxZ7BRu5ExkEaKslM7gYZ9Mk-48IXSfOg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cQ4tXjK9jiaQS-xr5lLvm-6SmfxmzT4NjOk3t6arjGtj1Ikr0fQgiB3i5jwxmFX0xjKt6yzjWSOdsHF4ML5_Iw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cQ4tXjK9jiaQS-xr5lLvm-6SmfxmzT4NjOk3t6arjGtj1Ikr0fQgiB3i5jwxmFX0xjKt6yzjWSOdsHF4ML5_Iw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cQ4tXjK9jiaQS-xr5lLvm-6SmfxmzT4NjOk3t6arjGtj1Ikr0fQgiB3i5jwxmFX0xjKt6yzjWSOdsHF4ML5_Iw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cV1RBSb-VINwauu9Hq3lvVnS1yb7t9UN9V5ByEbrPGfvxfT-oUA2uIUwKFIVc-2P6pZf47L9R4I7QOjGBp17tw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cV1RBSb-VINwauu9Hq3lvVnS1yb7t9UN9V5ByEbrPGfvxfT-oUA2uIUwKFIVc-2P6pZf47L9R4I7QOjGBp17tw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cV1RBSb-VINwauu9Hq3lvVnS1yb7t9UN9V5ByEbrPGfvxfT-oUA2uIUwKFIVc-2P6pZf47L9R4I7QOjGBp17tw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cX7so4P9BWr65cfNLq_sDX39FcNU6EozVf1h8pKEMRgccOPkRjbuhWnCIqLnjm3PrR3oqrcUcwK3v1GejUMF3A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cX7so4P9BWr65cfNLq_sDX39FcNU6EozVf1h8pKEMRgccOPkRjbuhWnCIqLnjm3PrR3oqrcUcwK3v1GejUMF3A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cX7so4P9BWr65cfNLq_sDX39FcNU6EozVf1h8pKEMRgccOPkRjbuhWnCIqLnjm3PrR3oqrcUcwK3v1GejUMF3A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~c_t05ChJ78ea8nIhmR-Dr28_Vbl0CbnOnS68NzDqwikq4q1PLmbrUqJqsuOvGaWYc46ddDv-DczkJwFVf8k8mw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~c_t05ChJ78ea8nIhmR-Dr28_Vbl0CbnOnS68NzDqwikq4q1PLmbrUqJqsuOvGaWYc46ddDv-DczkJwFVf8k8mw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~c_t05ChJ78ea8nIhmR-Dr28_Vbl0CbnOnS68NzDqwikq4q1PLmbrUqJqsuOvGaWYc46ddDv-DczkJwFVf8k8mw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cfDxtHmuLuN8PgWChfD00EzIL0lpB9va9sLP_p-x8ZR0S6ghZYhguntdLD8h9jhl7P8l1kKBIIlRWSfZ5YcqDQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cfDxtHmuLuN8PgWChfD00EzIL0lpB9va9sLP_p-x8ZR0S6ghZYhguntdLD8h9jhl7P8l1kKBIIlRWSfZ5YcqDQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cfDxtHmuLuN8PgWChfD00EzIL0lpB9va9sLP_p-x8ZR0S6ghZYhguntdLD8h9jhl7P8l1kKBIIlRWSfZ5YcqDQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cgzuzGIH4MhY4f1DzTazDIEfaGnE8OgsTdoKY2OkgMaZCxsEmcSV6yaryYEPQ46N7opjKdwEasS15UFHgRrvYg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cgzuzGIH4MhY4f1DzTazDIEfaGnE8OgsTdoKY2OkgMaZCxsEmcSV6yaryYEPQ46N7opjKdwEasS15UFHgRrvYg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cgzuzGIH4MhY4f1DzTazDIEfaGnE8OgsTdoKY2OkgMaZCxsEmcSV6yaryYEPQ46N7opjKdwEasS15UFHgRrvYg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~chwU_82joa-4a_9EeRZUyZir_u4vuPGwSlk3PQ7-C0YbILR9oUi0H8aL2h-GoIPlEjTHcDJ69ObLsrynJkdpcQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~chwU_82joa-4a_9EeRZUyZir_u4vuPGwSlk3PQ7-C0YbILR9oUi0H8aL2h-GoIPlEjTHcDJ69ObLsrynJkdpcQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~chwU_82joa-4a_9EeRZUyZir_u4vuPGwSlk3PQ7-C0YbILR9oUi0H8aL2h-GoIPlEjTHcDJ69ObLsrynJkdpcQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~clh9suuEnkc8FRJvkbfmhLF54Cfi9hPgNcMS1Lxx2JjykVqEne4qR2qGBs90uA0a1aRo585tH8aWfcTzDMpiMA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~clh9suuEnkc8FRJvkbfmhLF54Cfi9hPgNcMS1Lxx2JjykVqEne4qR2qGBs90uA0a1aRo585tH8aWfcTzDMpiMA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~clh9suuEnkc8FRJvkbfmhLF54Cfi9hPgNcMS1Lxx2JjykVqEne4qR2qGBs90uA0a1aRo585tH8aWfcTzDMpiMA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cnEvht1zCj-u-MoMUmbdo9qjnkxmAWv8uHCj2lFTXAQX-ZHtue9aeEqxgqzesCN3Jt-z3f1omdctivcWxxSzkg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cnEvht1zCj-u-MoMUmbdo9qjnkxmAWv8uHCj2lFTXAQX-ZHtue9aeEqxgqzesCN3Jt-z3f1omdctivcWxxSzkg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cnEvht1zCj-u-MoMUmbdo9qjnkxmAWv8uHCj2lFTXAQX-ZHtue9aeEqxgqzesCN3Jt-z3f1omdctivcWxxSzkg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cpAq0hWhntbmaXhfVxfr6fEJiRfen6wi7uAk18wpWVGweEUvNfkbyTxUo9AJFH4cOmjxyLScxdFtCMOhaULGwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cpAq0hWhntbmaXhfVxfr6fEJiRfen6wi7uAk18wpWVGweEUvNfkbyTxUo9AJFH4cOmjxyLScxdFtCMOhaULGwg== new file mode 100644 index 0000000..1eda9c1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cpAq0hWhntbmaXhfVxfr6fEJiRfen6wi7uAk18wpWVGweEUvNfkbyTxUo9AJFH4cOmjxyLScxdFtCMOhaULGwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cq93QPJSgK4yfDocNdadXFg9uvzB9HG0hEJrvoBOTe0aI0xboOeIzBEPgpSkJTcafwl_7Mak_w-1fESG1uvEfA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cq93QPJSgK4yfDocNdadXFg9uvzB9HG0hEJrvoBOTe0aI0xboOeIzBEPgpSkJTcafwl_7Mak_w-1fESG1uvEfA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cq93QPJSgK4yfDocNdadXFg9uvzB9HG0hEJrvoBOTe0aI0xboOeIzBEPgpSkJTcafwl_7Mak_w-1fESG1uvEfA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cyVlT2aiX0PJ8XdrC_KN1KIh6xFNJpbjAaKAQDNyeitQPEgkulmLJ4QJeSnQpY9yNLJYzf3u16Br8B5xZS-sUA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cyVlT2aiX0PJ8XdrC_KN1KIh6xFNJpbjAaKAQDNyeitQPEgkulmLJ4QJeSnQpY9yNLJYzf3u16Br8B5xZS-sUA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cyVlT2aiX0PJ8XdrC_KN1KIh6xFNJpbjAaKAQDNyeitQPEgkulmLJ4QJeSnQpY9yNLJYzf3u16Br8B5xZS-sUA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cyb3jL52RrCYztohqZuJ5pSgGkxTMWJ-f8pfuEqH0qMK3Ih1n1vGD7-r-QfKFNeVl3-rFF8AQXsX7xmOyUMYUQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cyb3jL52RrCYztohqZuJ5pSgGkxTMWJ-f8pfuEqH0qMK3Ih1n1vGD7-r-QfKFNeVl3-rFF8AQXsX7xmOyUMYUQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~cyb3jL52RrCYztohqZuJ5pSgGkxTMWJ-f8pfuEqH0qMK3Ih1n1vGD7-r-QfKFNeVl3-rFF8AQXsX7xmOyUMYUQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~d5gmjSfah8OK46Blpf3t6dGovmEadXjC5VVsvxIpcB8riguN0Pv0gCfErtGT6WV2zmHcSjsVyVfD1XmK-8Q9qA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~d5gmjSfah8OK46Blpf3t6dGovmEadXjC5VVsvxIpcB8riguN0Pv0gCfErtGT6WV2zmHcSjsVyVfD1XmK-8Q9qA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~d5gmjSfah8OK46Blpf3t6dGovmEadXjC5VVsvxIpcB8riguN0Pv0gCfErtGT6WV2zmHcSjsVyVfD1XmK-8Q9qA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dCvbQUoqStTJTD8hA33IDfwlVbNNHUIfSygt1LMC0NppFDRtW6XLXeBoMTaOxzfKPfvwnIVar32rTEoQ8YH07w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dCvbQUoqStTJTD8hA33IDfwlVbNNHUIfSygt1LMC0NppFDRtW6XLXeBoMTaOxzfKPfvwnIVar32rTEoQ8YH07w== new file mode 100644 index 0000000..a8301f1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dCvbQUoqStTJTD8hA33IDfwlVbNNHUIfSygt1LMC0NppFDRtW6XLXeBoMTaOxzfKPfvwnIVar32rTEoQ8YH07w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dIu1O-MaZWI-8AIGcCfpxAUL9oRxSRk9VQnDZOSRN-ssrNdB1fi5bNUb-eqL1zfW2QK4_roBBC7cOGSXqUVQtg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dIu1O-MaZWI-8AIGcCfpxAUL9oRxSRk9VQnDZOSRN-ssrNdB1fi5bNUb-eqL1zfW2QK4_roBBC7cOGSXqUVQtg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dIu1O-MaZWI-8AIGcCfpxAUL9oRxSRk9VQnDZOSRN-ssrNdB1fi5bNUb-eqL1zfW2QK4_roBBC7cOGSXqUVQtg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dRD9AiMchMTnxA70tZ8ssxX_auY4znLkqwSDH1Cecow8I9N-vZdGVREkMrh7E6IAltCrcV66TsE0xR3k5hEXsw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dRD9AiMchMTnxA70tZ8ssxX_auY4znLkqwSDH1Cecow8I9N-vZdGVREkMrh7E6IAltCrcV66TsE0xR3k5hEXsw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dRD9AiMchMTnxA70tZ8ssxX_auY4znLkqwSDH1Cecow8I9N-vZdGVREkMrh7E6IAltCrcV66TsE0xR3k5hEXsw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dhEO6bDQgph9QB4wbKtsGN3NdRwqHygXRCznznd2p_tG85cEts1lmfv7vbofc_MyE01Ta31JYs1CD_wL8pvoXQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dhEO6bDQgph9QB4wbKtsGN3NdRwqHygXRCznznd2p_tG85cEts1lmfv7vbofc_MyE01Ta31JYs1CD_wL8pvoXQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dhEO6bDQgph9QB4wbKtsGN3NdRwqHygXRCznznd2p_tG85cEts1lmfv7vbofc_MyE01Ta31JYs1CD_wL8pvoXQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dmhdb064f16X_a5dUkBAwreyi6UU12k7enezexn8KoDuxbFi0itvr8K1Izn0IO_g3wm-Mom4zIHS0J3bnqNZUw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dmhdb064f16X_a5dUkBAwreyi6UU12k7enezexn8KoDuxbFi0itvr8K1Izn0IO_g3wm-Mom4zIHS0J3bnqNZUw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dmhdb064f16X_a5dUkBAwreyi6UU12k7enezexn8KoDuxbFi0itvr8K1Izn0IO_g3wm-Mom4zIHS0J3bnqNZUw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dprdW_uelC8o7wI7OAnksq5pgR7pxGzMpXaVZeWruOXkq633573jW2LaTYyZ_e2VIUhID8NsooY5O96-i65elA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dprdW_uelC8o7wI7OAnksq5pgR7pxGzMpXaVZeWruOXkq633573jW2LaTYyZ_e2VIUhID8NsooY5O96-i65elA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dprdW_uelC8o7wI7OAnksq5pgR7pxGzMpXaVZeWruOXkq633573jW2LaTYyZ_e2VIUhID8NsooY5O96-i65elA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dqXurddCcZZgF4PQBS1hI0GToCoQi3AI41RIbUz5O7XbsEmZ368u_FzrN5_vx2nFNsJfxA0cw73yTv2cgnZkpg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dqXurddCcZZgF4PQBS1hI0GToCoQi3AI41RIbUz5O7XbsEmZ368u_FzrN5_vx2nFNsJfxA0cw73yTv2cgnZkpg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dqXurddCcZZgF4PQBS1hI0GToCoQi3AI41RIbUz5O7XbsEmZ368u_FzrN5_vx2nFNsJfxA0cw73yTv2cgnZkpg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~drz32zATZ0loPHvrVSkc9FVWXQEVJAbcfmdIKTbNCZPP_QvmO50hHmgRppaQr0gJFn5bx5ypDTgjTMZ_Y3pxEQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~drz32zATZ0loPHvrVSkc9FVWXQEVJAbcfmdIKTbNCZPP_QvmO50hHmgRppaQr0gJFn5bx5ypDTgjTMZ_Y3pxEQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~drz32zATZ0loPHvrVSkc9FVWXQEVJAbcfmdIKTbNCZPP_QvmO50hHmgRppaQr0gJFn5bx5ypDTgjTMZ_Y3pxEQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dyUgAF3xZp17SObHaN3kGoTnLM5mDqdiZb5X8LawhrgrSuE8S9i5hVpoIgZr4IX_KjTzFvXPEqQpVuni76fJyQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dyUgAF3xZp17SObHaN3kGoTnLM5mDqdiZb5X8LawhrgrSuE8S9i5hVpoIgZr4IX_KjTzFvXPEqQpVuni76fJyQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~dyUgAF3xZp17SObHaN3kGoTnLM5mDqdiZb5X8LawhrgrSuE8S9i5hVpoIgZr4IX_KjTzFvXPEqQpVuni76fJyQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~e-QHNQZLBIPwtn-Ldz44M5C16r4ZM3fOlmApWVqv6dcAC7jWaObPakAJbZVLN1fgh3IERi2Hee2PAVkDxTPGbA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~e-QHNQZLBIPwtn-Ldz44M5C16r4ZM3fOlmApWVqv6dcAC7jWaObPakAJbZVLN1fgh3IERi2Hee2PAVkDxTPGbA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~e-QHNQZLBIPwtn-Ldz44M5C16r4ZM3fOlmApWVqv6dcAC7jWaObPakAJbZVLN1fgh3IERi2Hee2PAVkDxTPGbA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~e34WyiIdAlzHp3SF4VqRDF3p2a6JZIu4ge94_Nsh1mn5IHrSw7ww_4kjyTqfaB0WnDiPp0WiMc6ajouOJyil3A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~e34WyiIdAlzHp3SF4VqRDF3p2a6JZIu4ge94_Nsh1mn5IHrSw7ww_4kjyTqfaB0WnDiPp0WiMc6ajouOJyil3A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~e34WyiIdAlzHp3SF4VqRDF3p2a6JZIu4ge94_Nsh1mn5IHrSw7ww_4kjyTqfaB0WnDiPp0WiMc6ajouOJyil3A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~e5C1qGQx5qWTLQXKo0OotlousVXpMxJ5mlI0b8OZuB7LhtX6KxVh27OjvUWd9Cs34uYJaYjNVLBG_jMBoo2jYQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~e5C1qGQx5qWTLQXKo0OotlousVXpMxJ5mlI0b8OZuB7LhtX6KxVh27OjvUWd9Cs34uYJaYjNVLBG_jMBoo2jYQ== new file mode 100644 index 0000000..a65dda0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~e5C1qGQx5qWTLQXKo0OotlousVXpMxJ5mlI0b8OZuB7LhtX6KxVh27OjvUWd9Cs34uYJaYjNVLBG_jMBoo2jYQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eA_71VF51annvjmRsvOpw0owtWIWZSXbRJAvZ_BTWlCv9eQP0-zlVKc6Y8Rb-SIn6p3WfBVRytNVSTjyfTwEIw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eA_71VF51annvjmRsvOpw0owtWIWZSXbRJAvZ_BTWlCv9eQP0-zlVKc6Y8Rb-SIn6p3WfBVRytNVSTjyfTwEIw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eA_71VF51annvjmRsvOpw0owtWIWZSXbRJAvZ_BTWlCv9eQP0-zlVKc6Y8Rb-SIn6p3WfBVRytNVSTjyfTwEIw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eFdOdAYW-St3KkomDRig65BHHl55xp8Q9rgfhtLPm2CAH_sww_srOuq2cDdS18MJLpFHj5wKa60z8TocY-YVTg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eFdOdAYW-St3KkomDRig65BHHl55xp8Q9rgfhtLPm2CAH_sww_srOuq2cDdS18MJLpFHj5wKa60z8TocY-YVTg== new file mode 100644 index 0000000..ec16a56 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eFdOdAYW-St3KkomDRig65BHHl55xp8Q9rgfhtLPm2CAH_sww_srOuq2cDdS18MJLpFHj5wKa60z8TocY-YVTg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eGoC90IBWQPGxv2FJVLScpEvR0DhWEdhiobiF_cfVBnSXhAxr-5YUxOJZESTTrBLkDpoWxRIt1XVb3Aa_pvizg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eGoC90IBWQPGxv2FJVLScpEvR0DhWEdhiobiF_cfVBnSXhAxr-5YUxOJZESTTrBLkDpoWxRIt1XVb3Aa_pvizg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eGoC90IBWQPGxv2FJVLScpEvR0DhWEdhiobiF_cfVBnSXhAxr-5YUxOJZESTTrBLkDpoWxRIt1XVb3Aa_pvizg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eKSBf7ARukwu0iZjM2aVMKfkEDAPjf1v-s_vM_ZPKH63t15CGA9vWMq5J1k_aPq0B2kPr5LHiCU2DCX6QYVonA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eKSBf7ARukwu0iZjM2aVMKfkEDAPjf1v-s_vM_ZPKH63t15CGA9vWMq5J1k_aPq0B2kPr5LHiCU2DCX6QYVonA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eKSBf7ARukwu0iZjM2aVMKfkEDAPjf1v-s_vM_ZPKH63t15CGA9vWMq5J1k_aPq0B2kPr5LHiCU2DCX6QYVonA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eLa0qN8p7LBQg3O6wjtJW0UeOmDoac1C-KV79AhgPJzaL6tTgcFsMGkRtfugfJoGSwthni_udlOvZupcUOPl-w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eLa0qN8p7LBQg3O6wjtJW0UeOmDoac1C-KV79AhgPJzaL6tTgcFsMGkRtfugfJoGSwthni_udlOvZupcUOPl-w== new file mode 100644 index 0000000..5ac1656 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eLa0qN8p7LBQg3O6wjtJW0UeOmDoac1C-KV79AhgPJzaL6tTgcFsMGkRtfugfJoGSwthni_udlOvZupcUOPl-w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eMp7ckzBYo-3vCbAM8tFGY5OXnD8_UNsXOs6iJ33NUhbstoIKEDirp7vEIz7jmvdHgFL-tBpQaJdwGXVOVvMmQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eMp7ckzBYo-3vCbAM8tFGY5OXnD8_UNsXOs6iJ33NUhbstoIKEDirp7vEIz7jmvdHgFL-tBpQaJdwGXVOVvMmQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eMp7ckzBYo-3vCbAM8tFGY5OXnD8_UNsXOs6iJ33NUhbstoIKEDirp7vEIz7jmvdHgFL-tBpQaJdwGXVOVvMmQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eguAdRz1ZPsqL4yD1IgOzekPXhNNk3JwW-oxQs4DVUex4LcK8fCQA-4B49E8zXgUIIItYHllQYCab6Q-EfdEpA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eguAdRz1ZPsqL4yD1IgOzekPXhNNk3JwW-oxQs4DVUex4LcK8fCQA-4B49E8zXgUIIItYHllQYCab6Q-EfdEpA== new file mode 100644 index 0000000..048882a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~eguAdRz1ZPsqL4yD1IgOzekPXhNNk3JwW-oxQs4DVUex4LcK8fCQA-4B49E8zXgUIIItYHllQYCab6Q-EfdEpA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ekJaYrg_CZIL4n_ErJ-PzyeTS8Ab08Av0bj1LXBhiYkdJPsNg-mijt8fD_CTQocWnf6ie_Qi5Tj0B7mlpCK8GQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ekJaYrg_CZIL4n_ErJ-PzyeTS8Ab08Av0bj1LXBhiYkdJPsNg-mijt8fD_CTQocWnf6ie_Qi5Tj0B7mlpCK8GQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ekJaYrg_CZIL4n_ErJ-PzyeTS8Ab08Av0bj1LXBhiYkdJPsNg-mijt8fD_CTQocWnf6ie_Qi5Tj0B7mlpCK8GQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ezsvnCQ_uBjgvhmbO-u3lVDbrp0iduYWfDJgWmwQxFWdPhPJy8342C83nJHtGsnzvQoOQxRdQa81cUIl8qBArA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ezsvnCQ_uBjgvhmbO-u3lVDbrp0iduYWfDJgWmwQxFWdPhPJy8342C83nJHtGsnzvQoOQxRdQa81cUIl8qBArA== new file mode 100644 index 0000000..ab3e2f4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ezsvnCQ_uBjgvhmbO-u3lVDbrp0iduYWfDJgWmwQxFWdPhPJy8342C83nJHtGsnzvQoOQxRdQa81cUIl8qBArA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~f5FbkT00ObEyiWVOfoWFeqZzEY8wLY0V08fRWeC4Il1_Au9ruBmUn8AuZaHLzGvjfC323unmDZ8didpyO4hMpw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~f5FbkT00ObEyiWVOfoWFeqZzEY8wLY0V08fRWeC4Il1_Au9ruBmUn8AuZaHLzGvjfC323unmDZ8didpyO4hMpw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~f5FbkT00ObEyiWVOfoWFeqZzEY8wLY0V08fRWeC4Il1_Au9ruBmUn8AuZaHLzGvjfC323unmDZ8didpyO4hMpw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fEo8BfosQy0Bf4CxKq2Th_1HlwTc6OIQpJ5tPHQCJwTBYxMRxJIMid864atFExqktWpeJ2SIRjKrFSJWIw3uIQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fEo8BfosQy0Bf4CxKq2Th_1HlwTc6OIQpJ5tPHQCJwTBYxMRxJIMid864atFExqktWpeJ2SIRjKrFSJWIw3uIQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fEo8BfosQy0Bf4CxKq2Th_1HlwTc6OIQpJ5tPHQCJwTBYxMRxJIMid864atFExqktWpeJ2SIRjKrFSJWIw3uIQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fJJd4Cp6KYHHjuaV5mQW0PeApXluT7VeCyxiPVSDGGPt1JyGOOpiSZPNEGbXYxqJZ9HwtUf88wHqwr05r9fsJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fJJd4Cp6KYHHjuaV5mQW0PeApXluT7VeCyxiPVSDGGPt1JyGOOpiSZPNEGbXYxqJZ9HwtUf88wHqwr05r9fsJg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fJJd4Cp6KYHHjuaV5mQW0PeApXluT7VeCyxiPVSDGGPt1JyGOOpiSZPNEGbXYxqJZ9HwtUf88wHqwr05r9fsJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fPsjs7w-a7EWScZSc-YGcg5E5jAzLb1unF8aeb1tlnt89pNmpC4br8LLT1MqZdGvAU8inqZk8GNz34pyCOhsGw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fPsjs7w-a7EWScZSc-YGcg5E5jAzLb1unF8aeb1tlnt89pNmpC4br8LLT1MqZdGvAU8inqZk8GNz34pyCOhsGw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fPsjs7w-a7EWScZSc-YGcg5E5jAzLb1unF8aeb1tlnt89pNmpC4br8LLT1MqZdGvAU8inqZk8GNz34pyCOhsGw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fROkMKYTOhv0PfTaDtHSi7cZ_9ufpcq4EirjdSR16BIJ1k0_oGl95gxJoD-m7-LfAAkjn2DU50yicW0uLmNo0A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fROkMKYTOhv0PfTaDtHSi7cZ_9ufpcq4EirjdSR16BIJ1k0_oGl95gxJoD-m7-LfAAkjn2DU50yicW0uLmNo0A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fROkMKYTOhv0PfTaDtHSi7cZ_9ufpcq4EirjdSR16BIJ1k0_oGl95gxJoD-m7-LfAAkjn2DU50yicW0uLmNo0A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fSrgIS3E3wsZt7VhE-NPfwLgb9VQaeT3qNMJ0npeZDRfZo2_dNSyTSUkAtEiQwwtUMIegxnUi0BbghLNghWeGw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fSrgIS3E3wsZt7VhE-NPfwLgb9VQaeT3qNMJ0npeZDRfZo2_dNSyTSUkAtEiQwwtUMIegxnUi0BbghLNghWeGw== new file mode 100644 index 0000000..2f1268e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fSrgIS3E3wsZt7VhE-NPfwLgb9VQaeT3qNMJ0npeZDRfZo2_dNSyTSUkAtEiQwwtUMIegxnUi0BbghLNghWeGw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fUyjEKS5hNJzh-8qs5ew72g0IZOclq9_TWveSnRTC8GhD3yz3nblAIXiKUHTFjIgmSh6RSqrU9SJvsRfmSu8nQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fUyjEKS5hNJzh-8qs5ew72g0IZOclq9_TWveSnRTC8GhD3yz3nblAIXiKUHTFjIgmSh6RSqrU9SJvsRfmSu8nQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fUyjEKS5hNJzh-8qs5ew72g0IZOclq9_TWveSnRTC8GhD3yz3nblAIXiKUHTFjIgmSh6RSqrU9SJvsRfmSu8nQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fVjRmpvlVGmV9URY-GqZIf2OuJ9Xw4Pto_zSt60JxFhxBlm49HUxVUylLsNnijCGbSkV4NBOKNuarScoJodutg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fVjRmpvlVGmV9URY-GqZIf2OuJ9Xw4Pto_zSt60JxFhxBlm49HUxVUylLsNnijCGbSkV4NBOKNuarScoJodutg== new file mode 100644 index 0000000..5b458e2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fVjRmpvlVGmV9URY-GqZIf2OuJ9Xw4Pto_zSt60JxFhxBlm49HUxVUylLsNnijCGbSkV4NBOKNuarScoJodutg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fZ-El9yHD-ziGkrT3tHcbOySUvU3QscYwUA7frHKNYY68TlSAZcXV7ipwFv2MyhzLJOjEY1DxZj_IP9NunSE8A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fZ-El9yHD-ziGkrT3tHcbOySUvU3QscYwUA7frHKNYY68TlSAZcXV7ipwFv2MyhzLJOjEY1DxZj_IP9NunSE8A== new file mode 100644 index 0000000..1947949 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fZ-El9yHD-ziGkrT3tHcbOySUvU3QscYwUA7frHKNYY68TlSAZcXV7ipwFv2MyhzLJOjEY1DxZj_IP9NunSE8A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fcymoCSpiTXtsTBcxmTkAajQo0D3DzhblvS2Pp3xHgzzvF7K9SHeDIqTIjHgf200yUEIZRgo5MikunOZl3CjWw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fcymoCSpiTXtsTBcxmTkAajQo0D3DzhblvS2Pp3xHgzzvF7K9SHeDIqTIjHgf200yUEIZRgo5MikunOZl3CjWw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fcymoCSpiTXtsTBcxmTkAajQo0D3DzhblvS2Pp3xHgzzvF7K9SHeDIqTIjHgf200yUEIZRgo5MikunOZl3CjWw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fecgBZVcFxO_xr9B9HW98PxMjrkYfy8FJxCq25kBc5qguITAx0sje46YwhTo4dbbLSaLNXvURgkWyTlEDaPr_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fecgBZVcFxO_xr9B9HW98PxMjrkYfy8FJxCq25kBc5qguITAx0sje46YwhTo4dbbLSaLNXvURgkWyTlEDaPr_w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fecgBZVcFxO_xr9B9HW98PxMjrkYfy8FJxCq25kBc5qguITAx0sje46YwhTo4dbbLSaLNXvURgkWyTlEDaPr_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ff4EOF6DwEljquf9lU-h-xWNnoQ61t37CCF4kfPZUJ7oOj7n4PdBlc1YEXGBciglNTIcHuKP_-NyIH-EU84LCA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ff4EOF6DwEljquf9lU-h-xWNnoQ61t37CCF4kfPZUJ7oOj7n4PdBlc1YEXGBciglNTIcHuKP_-NyIH-EU84LCA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ff4EOF6DwEljquf9lU-h-xWNnoQ61t37CCF4kfPZUJ7oOj7n4PdBlc1YEXGBciglNTIcHuKP_-NyIH-EU84LCA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fgU1eFzDYDkMDeuCIh0D-6TL75bWoYSvh8j8gYuAcv1RWi8isNGzTzQ0iO-2U26why-wayg30jg05gMW_0F73w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fgU1eFzDYDkMDeuCIh0D-6TL75bWoYSvh8j8gYuAcv1RWi8isNGzTzQ0iO-2U26why-wayg30jg05gMW_0F73w== new file mode 100644 index 0000000..b63f50c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fgU1eFzDYDkMDeuCIh0D-6TL75bWoYSvh8j8gYuAcv1RWi8isNGzTzQ0iO-2U26why-wayg30jg05gMW_0F73w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fhBPQNywS4X8UtClxDmUoWXNA0Wxoq9SjxPr3voMyFuJOcfLqjibrAmmqDhfEAQFdUf_IuR0jTQU5Wm7Aw8HTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fhBPQNywS4X8UtClxDmUoWXNA0Wxoq9SjxPr3voMyFuJOcfLqjibrAmmqDhfEAQFdUf_IuR0jTQU5Wm7Aw8HTw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fhBPQNywS4X8UtClxDmUoWXNA0Wxoq9SjxPr3voMyFuJOcfLqjibrAmmqDhfEAQFdUf_IuR0jTQU5Wm7Aw8HTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fyGD8zlRWfLlR9kCXRT-CRaYdQsYmr-WZQWlcelj5k7yF50SmXxak0JjNGYCp_Ri44RC20qeuFHaPKCiYfxf0w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fyGD8zlRWfLlR9kCXRT-CRaYdQsYmr-WZQWlcelj5k7yF50SmXxak0JjNGYCp_Ri44RC20qeuFHaPKCiYfxf0w== new file mode 100644 index 0000000..60ee1c2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fyGD8zlRWfLlR9kCXRT-CRaYdQsYmr-WZQWlcelj5k7yF50SmXxak0JjNGYCp_Ri44RC20qeuFHaPKCiYfxf0w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fzE-B0WY6AFyc5S_jaVyPXh0HQpO_Tos7gq6S07wOy1hrngW_epswWpC2SWGqeRfn7AVFrskvjRcaXMzCXHi-g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fzE-B0WY6AFyc5S_jaVyPXh0HQpO_Tos7gq6S07wOy1hrngW_epswWpC2SWGqeRfn7AVFrskvjRcaXMzCXHi-g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fzE-B0WY6AFyc5S_jaVyPXh0HQpO_Tos7gq6S07wOy1hrngW_epswWpC2SWGqeRfn7AVFrskvjRcaXMzCXHi-g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fzfl8lowQjvQED6BaPKG57KNlidV-4concMMulRGWhRGSx0wVF2Lxh8fR9R4M_Iqg1oUNhcUYykOHHOGjZgoiw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fzfl8lowQjvQED6BaPKG57KNlidV-4concMMulRGWhRGSx0wVF2Lxh8fR9R4M_Iqg1oUNhcUYykOHHOGjZgoiw== new file mode 100644 index 0000000..eef3236 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~fzfl8lowQjvQED6BaPKG57KNlidV-4concMMulRGWhRGSx0wVF2Lxh8fR9R4M_Iqg1oUNhcUYykOHHOGjZgoiw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g0hNgivgK1OTHhe1f_4rov6Ft0LoeVadbQkwyRtavet6j9u-XfD9v1SiqTO-6LtwXnYfo8wcG2U9ncxOyCZIvg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g0hNgivgK1OTHhe1f_4rov6Ft0LoeVadbQkwyRtavet6j9u-XfD9v1SiqTO-6LtwXnYfo8wcG2U9ncxOyCZIvg== new file mode 100644 index 0000000..c77e30e Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g0hNgivgK1OTHhe1f_4rov6Ft0LoeVadbQkwyRtavet6j9u-XfD9v1SiqTO-6LtwXnYfo8wcG2U9ncxOyCZIvg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g0vup4Mc-8RDOmvroOBRAcOEXfcHRz5rblgBSndPl6yTWjLXlcWTQVJ7anOJpH4Xdh9GyVftJuyNi3BbusepWw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g0vup4Mc-8RDOmvroOBRAcOEXfcHRz5rblgBSndPl6yTWjLXlcWTQVJ7anOJpH4Xdh9GyVftJuyNi3BbusepWw== new file mode 100644 index 0000000..233ce67 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g0vup4Mc-8RDOmvroOBRAcOEXfcHRz5rblgBSndPl6yTWjLXlcWTQVJ7anOJpH4Xdh9GyVftJuyNi3BbusepWw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g1ZvPD63RJuHbSSHWPw0p_MvMVlE0wEgZKoOu6kqHSOoIJ3zZVr6BTGP7ctZVWHJiMWZkdS39Mxepmxv414Qxw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g1ZvPD63RJuHbSSHWPw0p_MvMVlE0wEgZKoOu6kqHSOoIJ3zZVr6BTGP7ctZVWHJiMWZkdS39Mxepmxv414Qxw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g1ZvPD63RJuHbSSHWPw0p_MvMVlE0wEgZKoOu6kqHSOoIJ3zZVr6BTGP7ctZVWHJiMWZkdS39Mxepmxv414Qxw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g9JlH3OqX1QpKtBkimDnFC6iCV-4DusRZqMLaA1p249EJ2YbIOtwM2y4DOgL-YZkXuBEEKi4bhM0iQMXJe0B_w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g9JlH3OqX1QpKtBkimDnFC6iCV-4DusRZqMLaA1p249EJ2YbIOtwM2y4DOgL-YZkXuBEEKi4bhM0iQMXJe0B_w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g9JlH3OqX1QpKtBkimDnFC6iCV-4DusRZqMLaA1p249EJ2YbIOtwM2y4DOgL-YZkXuBEEKi4bhM0iQMXJe0B_w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gJX8jQfzS6dtE_PdIU_yHq20-tQshqeFfG0Za1gpsp3-TgVxwcFg8aZJyRtE3ukooV3hokHICxsiBkuQOR-ZjQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gJX8jQfzS6dtE_PdIU_yHq20-tQshqeFfG0Za1gpsp3-TgVxwcFg8aZJyRtE3ukooV3hokHICxsiBkuQOR-ZjQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gJX8jQfzS6dtE_PdIU_yHq20-tQshqeFfG0Za1gpsp3-TgVxwcFg8aZJyRtE3ukooV3hokHICxsiBkuQOR-ZjQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gS9VTvKdgkTZt6x__Q_wRcjrcqNDXiHRzPbTCyE_SVBLimjFU-YeACcv0w6PC44mysdkGne7Ri9CfSAZ_2sgmw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gS9VTvKdgkTZt6x__Q_wRcjrcqNDXiHRzPbTCyE_SVBLimjFU-YeACcv0w6PC44mysdkGne7Ri9CfSAZ_2sgmw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gS9VTvKdgkTZt6x__Q_wRcjrcqNDXiHRzPbTCyE_SVBLimjFU-YeACcv0w6PC44mysdkGne7Ri9CfSAZ_2sgmw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gU7j9IIj9KtfsC-U-HZ9wxInmNIM4kToBb21QK4SnwRUK2Vp4zJtJJMuKtzVx_J74s8BqWvqjeXlRGRPODzLgQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gU7j9IIj9KtfsC-U-HZ9wxInmNIM4kToBb21QK4SnwRUK2Vp4zJtJJMuKtzVx_J74s8BqWvqjeXlRGRPODzLgQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gU7j9IIj9KtfsC-U-HZ9wxInmNIM4kToBb21QK4SnwRUK2Vp4zJtJJMuKtzVx_J74s8BqWvqjeXlRGRPODzLgQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gV4qXVasL9ZrBF4CyC5t8wvuDk4bNlmt3SEG0d7cpaH_CyYXBIlAtmks-UhbYKsWUFOJ6uc689e7nGZmhCfoZA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gV4qXVasL9ZrBF4CyC5t8wvuDk4bNlmt3SEG0d7cpaH_CyYXBIlAtmks-UhbYKsWUFOJ6uc689e7nGZmhCfoZA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gV4qXVasL9ZrBF4CyC5t8wvuDk4bNlmt3SEG0d7cpaH_CyYXBIlAtmks-UhbYKsWUFOJ6uc689e7nGZmhCfoZA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gX4E37LPZDwl1BypLC3ppHV5btDBySd_OF_LX-Lypwabfo32PxOzl6uEQCngAQwW1YVHT8-f70pqiVsKhgQFmQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gX4E37LPZDwl1BypLC3ppHV5btDBySd_OF_LX-Lypwabfo32PxOzl6uEQCngAQwW1YVHT8-f70pqiVsKhgQFmQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gX4E37LPZDwl1BypLC3ppHV5btDBySd_OF_LX-Lypwabfo32PxOzl6uEQCngAQwW1YVHT8-f70pqiVsKhgQFmQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gXFT3NESS2ya_lk8CFzEjE5_tgKSQsjbxkU7Bg9xJpoqvyDf3kmU9FvXV6uawNyOHKHG4t8oO1ka_zgVUhAlew== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gXFT3NESS2ya_lk8CFzEjE5_tgKSQsjbxkU7Bg9xJpoqvyDf3kmU9FvXV6uawNyOHKHG4t8oO1ka_zgVUhAlew== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gXFT3NESS2ya_lk8CFzEjE5_tgKSQsjbxkU7Bg9xJpoqvyDf3kmU9FvXV6uawNyOHKHG4t8oO1ka_zgVUhAlew== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g_wfsv2uEe6DID8_6FJbf0ocy5vHYk1-kzMC0F-qzj0EM6OPAO-6g4HLvnZS6j_PRE2Cu4nYw8BZQ3eYil9BKg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g_wfsv2uEe6DID8_6FJbf0ocy5vHYk1-kzMC0F-qzj0EM6OPAO-6g4HLvnZS6j_PRE2Cu4nYw8BZQ3eYil9BKg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~g_wfsv2uEe6DID8_6FJbf0ocy5vHYk1-kzMC0F-qzj0EM6OPAO-6g4HLvnZS6j_PRE2Cu4nYw8BZQ3eYil9BKg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~giBkGoc8dr7UWSZfw0RhhBw-5PzINVZ1TLikHIE80_QMGz9O7-DoofRlBe9ifLlOWVq0tWn4vSwELxz2n_EfBQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~giBkGoc8dr7UWSZfw0RhhBw-5PzINVZ1TLikHIE80_QMGz9O7-DoofRlBe9ifLlOWVq0tWn4vSwELxz2n_EfBQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~giBkGoc8dr7UWSZfw0RhhBw-5PzINVZ1TLikHIE80_QMGz9O7-DoofRlBe9ifLlOWVq0tWn4vSwELxz2n_EfBQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gnFEc_lK59pehXxDVFnA7xFnKzVu4lPAiTl04nv5kAVQOjHuioGTm7fQ2Sj7Aq08y6IFyTSHrV1XRRyZYkcypQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gnFEc_lK59pehXxDVFnA7xFnKzVu4lPAiTl04nv5kAVQOjHuioGTm7fQ2Sj7Aq08y6IFyTSHrV1XRRyZYkcypQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gnFEc_lK59pehXxDVFnA7xFnKzVu4lPAiTl04nv5kAVQOjHuioGTm7fQ2Sj7Aq08y6IFyTSHrV1XRRyZYkcypQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~goFyhsFsrEIoovNEkt6V9lBb11H4LoGPoOP6PtnEqHOVurwLLe7DHXCTqL2t9g9-W5iUvAbJA8TlN6c5Tuv1EA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~goFyhsFsrEIoovNEkt6V9lBb11H4LoGPoOP6PtnEqHOVurwLLe7DHXCTqL2t9g9-W5iUvAbJA8TlN6c5Tuv1EA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~goFyhsFsrEIoovNEkt6V9lBb11H4LoGPoOP6PtnEqHOVurwLLe7DHXCTqL2t9g9-W5iUvAbJA8TlN6c5Tuv1EA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gto-sz8lVYYgYZvSDuzWIuIxasBTtBUoJ--bSy9IY-HwTr70SBbwpfXtIbJoS36ZAYFJLiFfqUnX4V8_lp-trQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gto-sz8lVYYgYZvSDuzWIuIxasBTtBUoJ--bSy9IY-HwTr70SBbwpfXtIbJoS36ZAYFJLiFfqUnX4V8_lp-trQ== new file mode 100644 index 0000000..65f5d79 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gto-sz8lVYYgYZvSDuzWIuIxasBTtBUoJ--bSy9IY-HwTr70SBbwpfXtIbJoS36ZAYFJLiFfqUnX4V8_lp-trQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gyVLcrfv5ilQoSzhR0DWm70-lOcmpDMOAlU7k7pKDI1NsCkDPfoQyQqKY9dcc8Kr8HKm_3GuT3iyKp5b9YkdkA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gyVLcrfv5ilQoSzhR0DWm70-lOcmpDMOAlU7k7pKDI1NsCkDPfoQyQqKY9dcc8Kr8HKm_3GuT3iyKp5b9YkdkA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gyVLcrfv5ilQoSzhR0DWm70-lOcmpDMOAlU7k7pKDI1NsCkDPfoQyQqKY9dcc8Kr8HKm_3GuT3iyKp5b9YkdkA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gyrlaS7lGxu07cbYiG52V6h-rLXxbDapqk-rbaLeqJojJzapfDhAjsu2r1pNwMKDagJ9nhdsCbtb4lmATMPIwQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gyrlaS7lGxu07cbYiG52V6h-rLXxbDapqk-rbaLeqJojJzapfDhAjsu2r1pNwMKDagJ9nhdsCbtb4lmATMPIwQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~gyrlaS7lGxu07cbYiG52V6h-rLXxbDapqk-rbaLeqJojJzapfDhAjsu2r1pNwMKDagJ9nhdsCbtb4lmATMPIwQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~h5QHevQUX5YSJejQbg4YjzrIzBzLR5nLqL8n2C0ewn2QrchBaW1t_ZTgp-UzmxHLP84fZp9lEMFnewYIdCXKvA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~h5QHevQUX5YSJejQbg4YjzrIzBzLR5nLqL8n2C0ewn2QrchBaW1t_ZTgp-UzmxHLP84fZp9lEMFnewYIdCXKvA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~h5QHevQUX5YSJejQbg4YjzrIzBzLR5nLqL8n2C0ewn2QrchBaW1t_ZTgp-UzmxHLP84fZp9lEMFnewYIdCXKvA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hAH5ojpi6GbLlfV0qDLTV3JzU_tUDX04GGqCGFGQHikLKP06TzH_XrvcisSQB_WcXSNkYGdmWjeSHpqnBwZd9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hAH5ojpi6GbLlfV0qDLTV3JzU_tUDX04GGqCGFGQHikLKP06TzH_XrvcisSQB_WcXSNkYGdmWjeSHpqnBwZd9A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hAH5ojpi6GbLlfV0qDLTV3JzU_tUDX04GGqCGFGQHikLKP06TzH_XrvcisSQB_WcXSNkYGdmWjeSHpqnBwZd9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hAr6Hk6xFdvVb3qHPGFg_5KEQ0omh1a5F870at5pFWRbDz-7hHRITu8ei5dGZXbw19w1bKZZR8_x2VDWTp696g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hAr6Hk6xFdvVb3qHPGFg_5KEQ0omh1a5F870at5pFWRbDz-7hHRITu8ei5dGZXbw19w1bKZZR8_x2VDWTp696g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hAr6Hk6xFdvVb3qHPGFg_5KEQ0omh1a5F870at5pFWRbDz-7hHRITu8ei5dGZXbw19w1bKZZR8_x2VDWTp696g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hLMUGrj3tWPdW3CW0L15Z0ozemuluXn7kh9Ex_0XYIxF1mrr86doF2P8StRUKzmcRslah_Pg83DRUn-ciqlkfA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hLMUGrj3tWPdW3CW0L15Z0ozemuluXn7kh9Ex_0XYIxF1mrr86doF2P8StRUKzmcRslah_Pg83DRUn-ciqlkfA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hLMUGrj3tWPdW3CW0L15Z0ozemuluXn7kh9Ex_0XYIxF1mrr86doF2P8StRUKzmcRslah_Pg83DRUn-ciqlkfA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hWvUtrM8XAKzcJ2W9ExLGGXL-otxf3l6OlA6EQ6RoCsXhn9ptrJGCDiklT225NsAwfSLuQIq5MsENOq5pWCGPg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hWvUtrM8XAKzcJ2W9ExLGGXL-otxf3l6OlA6EQ6RoCsXhn9ptrJGCDiklT225NsAwfSLuQIq5MsENOq5pWCGPg== new file mode 100644 index 0000000..79a1614 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hWvUtrM8XAKzcJ2W9ExLGGXL-otxf3l6OlA6EQ6RoCsXhn9ptrJGCDiklT225NsAwfSLuQIq5MsENOq5pWCGPg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hZ7HeV2QSu_xP_eXPBkZ52J4qoUNVMJQGzhveDTE_swkkykiK9alZ9iQLfsfbMth4h1aEWGqW6skOKx5EC_rMg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hZ7HeV2QSu_xP_eXPBkZ52J4qoUNVMJQGzhveDTE_swkkykiK9alZ9iQLfsfbMth4h1aEWGqW6skOKx5EC_rMg== new file mode 100644 index 0000000..385c49d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hZ7HeV2QSu_xP_eXPBkZ52J4qoUNVMJQGzhveDTE_swkkykiK9alZ9iQLfsfbMth4h1aEWGqW6skOKx5EC_rMg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hcT6NWbAmpcsIp4LM_WeNdg2ll1MyZSm3aYdOV0VE8DwMfZm0UNY3cAcy7Hkpcu4HEnxVBCeyRKirHKJNTdq8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hcT6NWbAmpcsIp4LM_WeNdg2ll1MyZSm3aYdOV0VE8DwMfZm0UNY3cAcy7Hkpcu4HEnxVBCeyRKirHKJNTdq8Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hcT6NWbAmpcsIp4LM_WeNdg2ll1MyZSm3aYdOV0VE8DwMfZm0UNY3cAcy7Hkpcu4HEnxVBCeyRKirHKJNTdq8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hh8PSj0m_PUrMjalRrmFckgMsYVPD6ywc7vyHcm_XyoAc7uA2azTcdcTg-wffM4jaPmQyB1nrQk0m1zBZKXp-g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hh8PSj0m_PUrMjalRrmFckgMsYVPD6ywc7vyHcm_XyoAc7uA2azTcdcTg-wffM4jaPmQyB1nrQk0m1zBZKXp-g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hh8PSj0m_PUrMjalRrmFckgMsYVPD6ywc7vyHcm_XyoAc7uA2azTcdcTg-wffM4jaPmQyB1nrQk0m1zBZKXp-g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hmQOzZrNuRuZDj1zyv8IFoVo_tgSQtTJm2a7b2EWF7_m8ttCWuGc04Ln8H8C25PQ43EnVJp9GsOBgakead9NaQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hmQOzZrNuRuZDj1zyv8IFoVo_tgSQtTJm2a7b2EWF7_m8ttCWuGc04Ln8H8C25PQ43EnVJp9GsOBgakead9NaQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hmQOzZrNuRuZDj1zyv8IFoVo_tgSQtTJm2a7b2EWF7_m8ttCWuGc04Ln8H8C25PQ43EnVJp9GsOBgakead9NaQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hrhGZ1CTBhHMESJHuds99sYbHVWjexYVbmleTDKM1MSHY_OO3wYIidYgyxp-9jD4dvzQc2ZH23yYxQrQFr0BSg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hrhGZ1CTBhHMESJHuds99sYbHVWjexYVbmleTDKM1MSHY_OO3wYIidYgyxp-9jD4dvzQc2ZH23yYxQrQFr0BSg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hrhGZ1CTBhHMESJHuds99sYbHVWjexYVbmleTDKM1MSHY_OO3wYIidYgyxp-9jD4dvzQc2ZH23yYxQrQFr0BSg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~htcH4y1TESmsQNHXfl7ujxp3E9LMeTDhh2pNojK3jyTBBGZKFWWQ_L8cK71a-TFNtcjKEnPoooSdT3bWWFInzg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~htcH4y1TESmsQNHXfl7ujxp3E9LMeTDhh2pNojK3jyTBBGZKFWWQ_L8cK71a-TFNtcjKEnPoooSdT3bWWFInzg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~htcH4y1TESmsQNHXfl7ujxp3E9LMeTDhh2pNojK3jyTBBGZKFWWQ_L8cK71a-TFNtcjKEnPoooSdT3bWWFInzg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~htsQ5cll8OUOs-cdLcYAHbELpkAMT-g9oqwT-cDN3bcZvUdIGiZtJgrscbUXHVeR8War-SCkzVDfR06oVfv7xg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~htsQ5cll8OUOs-cdLcYAHbELpkAMT-g9oqwT-cDN3bcZvUdIGiZtJgrscbUXHVeR8War-SCkzVDfR06oVfv7xg== new file mode 100644 index 0000000..61f60c9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~htsQ5cll8OUOs-cdLcYAHbELpkAMT-g9oqwT-cDN3bcZvUdIGiZtJgrscbUXHVeR8War-SCkzVDfR06oVfv7xg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hwgikRX68kJZxo7CNaaUtHMeojPDDcd8mUKYDPG4mKCDvUsCEfGUMOIMfBEkSZ497FVyMY4SGewMLNsGpNjXeA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hwgikRX68kJZxo7CNaaUtHMeojPDDcd8mUKYDPG4mKCDvUsCEfGUMOIMfBEkSZ497FVyMY4SGewMLNsGpNjXeA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hwgikRX68kJZxo7CNaaUtHMeojPDDcd8mUKYDPG4mKCDvUsCEfGUMOIMfBEkSZ497FVyMY4SGewMLNsGpNjXeA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hwuXOdMG7orc1VLy8XtflIROfP43ktBSKks12TlA5c-c7BdDIBWml32fB8TychL3JTf4iau5O126JmvgcNu5sw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hwuXOdMG7orc1VLy8XtflIROfP43ktBSKks12TlA5c-c7BdDIBWml32fB8TychL3JTf4iau5O126JmvgcNu5sw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hwuXOdMG7orc1VLy8XtflIROfP43ktBSKks12TlA5c-c7BdDIBWml32fB8TychL3JTf4iau5O126JmvgcNu5sw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hxm5L2WdH9sV1frrVkwIKsUo2smyC2ChUSagH9eWf_fNIFRSA-37O-moz8zqAnJ-u5ImeTK5xBOCuiwWh-m9lQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hxm5L2WdH9sV1frrVkwIKsUo2smyC2ChUSagH9eWf_fNIFRSA-37O-moz8zqAnJ-u5ImeTK5xBOCuiwWh-m9lQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hxm5L2WdH9sV1frrVkwIKsUo2smyC2ChUSagH9eWf_fNIFRSA-37O-moz8zqAnJ-u5ImeTK5xBOCuiwWh-m9lQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hy9iVfvXhuo-QYmsTLAYEig43Xu4B6VUvArYaKUGxYeu34emXhl0LYIFvoPZH68isuBNFNkncQLMS-VEy_IO0A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hy9iVfvXhuo-QYmsTLAYEig43Xu4B6VUvArYaKUGxYeu34emXhl0LYIFvoPZH68isuBNFNkncQLMS-VEy_IO0A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hy9iVfvXhuo-QYmsTLAYEig43Xu4B6VUvArYaKUGxYeu34emXhl0LYIFvoPZH68isuBNFNkncQLMS-VEy_IO0A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hyKlUNov9jb3E2T_l_kYD4M1RJTyOJNE9ifPxDnestaVAEtXh2YParfWWwHDKWrfWPluLwr4QPVj0RuvUDHebg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hyKlUNov9jb3E2T_l_kYD4M1RJTyOJNE9ifPxDnestaVAEtXh2YParfWWwHDKWrfWPluLwr4QPVj0RuvUDHebg== new file mode 100644 index 0000000..e4a4d2a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~hyKlUNov9jb3E2T_l_kYD4M1RJTyOJNE9ifPxDnestaVAEtXh2YParfWWwHDKWrfWPluLwr4QPVj0RuvUDHebg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i1SLjf0lu67wxmD69lP_m6cWtT_0utwkeTEQLkWDQYgARfjZYxDtGB9qY1svC10ObMMqfVTkiHonYBdDPCVRhw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i1SLjf0lu67wxmD69lP_m6cWtT_0utwkeTEQLkWDQYgARfjZYxDtGB9qY1svC10ObMMqfVTkiHonYBdDPCVRhw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i1SLjf0lu67wxmD69lP_m6cWtT_0utwkeTEQLkWDQYgARfjZYxDtGB9qY1svC10ObMMqfVTkiHonYBdDPCVRhw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i3FWO1v6-uyK-sJAym8HRyRe4Pz8kqn4AEzQJRxJbGjsNtvZdGjXiLp1TKt2Sfxlhmz6EwndwqNcVumLioXLTA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i3FWO1v6-uyK-sJAym8HRyRe4Pz8kqn4AEzQJRxJbGjsNtvZdGjXiLp1TKt2Sfxlhmz6EwndwqNcVumLioXLTA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i3FWO1v6-uyK-sJAym8HRyRe4Pz8kqn4AEzQJRxJbGjsNtvZdGjXiLp1TKt2Sfxlhmz6EwndwqNcVumLioXLTA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i4_NDKjwhQIYMHB5baL3qve02DNUyfn0iDAhykn5X63Wga5J6X6lYo2avkpHC-D89PbpL89xr6F1PtKyfNb-kQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i4_NDKjwhQIYMHB5baL3qve02DNUyfn0iDAhykn5X63Wga5J6X6lYo2avkpHC-D89PbpL89xr6F1PtKyfNb-kQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i4_NDKjwhQIYMHB5baL3qve02DNUyfn0iDAhykn5X63Wga5J6X6lYo2avkpHC-D89PbpL89xr6F1PtKyfNb-kQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i6MFGXvmtZxEjk591dD1in3jJFhahZwsp5pXVvclWz-b5myi5OXL0_5EZkPfUqoQIxMEqo9FSI8QLZS_nn8SRQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i6MFGXvmtZxEjk591dD1in3jJFhahZwsp5pXVvclWz-b5myi5OXL0_5EZkPfUqoQIxMEqo9FSI8QLZS_nn8SRQ== new file mode 100644 index 0000000..f8a798d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i6MFGXvmtZxEjk591dD1in3jJFhahZwsp5pXVvclWz-b5myi5OXL0_5EZkPfUqoQIxMEqo9FSI8QLZS_nn8SRQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i8Uky89UvD2nbGFWi1TqUq0ac7nWm8h63FZfl68DoJ0WG-wCCbjxaQwV9T0BO6tZFe_ROY5kipJ19knMDwUj4Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i8Uky89UvD2nbGFWi1TqUq0ac7nWm8h63FZfl68DoJ0WG-wCCbjxaQwV9T0BO6tZFe_ROY5kipJ19knMDwUj4Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i8Uky89UvD2nbGFWi1TqUq0ac7nWm8h63FZfl68DoJ0WG-wCCbjxaQwV9T0BO6tZFe_ROY5kipJ19knMDwUj4Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iFpUjImbm_Vly0WoU01vESxQOr1ZQZ3VPeVWzV7Cp4uqBqI7XDOTFE4TWv72HV7uab0tp821qzijHrInEqFDtQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iFpUjImbm_Vly0WoU01vESxQOr1ZQZ3VPeVWzV7Cp4uqBqI7XDOTFE4TWv72HV7uab0tp821qzijHrInEqFDtQ== new file mode 100644 index 0000000..77823c7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iFpUjImbm_Vly0WoU01vESxQOr1ZQZ3VPeVWzV7Cp4uqBqI7XDOTFE4TWv72HV7uab0tp821qzijHrInEqFDtQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iIT2MHlCtN4vUQy3AqmlAcO_pUQtEAY4udI2tTCFs0DdcNhpOrySkWE_AIub4XPOIOABXvlrgTJaRYOq6i_CsA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iIT2MHlCtN4vUQy3AqmlAcO_pUQtEAY4udI2tTCFs0DdcNhpOrySkWE_AIub4XPOIOABXvlrgTJaRYOq6i_CsA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iIT2MHlCtN4vUQy3AqmlAcO_pUQtEAY4udI2tTCFs0DdcNhpOrySkWE_AIub4XPOIOABXvlrgTJaRYOq6i_CsA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iKN7M-lOHaQD_4ux9ZGMgzPbhMGwbO8J8IvQ6lC-WOiMrGTXEYOAkYo6BtflFTgUPeLnt74zCtbJf6fLC--htA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iKN7M-lOHaQD_4ux9ZGMgzPbhMGwbO8J8IvQ6lC-WOiMrGTXEYOAkYo6BtflFTgUPeLnt74zCtbJf6fLC--htA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iKN7M-lOHaQD_4ux9ZGMgzPbhMGwbO8J8IvQ6lC-WOiMrGTXEYOAkYo6BtflFTgUPeLnt74zCtbJf6fLC--htA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iSNQnJ2R-1Lyw4zNTeAuVVWOwvZPsRfmWqkF4WNStOJRcE0crKrHEp1FvTtpOPiKN6mJ-hpu0Ak2EHWV9ge8CQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iSNQnJ2R-1Lyw4zNTeAuVVWOwvZPsRfmWqkF4WNStOJRcE0crKrHEp1FvTtpOPiKN6mJ-hpu0Ak2EHWV9ge8CQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iSNQnJ2R-1Lyw4zNTeAuVVWOwvZPsRfmWqkF4WNStOJRcE0crKrHEp1FvTtpOPiKN6mJ-hpu0Ak2EHWV9ge8CQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iXDEt_EaaoZPIoatbl-wHhO02OYMRygnTZmpuOAaoUJDE8tr01rRLhe-GHnghh1DcJkXp6SXtKLSllFYYx7S_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iXDEt_EaaoZPIoatbl-wHhO02OYMRygnTZmpuOAaoUJDE8tr01rRLhe-GHnghh1DcJkXp6SXtKLSllFYYx7S_A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iXDEt_EaaoZPIoatbl-wHhO02OYMRygnTZmpuOAaoUJDE8tr01rRLhe-GHnghh1DcJkXp6SXtKLSllFYYx7S_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iZzCkCG9xLcTAx_EkeO38NFJcmNulm7NcViduwamOIy7oYgi5qOUHNzM4FjolPwi3-bxaqxjLfDFJ77UGLdRXg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iZzCkCG9xLcTAx_EkeO38NFJcmNulm7NcViduwamOIy7oYgi5qOUHNzM4FjolPwi3-bxaqxjLfDFJ77UGLdRXg== new file mode 100644 index 0000000..e68f636 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iZzCkCG9xLcTAx_EkeO38NFJcmNulm7NcViduwamOIy7oYgi5qOUHNzM4FjolPwi3-bxaqxjLfDFJ77UGLdRXg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i_2lr6E7zEmvazsS30UWMp30xM4YShZJLEqWb_VxpVa0D7LBxMYnGwpdGyHOLadfYI18K6pBokWxm_SD6qw0Mg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i_2lr6E7zEmvazsS30UWMp30xM4YShZJLEqWb_VxpVa0D7LBxMYnGwpdGyHOLadfYI18K6pBokWxm_SD6qw0Mg== new file mode 100644 index 0000000..454f8c0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~i_2lr6E7zEmvazsS30UWMp30xM4YShZJLEqWb_VxpVa0D7LBxMYnGwpdGyHOLadfYI18K6pBokWxm_SD6qw0Mg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~igRMGLwh2guJBtiJSle3mgV4OVAw8EdZx5yx5VsIiUhyh1xgdWw55VqzpUuhPU95wcTzE1t4CXtOqGE2haj3Qw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~igRMGLwh2guJBtiJSle3mgV4OVAw8EdZx5yx5VsIiUhyh1xgdWw55VqzpUuhPU95wcTzE1t4CXtOqGE2haj3Qw== new file mode 100644 index 0000000..c2c7363 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~igRMGLwh2guJBtiJSle3mgV4OVAw8EdZx5yx5VsIiUhyh1xgdWw55VqzpUuhPU95wcTzE1t4CXtOqGE2haj3Qw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ii3yulQvP4odCvOIerd9qu1kkc7Q0O-KtlVjZUoPxbs9pKIZoJ6v1isBByhGJkd7-T1tmsI_8kfeg9mCZk6E2g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ii3yulQvP4odCvOIerd9qu1kkc7Q0O-KtlVjZUoPxbs9pKIZoJ6v1isBByhGJkd7-T1tmsI_8kfeg9mCZk6E2g== new file mode 100644 index 0000000..efd2d78 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ii3yulQvP4odCvOIerd9qu1kkc7Q0O-KtlVjZUoPxbs9pKIZoJ6v1isBByhGJkd7-T1tmsI_8kfeg9mCZk6E2g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ii57lahEGDoRP0n9eKtLDTEDIjTyc58ArFhYKeAyTR704Il5_DEwfd3wqZkHPQUSWdbSxlqqLb34iB5180bAhQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ii57lahEGDoRP0n9eKtLDTEDIjTyc58ArFhYKeAyTR704Il5_DEwfd3wqZkHPQUSWdbSxlqqLb34iB5180bAhQ== new file mode 100644 index 0000000..5ca522d Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ii57lahEGDoRP0n9eKtLDTEDIjTyc58ArFhYKeAyTR704Il5_DEwfd3wqZkHPQUSWdbSxlqqLb34iB5180bAhQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iiUTzLyOy1HuRR_1IyXgOFpeq5EY7CoLg_dF43tK0F7XEhT8rBQ-87r9MqU7vsaDib55bVIOL3q5Yyu1alJPSA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iiUTzLyOy1HuRR_1IyXgOFpeq5EY7CoLg_dF43tK0F7XEhT8rBQ-87r9MqU7vsaDib55bVIOL3q5Yyu1alJPSA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iiUTzLyOy1HuRR_1IyXgOFpeq5EY7CoLg_dF43tK0F7XEhT8rBQ-87r9MqU7vsaDib55bVIOL3q5Yyu1alJPSA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ino-Yz4uw71BOB7R7vcqbxGePnSXtfbtVwwQPAjLNEJhXw_bHoYT8Mvz7HbJG4NR6e2BludVIA0hc5m7tUUqlQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ino-Yz4uw71BOB7R7vcqbxGePnSXtfbtVwwQPAjLNEJhXw_bHoYT8Mvz7HbJG4NR6e2BludVIA0hc5m7tUUqlQ== new file mode 100644 index 0000000..7a1cb83 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ino-Yz4uw71BOB7R7vcqbxGePnSXtfbtVwwQPAjLNEJhXw_bHoYT8Mvz7HbJG4NR6e2BludVIA0hc5m7tUUqlQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iobV8HnZZOESQuRiix6DPW45L_AKTlMPPxI0v-z9J8DE3xA6CAWFoUqPtIVpCr4zudivNao2qBCvsyjRCCRkFg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iobV8HnZZOESQuRiix6DPW45L_AKTlMPPxI0v-z9J8DE3xA6CAWFoUqPtIVpCr4zudivNao2qBCvsyjRCCRkFg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iobV8HnZZOESQuRiix6DPW45L_AKTlMPPxI0v-z9J8DE3xA6CAWFoUqPtIVpCr4zudivNao2qBCvsyjRCCRkFg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~itYhIXUWiFFz3WVMFwXsic1uW9tqy6b6E_3VChbc5z495orukpjGDWHS0vKg9tAgT683HPh4ouw_VlUprSWmMQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~itYhIXUWiFFz3WVMFwXsic1uW9tqy6b6E_3VChbc5z495orukpjGDWHS0vKg9tAgT683HPh4ouw_VlUprSWmMQ== new file mode 100644 index 0000000..9767a72 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~itYhIXUWiFFz3WVMFwXsic1uW9tqy6b6E_3VChbc5z495orukpjGDWHS0vKg9tAgT683HPh4ouw_VlUprSWmMQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iwgAixkdyXdJrLUd8CQ10l2LT9oFPE8bt5_IcTrvKTY__LHpz0qic2CgeamFkF6M8FhP0JRgtPFE7voENRKPzw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iwgAixkdyXdJrLUd8CQ10l2LT9oFPE8bt5_IcTrvKTY__LHpz0qic2CgeamFkF6M8FhP0JRgtPFE7voENRKPzw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iwgAixkdyXdJrLUd8CQ10l2LT9oFPE8bt5_IcTrvKTY__LHpz0qic2CgeamFkF6M8FhP0JRgtPFE7voENRKPzw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ixhVjJbZtqgJvySiEuxRGTp7249Wfgd2NrfE9o81H5nH4rVj9YgTSA1h-10dhaw9NaOhBOWTb5u3Q7rAS8JF1A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ixhVjJbZtqgJvySiEuxRGTp7249Wfgd2NrfE9o81H5nH4rVj9YgTSA1h-10dhaw9NaOhBOWTb5u3Q7rAS8JF1A== new file mode 100644 index 0000000..29fb579 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ixhVjJbZtqgJvySiEuxRGTp7249Wfgd2NrfE9o81H5nH4rVj9YgTSA1h-10dhaw9NaOhBOWTb5u3Q7rAS8JF1A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iyHV1Hf7jvmJjxTAefo0vlPUAXzYS6Fd0J_KC0LBwHDS94sKilPK7yVxZLxC1byW9WfBVA4-dLdbvyq8xc1zSw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iyHV1Hf7jvmJjxTAefo0vlPUAXzYS6Fd0J_KC0LBwHDS94sKilPK7yVxZLxC1byW9WfBVA4-dLdbvyq8xc1zSw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~iyHV1Hf7jvmJjxTAefo0vlPUAXzYS6Fd0J_KC0LBwHDS94sKilPK7yVxZLxC1byW9WfBVA4-dLdbvyq8xc1zSw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~j15m1F6mdVwbmTZvGwVaR2GYlV3z-OMzcw6OlV0wdqVkj3xlb7O4BudCWsd-ubnsGa0hFCUlFvCDaGla8FFhhg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~j15m1F6mdVwbmTZvGwVaR2GYlV3z-OMzcw6OlV0wdqVkj3xlb7O4BudCWsd-ubnsGa0hFCUlFvCDaGla8FFhhg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~j15m1F6mdVwbmTZvGwVaR2GYlV3z-OMzcw6OlV0wdqVkj3xlb7O4BudCWsd-ubnsGa0hFCUlFvCDaGla8FFhhg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~j1BnT7irFIer7sePtBDTHyLoIsm79BQ8koAg4HoRvCrT-uaPK_pwDj7IOySKONP_rWKXTPnz0aivj2v4b6v8Xg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~j1BnT7irFIer7sePtBDTHyLoIsm79BQ8koAg4HoRvCrT-uaPK_pwDj7IOySKONP_rWKXTPnz0aivj2v4b6v8Xg== new file mode 100644 index 0000000..18ab6ce Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~j1BnT7irFIer7sePtBDTHyLoIsm79BQ8koAg4HoRvCrT-uaPK_pwDj7IOySKONP_rWKXTPnz0aivj2v4b6v8Xg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~j4F4bx-HkjACv2o1ZRezZ4s5CWoiXynqbRa1E6xLt8JViU9YQf068x4rGC7ejrCkW-FxyBhDMgVTL36DtMRbMw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~j4F4bx-HkjACv2o1ZRezZ4s5CWoiXynqbRa1E6xLt8JViU9YQf068x4rGC7ejrCkW-FxyBhDMgVTL36DtMRbMw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~j4F4bx-HkjACv2o1ZRezZ4s5CWoiXynqbRa1E6xLt8JViU9YQf068x4rGC7ejrCkW-FxyBhDMgVTL36DtMRbMw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jAzETn6Wt4PDzSWhd2lTT_4AgGPlz4cU6DeAP0iFMdc_s2qAsOQ9m-Pg9SGUY3IDYPAx73IfHso8Lb3nNu5RHQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jAzETn6Wt4PDzSWhd2lTT_4AgGPlz4cU6DeAP0iFMdc_s2qAsOQ9m-Pg9SGUY3IDYPAx73IfHso8Lb3nNu5RHQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jAzETn6Wt4PDzSWhd2lTT_4AgGPlz4cU6DeAP0iFMdc_s2qAsOQ9m-Pg9SGUY3IDYPAx73IfHso8Lb3nNu5RHQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jEJruNaZ9jR1DR7Ik33dyCn_QqpDd3jBAwZIlpscWjwKw68wanzZBOKDeuJ5gBqMHlGPbNFnfb-iiqxIlkuMmQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jEJruNaZ9jR1DR7Ik33dyCn_QqpDd3jBAwZIlpscWjwKw68wanzZBOKDeuJ5gBqMHlGPbNFnfb-iiqxIlkuMmQ== new file mode 100644 index 0000000..80fc465 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jEJruNaZ9jR1DR7Ik33dyCn_QqpDd3jBAwZIlpscWjwKw68wanzZBOKDeuJ5gBqMHlGPbNFnfb-iiqxIlkuMmQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jIejGV1vt2wE4SOPwy9kxZ7gS4DGtSFSl1SufaM42BQbbBT2X5f-aATUKvLTS8VutlIkkPf3kymJV8uoJ5jnmQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jIejGV1vt2wE4SOPwy9kxZ7gS4DGtSFSl1SufaM42BQbbBT2X5f-aATUKvLTS8VutlIkkPf3kymJV8uoJ5jnmQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jIejGV1vt2wE4SOPwy9kxZ7gS4DGtSFSl1SufaM42BQbbBT2X5f-aATUKvLTS8VutlIkkPf3kymJV8uoJ5jnmQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jM7PqJMElKaGq1J87n8R98V5BYUY-uRoamxefcku1La1vITpXqADo9dcbDEMTCaP7Zf7vNEh0Q0s65Fmg2rd5w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jM7PqJMElKaGq1J87n8R98V5BYUY-uRoamxefcku1La1vITpXqADo9dcbDEMTCaP7Zf7vNEh0Q0s65Fmg2rd5w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jM7PqJMElKaGq1J87n8R98V5BYUY-uRoamxefcku1La1vITpXqADo9dcbDEMTCaP7Zf7vNEh0Q0s65Fmg2rd5w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jXveql1T-VdLQ83vBb-gR-GUIV81nEMAg-vLnltV9M1Fz12BQ5JOOeP0ZtUOLvLsrep4R3wKDbOYaZAgWssqMg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jXveql1T-VdLQ83vBb-gR-GUIV81nEMAg-vLnltV9M1Fz12BQ5JOOeP0ZtUOLvLsrep4R3wKDbOYaZAgWssqMg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jXveql1T-VdLQ83vBb-gR-GUIV81nEMAg-vLnltV9M1Fz12BQ5JOOeP0ZtUOLvLsrep4R3wKDbOYaZAgWssqMg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~j_AV9FqNy74yRWXc--Yybo1lVR1m5ZockFdWhv742v2F4oVuKDpI2-xGMaJrJccO38avs061-ZhZ3jio979cRg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~j_AV9FqNy74yRWXc--Yybo1lVR1m5ZockFdWhv742v2F4oVuKDpI2-xGMaJrJccO38avs061-ZhZ3jio979cRg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~j_AV9FqNy74yRWXc--Yybo1lVR1m5ZockFdWhv742v2F4oVuKDpI2-xGMaJrJccO38avs061-ZhZ3jio979cRg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jcUJOgvFdd80Vv8fLx6junfk9wTCHG73taD721n0laHpYn9e5nxSZXE_ybpbHrij1h-uwzrOrWL7a0_-A5ugtQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jcUJOgvFdd80Vv8fLx6junfk9wTCHG73taD721n0laHpYn9e5nxSZXE_ybpbHrij1h-uwzrOrWL7a0_-A5ugtQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jcUJOgvFdd80Vv8fLx6junfk9wTCHG73taD721n0laHpYn9e5nxSZXE_ybpbHrij1h-uwzrOrWL7a0_-A5ugtQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jiUYNXCnsQK776-3e-9b02gGb1ZhvCFEwGz-698jeY18ys6cQ_79O5EkLFAKgAC_sVEt28n2LbHAr9juipt32w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jiUYNXCnsQK776-3e-9b02gGb1ZhvCFEwGz-698jeY18ys6cQ_79O5EkLFAKgAC_sVEt28n2LbHAr9juipt32w== new file mode 100644 index 0000000..a826459 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jiUYNXCnsQK776-3e-9b02gGb1ZhvCFEwGz-698jeY18ys6cQ_79O5EkLFAKgAC_sVEt28n2LbHAr9juipt32w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jkgRk-h9_w0f5agiJ7TiiBvdPyAqxo0qzEkfY7jiy9V8Pl-3Yf8xCRVtwOukusGNeu34zAMHKiuhR46CybNV4A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jkgRk-h9_w0f5agiJ7TiiBvdPyAqxo0qzEkfY7jiy9V8Pl-3Yf8xCRVtwOukusGNeu34zAMHKiuhR46CybNV4A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~jkgRk-h9_w0f5agiJ7TiiBvdPyAqxo0qzEkfY7jiy9V8Pl-3Yf8xCRVtwOukusGNeu34zAMHKiuhR46CybNV4A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~k0yengSQ9VFrtpeFYTgRqxZxpYH-Y81Cmpfdk12CGb5CA6o0s_Xaixwvp1AJIXfjsy6eJxkJuVSPv65VC52hBw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~k0yengSQ9VFrtpeFYTgRqxZxpYH-Y81Cmpfdk12CGb5CA6o0s_Xaixwvp1AJIXfjsy6eJxkJuVSPv65VC52hBw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~k0yengSQ9VFrtpeFYTgRqxZxpYH-Y81Cmpfdk12CGb5CA6o0s_Xaixwvp1AJIXfjsy6eJxkJuVSPv65VC52hBw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kB4K4AKO8AQv1BYGXZ-2KXX77Dqy7ng9FyYaVWnd0GXCLozQyMl66btuXLf7YxH3DAE0flU59x6l1xdqI5OuiQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kB4K4AKO8AQv1BYGXZ-2KXX77Dqy7ng9FyYaVWnd0GXCLozQyMl66btuXLf7YxH3DAE0flU59x6l1xdqI5OuiQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kB4K4AKO8AQv1BYGXZ-2KXX77Dqy7ng9FyYaVWnd0GXCLozQyMl66btuXLf7YxH3DAE0flU59x6l1xdqI5OuiQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kDppiLfnMkjhbRnB90b510cCzILqWVSqrLpjneuYTH8BjXfRtM4LyL2baQd0JqtW6D1Td58X_f7AIDMAyUxEiA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kDppiLfnMkjhbRnB90b510cCzILqWVSqrLpjneuYTH8BjXfRtM4LyL2baQd0JqtW6D1Td58X_f7AIDMAyUxEiA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kDppiLfnMkjhbRnB90b510cCzILqWVSqrLpjneuYTH8BjXfRtM4LyL2baQd0JqtW6D1Td58X_f7AIDMAyUxEiA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kETRytTCmD3SQ3MuX5IT1_nbHXZIuwHGHvJG21CHXmKrZQ46tWUWDMX3axca_kkyUeocR4UqXIQkP55y9EAFDg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kETRytTCmD3SQ3MuX5IT1_nbHXZIuwHGHvJG21CHXmKrZQ46tWUWDMX3axca_kkyUeocR4UqXIQkP55y9EAFDg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kETRytTCmD3SQ3MuX5IT1_nbHXZIuwHGHvJG21CHXmKrZQ46tWUWDMX3axca_kkyUeocR4UqXIQkP55y9EAFDg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kVhRzpT89HBq1y0kT7SZxDtwanDxBYWHUbw4a3PGigkP-unEYzi7z3xyMO_-z72D_9biV0Vt6qDPsxGTYO-YSw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kVhRzpT89HBq1y0kT7SZxDtwanDxBYWHUbw4a3PGigkP-unEYzi7z3xyMO_-z72D_9biV0Vt6qDPsxGTYO-YSw== new file mode 100644 index 0000000..f3c881a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kVhRzpT89HBq1y0kT7SZxDtwanDxBYWHUbw4a3PGigkP-unEYzi7z3xyMO_-z72D_9biV0Vt6qDPsxGTYO-YSw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ke7zyLFnVC6Ijyj1Sh9PPiFJGLLnGVZQvuWWlGcHIxUdL6rVIyKoGWx7oWgYr1EDXbDvE0uTlSAoqFKTG62GJw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ke7zyLFnVC6Ijyj1Sh9PPiFJGLLnGVZQvuWWlGcHIxUdL6rVIyKoGWx7oWgYr1EDXbDvE0uTlSAoqFKTG62GJw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ke7zyLFnVC6Ijyj1Sh9PPiFJGLLnGVZQvuWWlGcHIxUdL6rVIyKoGWx7oWgYr1EDXbDvE0uTlSAoqFKTG62GJw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~keesJxYAFnqERKKjcFSpj6BBG15IHlwPIky0ZZLfykkP8TAgy6tery28a7qB4IJ-q8o_xZcgGIe7LRw2ZoPJrA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~keesJxYAFnqERKKjcFSpj6BBG15IHlwPIky0ZZLfykkP8TAgy6tery28a7qB4IJ-q8o_xZcgGIe7LRw2ZoPJrA== new file mode 100644 index 0000000..8cfee6b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~keesJxYAFnqERKKjcFSpj6BBG15IHlwPIky0ZZLfykkP8TAgy6tery28a7qB4IJ-q8o_xZcgGIe7LRw2ZoPJrA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kfFXNgRvwytSk6ZhIgvMtHm0oPDZR0nNo7Yjr8d_q6GgzYME9yE2D3akk97W-SSRzGKrQgfFOlvp_S1JAvbHsQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kfFXNgRvwytSk6ZhIgvMtHm0oPDZR0nNo7Yjr8d_q6GgzYME9yE2D3akk97W-SSRzGKrQgfFOlvp_S1JAvbHsQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kfFXNgRvwytSk6ZhIgvMtHm0oPDZR0nNo7Yjr8d_q6GgzYME9yE2D3akk97W-SSRzGKrQgfFOlvp_S1JAvbHsQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kfIygfDJaMLFjhKLNg4yLqFL0No5Esfbmke8moQs1NuXGy_vqoFVz9ubJIsHFmf40qWZM4c3-RtE6I108Uu_7g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kfIygfDJaMLFjhKLNg4yLqFL0No5Esfbmke8moQs1NuXGy_vqoFVz9ubJIsHFmf40qWZM4c3-RtE6I108Uu_7g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kfIygfDJaMLFjhKLNg4yLqFL0No5Esfbmke8moQs1NuXGy_vqoFVz9ubJIsHFmf40qWZM4c3-RtE6I108Uu_7g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kjXa0wOu1iJ8o_yi2gICoErlACXOjMoXP51kg-7RZksmeGhTidC73gOsGxkTXIK5VN4XsdxFMxl4aZ4Lt_TPEg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kjXa0wOu1iJ8o_yi2gICoErlACXOjMoXP51kg-7RZksmeGhTidC73gOsGxkTXIK5VN4XsdxFMxl4aZ4Lt_TPEg== new file mode 100644 index 0000000..deeaec9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kjXa0wOu1iJ8o_yi2gICoErlACXOjMoXP51kg-7RZksmeGhTidC73gOsGxkTXIK5VN4XsdxFMxl4aZ4Lt_TPEg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kwEorJOqAvQLdoCyyPaOSQwUuuI1NQUVgWlLIr2O96joSRyGiuIfqcrpVXXnALJ0U_wHxeXKchVxxeaXf9ZIzw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kwEorJOqAvQLdoCyyPaOSQwUuuI1NQUVgWlLIr2O96joSRyGiuIfqcrpVXXnALJ0U_wHxeXKchVxxeaXf9ZIzw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kwEorJOqAvQLdoCyyPaOSQwUuuI1NQUVgWlLIr2O96joSRyGiuIfqcrpVXXnALJ0U_wHxeXKchVxxeaXf9ZIzw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kwoBoSGr4OVyQVjxNTON0_6lykREIWEDsmdnjp-MMilV9xhhJKcbOnZnptaXCEHotQs8G_vzCPWoYyLY531jeA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kwoBoSGr4OVyQVjxNTON0_6lykREIWEDsmdnjp-MMilV9xhhJKcbOnZnptaXCEHotQs8G_vzCPWoYyLY531jeA== new file mode 100644 index 0000000..6b906a2 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kwoBoSGr4OVyQVjxNTON0_6lykREIWEDsmdnjp-MMilV9xhhJKcbOnZnptaXCEHotQs8G_vzCPWoYyLY531jeA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kxhobuo2FtZDZGMeGGuKQPDXd7KBl1KRe8dN50bAt_Ku7PPVFxt2IkS7LFCRVsj3n-rxRB8BkrnGbUcVZlhhhg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kxhobuo2FtZDZGMeGGuKQPDXd7KBl1KRe8dN50bAt_Ku7PPVFxt2IkS7LFCRVsj3n-rxRB8BkrnGbUcVZlhhhg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~kxhobuo2FtZDZGMeGGuKQPDXd7KBl1KRe8dN50bAt_Ku7PPVFxt2IkS7LFCRVsj3n-rxRB8BkrnGbUcVZlhhhg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~l22lFanV6z4wRvtsIB4qHY3uUbsWGulds11ir4U1h8Y3l2Mkxha1uOuQ2QSHpOmq0E0FydM_IKAJlebsS6GCwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~l22lFanV6z4wRvtsIB4qHY3uUbsWGulds11ir4U1h8Y3l2Mkxha1uOuQ2QSHpOmq0E0FydM_IKAJlebsS6GCwg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~l22lFanV6z4wRvtsIB4qHY3uUbsWGulds11ir4U1h8Y3l2Mkxha1uOuQ2QSHpOmq0E0FydM_IKAJlebsS6GCwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~l6PnwE4gcPQzTye2JekhT0jUL83TEMiVt3noJKMwlAuq1vBBXbgFXX3-E8hUqBKSjRgWtDjYOu50pzCXgfprbw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~l6PnwE4gcPQzTye2JekhT0jUL83TEMiVt3noJKMwlAuq1vBBXbgFXX3-E8hUqBKSjRgWtDjYOu50pzCXgfprbw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~l6PnwE4gcPQzTye2JekhT0jUL83TEMiVt3noJKMwlAuq1vBBXbgFXX3-E8hUqBKSjRgWtDjYOu50pzCXgfprbw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lJaKLiV7_zfei242LGJ7Wkqd7NSXkk4Xj0MV2yVI7Jxj3ny8V45gXak5Z7ck-pmdoKEvnnhAp3_BnVxdZK5sYA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lJaKLiV7_zfei242LGJ7Wkqd7NSXkk4Xj0MV2yVI7Jxj3ny8V45gXak5Z7ck-pmdoKEvnnhAp3_BnVxdZK5sYA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lJaKLiV7_zfei242LGJ7Wkqd7NSXkk4Xj0MV2yVI7Jxj3ny8V45gXak5Z7ck-pmdoKEvnnhAp3_BnVxdZK5sYA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lQCJwFBtfYIP9tSGEqcYTh3PYIkrD0h_oFtLL6mSnd1APW1mJ2yDe4fVfqcStHkTMEykCOXCLGJQHcXOfKnM_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lQCJwFBtfYIP9tSGEqcYTh3PYIkrD0h_oFtLL6mSnd1APW1mJ2yDe4fVfqcStHkTMEykCOXCLGJQHcXOfKnM_A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lQCJwFBtfYIP9tSGEqcYTh3PYIkrD0h_oFtLL6mSnd1APW1mJ2yDe4fVfqcStHkTMEykCOXCLGJQHcXOfKnM_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lRgPIFLJBEPIqCmRE-2PtyA8dt0NXiPYkiOCAzvEDKr0JKsMyIlMrH7q2ZeTrlCcZdSZwfrQ7sONeGXn_u76KA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lRgPIFLJBEPIqCmRE-2PtyA8dt0NXiPYkiOCAzvEDKr0JKsMyIlMrH7q2ZeTrlCcZdSZwfrQ7sONeGXn_u76KA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lRgPIFLJBEPIqCmRE-2PtyA8dt0NXiPYkiOCAzvEDKr0JKsMyIlMrH7q2ZeTrlCcZdSZwfrQ7sONeGXn_u76KA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lRtFwZNhmX49tKBdXH8RWcjsoySqOKeRHNi-37nnxI1U0mlrv-0iSGf7S3V1Csrr6X9Z3I6R8TVXDaUSzi_Wwg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lRtFwZNhmX49tKBdXH8RWcjsoySqOKeRHNi-37nnxI1U0mlrv-0iSGf7S3V1Csrr6X9Z3I6R8TVXDaUSzi_Wwg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lRtFwZNhmX49tKBdXH8RWcjsoySqOKeRHNi-37nnxI1U0mlrv-0iSGf7S3V1Csrr6X9Z3I6R8TVXDaUSzi_Wwg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lVjVCNj9mNzvCggjjR5QH20Mk7o5BF_Gp4F4qRIvYeto9Jy8taad2ZhsHzgYZBiZLXDTa2gewjcHKE0pjDd2dQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lVjVCNj9mNzvCggjjR5QH20Mk7o5BF_Gp4F4qRIvYeto9Jy8taad2ZhsHzgYZBiZLXDTa2gewjcHKE0pjDd2dQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lVjVCNj9mNzvCggjjR5QH20Mk7o5BF_Gp4F4qRIvYeto9Jy8taad2ZhsHzgYZBiZLXDTa2gewjcHKE0pjDd2dQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lYkqIuKja3btWCoIOCgnxiCPLyd3IU6UR4-SJNCiwEnJYlOMXqpCZmKEbM491dU_Pl6bY3XhCk0smYRgHLCqQQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lYkqIuKja3btWCoIOCgnxiCPLyd3IU6UR4-SJNCiwEnJYlOMXqpCZmKEbM491dU_Pl6bY3XhCk0smYRgHLCqQQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lYkqIuKja3btWCoIOCgnxiCPLyd3IU6UR4-SJNCiwEnJYlOMXqpCZmKEbM491dU_Pl6bY3XhCk0smYRgHLCqQQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ldQ_UQ85fNIhopuR_ZP9TXAVV_g6EgXaE2ClLhlfOZ46X9efKLmLBu22aMeIkNm69dIb0SX5B5ty9bUloPEABg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ldQ_UQ85fNIhopuR_ZP9TXAVV_g6EgXaE2ClLhlfOZ46X9efKLmLBu22aMeIkNm69dIb0SX5B5ty9bUloPEABg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ldQ_UQ85fNIhopuR_ZP9TXAVV_g6EgXaE2ClLhlfOZ46X9efKLmLBu22aMeIkNm69dIb0SX5B5ty9bUloPEABg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~letMHy_NcbPx-ZuHn9TaiLL29wbRacA5fh_ezjgkuy3vypGyWplHQG_MTO3BrPawIPhRt24ZJN-LAyLEq7G7BQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~letMHy_NcbPx-ZuHn9TaiLL29wbRacA5fh_ezjgkuy3vypGyWplHQG_MTO3BrPawIPhRt24ZJN-LAyLEq7G7BQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~letMHy_NcbPx-ZuHn9TaiLL29wbRacA5fh_ezjgkuy3vypGyWplHQG_MTO3BrPawIPhRt24ZJN-LAyLEq7G7BQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lgd4bmBdglk-43kJPEMpcQVlGKn57wC2EEw29XZKUC4i0nJQ23-cAr57Pf3KGu4gNV6_kz0ApZkisQcU9sFssw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lgd4bmBdglk-43kJPEMpcQVlGKn57wC2EEw29XZKUC4i0nJQ23-cAr57Pf3KGu4gNV6_kz0ApZkisQcU9sFssw== new file mode 100644 index 0000000..09aa38b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lgd4bmBdglk-43kJPEMpcQVlGKn57wC2EEw29XZKUC4i0nJQ23-cAr57Pf3KGu4gNV6_kz0ApZkisQcU9sFssw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ljIofnVnFHAs9QRcU5y_MDb5yc3vlpiL-aBCmLabCFueuFVGWjP9a5ElJAXD6R8Uu4_zDiOeR5CnCO1odP4c4Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ljIofnVnFHAs9QRcU5y_MDb5yc3vlpiL-aBCmLabCFueuFVGWjP9a5ElJAXD6R8Uu4_zDiOeR5CnCO1odP4c4Q== new file mode 100644 index 0000000..2c6b5ac Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ljIofnVnFHAs9QRcU5y_MDb5yc3vlpiL-aBCmLabCFueuFVGWjP9a5ElJAXD6R8Uu4_zDiOeR5CnCO1odP4c4Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~llbCnAmJnFe9HyyV_ykgR0_TrHKYASFblJ3Pvhm5PywJuywmxcXoJ4lrCMwDBPjIBgtUh0umkzKxrLU4EI6MyA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~llbCnAmJnFe9HyyV_ykgR0_TrHKYASFblJ3Pvhm5PywJuywmxcXoJ4lrCMwDBPjIBgtUh0umkzKxrLU4EI6MyA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~llbCnAmJnFe9HyyV_ykgR0_TrHKYASFblJ3Pvhm5PywJuywmxcXoJ4lrCMwDBPjIBgtUh0umkzKxrLU4EI6MyA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lm2mTFuhvad_1rAV0FUiY7o0PArAdqQZkaWMdH55wzp5nyeSomDlrcddp1XVwLQb7OjAzWRANBLBrBJG2F3e1Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lm2mTFuhvad_1rAV0FUiY7o0PArAdqQZkaWMdH55wzp5nyeSomDlrcddp1XVwLQb7OjAzWRANBLBrBJG2F3e1Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lm2mTFuhvad_1rAV0FUiY7o0PArAdqQZkaWMdH55wzp5nyeSomDlrcddp1XVwLQb7OjAzWRANBLBrBJG2F3e1Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~loifPxt5nViy0TpznjqMGydqhj2jrDDwoJTUQk3PVy5vH_JkAU4NZzzHwhryUtnITYw_7Vv0_9C0wRmEWaUKCQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~loifPxt5nViy0TpznjqMGydqhj2jrDDwoJTUQk3PVy5vH_JkAU4NZzzHwhryUtnITYw_7Vv0_9C0wRmEWaUKCQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~loifPxt5nViy0TpznjqMGydqhj2jrDDwoJTUQk3PVy5vH_JkAU4NZzzHwhryUtnITYw_7Vv0_9C0wRmEWaUKCQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~luEucg3AdxK86cY47OjHmS5qKTnNyXMaNkJzn3jKgA-PkCmvZIJdd1su6FCPevgDks6szeHg9m6rC5SWDOYd5A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~luEucg3AdxK86cY47OjHmS5qKTnNyXMaNkJzn3jKgA-PkCmvZIJdd1su6FCPevgDks6szeHg9m6rC5SWDOYd5A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~luEucg3AdxK86cY47OjHmS5qKTnNyXMaNkJzn3jKgA-PkCmvZIJdd1su6FCPevgDks6szeHg9m6rC5SWDOYd5A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lyQxRpsiMT_wQL07R8os4GEHV1OZ_uhSOfdiVUebhVvAbzZfx41g5-pIE2tGweylUfGI_RjlOuag2WvHZdqhlg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lyQxRpsiMT_wQL07R8os4GEHV1OZ_uhSOfdiVUebhVvAbzZfx41g5-pIE2tGweylUfGI_RjlOuag2WvHZdqhlg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~lyQxRpsiMT_wQL07R8os4GEHV1OZ_uhSOfdiVUebhVvAbzZfx41g5-pIE2tGweylUfGI_RjlOuag2WvHZdqhlg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~m3-uqd5uft4rCx0IWPm3w_Z-zMHy5zgIsoIWPBfy2bjYtTW4I9QqiW_vxiyQ48WNVmY7IoHT92mlQE5bs8SeBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~m3-uqd5uft4rCx0IWPm3w_Z-zMHy5zgIsoIWPBfy2bjYtTW4I9QqiW_vxiyQ48WNVmY7IoHT92mlQE5bs8SeBA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~m3-uqd5uft4rCx0IWPm3w_Z-zMHy5zgIsoIWPBfy2bjYtTW4I9QqiW_vxiyQ48WNVmY7IoHT92mlQE5bs8SeBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~m3wx4E1DMpugu4MrAo66SX3NPips1Nf4zHU-krks07_lvw3_HCsq68MKlNA3GH0F65TT8OWc_TqPFKfvnTdCbQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~m3wx4E1DMpugu4MrAo66SX3NPips1Nf4zHU-krks07_lvw3_HCsq68MKlNA3GH0F65TT8OWc_TqPFKfvnTdCbQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~m3wx4E1DMpugu4MrAo66SX3NPips1Nf4zHU-krks07_lvw3_HCsq68MKlNA3GH0F65TT8OWc_TqPFKfvnTdCbQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mPcIuJoqFhui5affJxCzDHpjoeEtHsPYrf9rH95AvakWN8BHN7fYZCNbH8NgcYd-Bu3S-mYfFuQTRAIXHCAUpQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mPcIuJoqFhui5affJxCzDHpjoeEtHsPYrf9rH95AvakWN8BHN7fYZCNbH8NgcYd-Bu3S-mYfFuQTRAIXHCAUpQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mPcIuJoqFhui5affJxCzDHpjoeEtHsPYrf9rH95AvakWN8BHN7fYZCNbH8NgcYd-Bu3S-mYfFuQTRAIXHCAUpQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mQz_006w_wA0jwwGS7_Yinq8Z0kOvfg0wgDbzL6LQsZ0Ii02MwGqxhzw3WwFVcBnx2Ziy-WHGLcqojCb2l1ZZw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mQz_006w_wA0jwwGS7_Yinq8Z0kOvfg0wgDbzL6LQsZ0Ii02MwGqxhzw3WwFVcBnx2Ziy-WHGLcqojCb2l1ZZw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mQz_006w_wA0jwwGS7_Yinq8Z0kOvfg0wgDbzL6LQsZ0Ii02MwGqxhzw3WwFVcBnx2Ziy-WHGLcqojCb2l1ZZw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mUIBEtga1vC6oYZ1d_XyZ83nYI71akabUbdJYRDlKfMG2qGKXizvFHB5wtJhOeEoXDJudnJnO9_T0hptKPQ-xA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mUIBEtga1vC6oYZ1d_XyZ83nYI71akabUbdJYRDlKfMG2qGKXizvFHB5wtJhOeEoXDJudnJnO9_T0hptKPQ-xA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mUIBEtga1vC6oYZ1d_XyZ83nYI71akabUbdJYRDlKfMG2qGKXizvFHB5wtJhOeEoXDJudnJnO9_T0hptKPQ-xA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~m_9sp_NAkJUkis7ee-dAo1f57V8rzGoB8mxZ_lIBW6t3_OHFEWgUiJBkvaCXYoB3Jy4eFxsIEUdcz27s1v_OcQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~m_9sp_NAkJUkis7ee-dAo1f57V8rzGoB8mxZ_lIBW6t3_OHFEWgUiJBkvaCXYoB3Jy4eFxsIEUdcz27s1v_OcQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~m_9sp_NAkJUkis7ee-dAo1f57V8rzGoB8mxZ_lIBW6t3_OHFEWgUiJBkvaCXYoB3Jy4eFxsIEUdcz27s1v_OcQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mjTboebqz_-bVN0tiHyk2DkOdPcYoRqkTPKHKD6EGyiXPWHRN3-X1_1j-oATaHxk0jws3c9vLjWmsCzPBcj62w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mjTboebqz_-bVN0tiHyk2DkOdPcYoRqkTPKHKD6EGyiXPWHRN3-X1_1j-oATaHxk0jws3c9vLjWmsCzPBcj62w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mjTboebqz_-bVN0tiHyk2DkOdPcYoRqkTPKHKD6EGyiXPWHRN3-X1_1j-oATaHxk0jws3c9vLjWmsCzPBcj62w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mllRaB0G3phuj12mRpu8dskGDn9pKwRzKb4R3dCgYsNil6gGeCG46xyu8gOOS5uaEDqRnSaEbSPMQPOYcx2EJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mllRaB0G3phuj12mRpu8dskGDn9pKwRzKb4R3dCgYsNil6gGeCG46xyu8gOOS5uaEDqRnSaEbSPMQPOYcx2EJg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mllRaB0G3phuj12mRpu8dskGDn9pKwRzKb4R3dCgYsNil6gGeCG46xyu8gOOS5uaEDqRnSaEbSPMQPOYcx2EJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mmald-qJqQENHq0DsQLKjLQ-KDfYNpnex9ALE81_uTDXvakEubbsMo7VZbsTx2jkYnIRqIuALLU7hZ4Irr9nhQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mmald-qJqQENHq0DsQLKjLQ-KDfYNpnex9ALE81_uTDXvakEubbsMo7VZbsTx2jkYnIRqIuALLU7hZ4Irr9nhQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mmald-qJqQENHq0DsQLKjLQ-KDfYNpnex9ALE81_uTDXvakEubbsMo7VZbsTx2jkYnIRqIuALLU7hZ4Irr9nhQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~moRLSuV7omeVx4ORE7fZ9U-CouZo-jFmKapCvLhe-8bYW5vCRu80H8Lu9vjZ5LOGlkYIOGK7JRIj8hOTGOs63Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~moRLSuV7omeVx4ORE7fZ9U-CouZo-jFmKapCvLhe-8bYW5vCRu80H8Lu9vjZ5LOGlkYIOGK7JRIj8hOTGOs63Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~moRLSuV7omeVx4ORE7fZ9U-CouZo-jFmKapCvLhe-8bYW5vCRu80H8Lu9vjZ5LOGlkYIOGK7JRIj8hOTGOs63Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mqQseJfv4pHNI1pDt1xIJbalKazV6vNbi_aKXHq-rNDcfKT3EuWLnBtTaaDdFT1UI9TZdmUVwWsKOMGdaV7I9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mqQseJfv4pHNI1pDt1xIJbalKazV6vNbi_aKXHq-rNDcfKT3EuWLnBtTaaDdFT1UI9TZdmUVwWsKOMGdaV7I9A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~mqQseJfv4pHNI1pDt1xIJbalKazV6vNbi_aKXHq-rNDcfKT3EuWLnBtTaaDdFT1UI9TZdmUVwWsKOMGdaV7I9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~msT5bogPmDs_i0a5r_76Xq1YTJIPWUL2eI5OkuCXSQMGUl-5Vl9_EUOB6TiTIb2PzMYhc8weD7FBIpoZngvPgg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~msT5bogPmDs_i0a5r_76Xq1YTJIPWUL2eI5OkuCXSQMGUl-5Vl9_EUOB6TiTIb2PzMYhc8weD7FBIpoZngvPgg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~msT5bogPmDs_i0a5r_76Xq1YTJIPWUL2eI5OkuCXSQMGUl-5Vl9_EUOB6TiTIb2PzMYhc8weD7FBIpoZngvPgg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~muPVxhT5-sYByGKMC0t2H3MlRuQwiSHcFcuor7l0P8CLc7R8qQbJeTER7guxbPZhic330GGBpKQVGrcTKUG-3w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~muPVxhT5-sYByGKMC0t2H3MlRuQwiSHcFcuor7l0P8CLc7R8qQbJeTER7guxbPZhic330GGBpKQVGrcTKUG-3w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~muPVxhT5-sYByGKMC0t2H3MlRuQwiSHcFcuor7l0P8CLc7R8qQbJeTER7guxbPZhic330GGBpKQVGrcTKUG-3w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~n0xmNd7vvEj9zwmxlVSH4_qsr41_eMkVtBIQhWR602l-TBG-BFaS05hBeEWgmABhOFKDaszyL-5F9apl6kYvuA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~n0xmNd7vvEj9zwmxlVSH4_qsr41_eMkVtBIQhWR602l-TBG-BFaS05hBeEWgmABhOFKDaszyL-5F9apl6kYvuA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~n0xmNd7vvEj9zwmxlVSH4_qsr41_eMkVtBIQhWR602l-TBG-BFaS05hBeEWgmABhOFKDaszyL-5F9apl6kYvuA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~n7nK9X-Zm5BQVcmlRSshweXYRPGB4-lwH4fCXzOn-Fk4xEhAcZLNTN_kbtg96ZRAil951P2WOaV--0ZF9c1M2Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~n7nK9X-Zm5BQVcmlRSshweXYRPGB4-lwH4fCXzOn-Fk4xEhAcZLNTN_kbtg96ZRAil951P2WOaV--0ZF9c1M2Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~n7nK9X-Zm5BQVcmlRSshweXYRPGB4-lwH4fCXzOn-Fk4xEhAcZLNTN_kbtg96ZRAil951P2WOaV--0ZF9c1M2Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nAlIErRhNXkLPo2aUGObBhhTLwVSqT7LBznbCvhD-2UkCUv6UeiTTxFd4BNF0crrJYUwuIrIG80FwPdPU4IRNA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nAlIErRhNXkLPo2aUGObBhhTLwVSqT7LBznbCvhD-2UkCUv6UeiTTxFd4BNF0crrJYUwuIrIG80FwPdPU4IRNA== new file mode 100644 index 0000000..bece184 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nAlIErRhNXkLPo2aUGObBhhTLwVSqT7LBznbCvhD-2UkCUv6UeiTTxFd4BNF0crrJYUwuIrIG80FwPdPU4IRNA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nApcrDYC3ex48AS0EeOIRgiaSVUUPGyaYKM4FxXhmktkXg0GobztuYcvRHOkh1y5yHBY67ZD4G0l2ZY5NmTShg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nApcrDYC3ex48AS0EeOIRgiaSVUUPGyaYKM4FxXhmktkXg0GobztuYcvRHOkh1y5yHBY67ZD4G0l2ZY5NmTShg== new file mode 100644 index 0000000..5e2295c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nApcrDYC3ex48AS0EeOIRgiaSVUUPGyaYKM4FxXhmktkXg0GobztuYcvRHOkh1y5yHBY67ZD4G0l2ZY5NmTShg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nDV0g3IRDaLo-GZJCakUXfMKuE4dQ6jRYCKaavOj_BXJUL_nyHroqTuFL741FBUk89KNsKfzUX3lIj8eBIO6nw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nDV0g3IRDaLo-GZJCakUXfMKuE4dQ6jRYCKaavOj_BXJUL_nyHroqTuFL741FBUk89KNsKfzUX3lIj8eBIO6nw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nDV0g3IRDaLo-GZJCakUXfMKuE4dQ6jRYCKaavOj_BXJUL_nyHroqTuFL741FBUk89KNsKfzUX3lIj8eBIO6nw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nKihBqBDQpaQB5r80LaQXhlMeEaxHql49l0ng-VAztNXDDer-4J5pVmw21eohozxQoeb9kH04TmIs5FkPPXdBw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nKihBqBDQpaQB5r80LaQXhlMeEaxHql49l0ng-VAztNXDDer-4J5pVmw21eohozxQoeb9kH04TmIs5FkPPXdBw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nKihBqBDQpaQB5r80LaQXhlMeEaxHql49l0ng-VAztNXDDer-4J5pVmw21eohozxQoeb9kH04TmIs5FkPPXdBw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nP_vbXNXBaACeCXms_MMYlVeulhZE19s_GmKe2QRAClbcR4731l-9yEUSUE9zKUps-QwxD6MqV9kZ4FjV37-Tg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nP_vbXNXBaACeCXms_MMYlVeulhZE19s_GmKe2QRAClbcR4731l-9yEUSUE9zKUps-QwxD6MqV9kZ4FjV37-Tg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nP_vbXNXBaACeCXms_MMYlVeulhZE19s_GmKe2QRAClbcR4731l-9yEUSUE9zKUps-QwxD6MqV9kZ4FjV37-Tg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nWjdW5kNJ_JuepWK0taI-4je2cNDJzRj-F2T-VPjNy1ua1r-pkboaaP0AJw4S2dRBlOniMBR7G2f-_Z58-TgPw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nWjdW5kNJ_JuepWK0taI-4je2cNDJzRj-F2T-VPjNy1ua1r-pkboaaP0AJw4S2dRBlOniMBR7G2f-_Z58-TgPw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nWjdW5kNJ_JuepWK0taI-4je2cNDJzRj-F2T-VPjNy1ua1r-pkboaaP0AJw4S2dRBlOniMBR7G2f-_Z58-TgPw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nXPTrQJnTQlowTB0pCVJwd1v-WMzt1sv0y_FZzjCpcSPsoDWft0l540U9zJutlP1AZHYz1M0SPTJaKLoywVTug== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nXPTrQJnTQlowTB0pCVJwd1v-WMzt1sv0y_FZzjCpcSPsoDWft0l540U9zJutlP1AZHYz1M0SPTJaKLoywVTug== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nXPTrQJnTQlowTB0pCVJwd1v-WMzt1sv0y_FZzjCpcSPsoDWft0l540U9zJutlP1AZHYz1M0SPTJaKLoywVTug== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nelYYCwRKwmdcZcD4kEkj0QkH08QddYFqLPwRh7bQEeddLsxsR7XCauT7yfQ_FTYb5thiEGgL7TpqB0DDDR0lw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nelYYCwRKwmdcZcD4kEkj0QkH08QddYFqLPwRh7bQEeddLsxsR7XCauT7yfQ_FTYb5thiEGgL7TpqB0DDDR0lw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nelYYCwRKwmdcZcD4kEkj0QkH08QddYFqLPwRh7bQEeddLsxsR7XCauT7yfQ_FTYb5thiEGgL7TpqB0DDDR0lw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nh1YBC1VxR0axIqITm5PMvahpJIdX4SwQWapl2iaUy1xoAy1GwsILQkKouHm4nUwNrW7Ojxu5lwoBU6Rr4OyQA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nh1YBC1VxR0axIqITm5PMvahpJIdX4SwQWapl2iaUy1xoAy1GwsILQkKouHm4nUwNrW7Ojxu5lwoBU6Rr4OyQA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nh1YBC1VxR0axIqITm5PMvahpJIdX4SwQWapl2iaUy1xoAy1GwsILQkKouHm4nUwNrW7Ojxu5lwoBU6Rr4OyQA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nhbu_762X6gkb6okchvrxPIgZgHUHvVF-b6IIGqublFHueybychbveGmls8o5DNnYVZcBUChvELMAXpG0c7alQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nhbu_762X6gkb6okchvrxPIgZgHUHvVF-b6IIGqublFHueybychbveGmls8o5DNnYVZcBUChvELMAXpG0c7alQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nhbu_762X6gkb6okchvrxPIgZgHUHvVF-b6IIGqublFHueybychbveGmls8o5DNnYVZcBUChvELMAXpG0c7alQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nnJpKZVeZvu-NY7PH31CzlKTilCXcJj9UXZkSdHJEoXltevk9cU0MZLnYHd2yN7KLzoO_LpXgAM1a7kqr90SBg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nnJpKZVeZvu-NY7PH31CzlKTilCXcJj9UXZkSdHJEoXltevk9cU0MZLnYHd2yN7KLzoO_LpXgAM1a7kqr90SBg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nnJpKZVeZvu-NY7PH31CzlKTilCXcJj9UXZkSdHJEoXltevk9cU0MZLnYHd2yN7KLzoO_LpXgAM1a7kqr90SBg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nzqMboZdqFP4Lga56F1e9QhzyNz8t5s3Gj5HCH6P7_NuUWNt8h9JVXQLhCOmJ377z5TZ9CeszQzhqKId39WShA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nzqMboZdqFP4Lga56F1e9QhzyNz8t5s3Gj5HCH6P7_NuUWNt8h9JVXQLhCOmJ377z5TZ9CeszQzhqKId39WShA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~nzqMboZdqFP4Lga56F1e9QhzyNz8t5s3Gj5HCH6P7_NuUWNt8h9JVXQLhCOmJ377z5TZ9CeszQzhqKId39WShA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~o54oJqhbMpOWoWIdndWdHY7WlbIrXzy9qLrvQ4Wq-Gzs7OypNZua1E9b8-awRmoxBwLiQueudVPgU0iZAkycAA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~o54oJqhbMpOWoWIdndWdHY7WlbIrXzy9qLrvQ4Wq-Gzs7OypNZua1E9b8-awRmoxBwLiQueudVPgU0iZAkycAA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~o54oJqhbMpOWoWIdndWdHY7WlbIrXzy9qLrvQ4Wq-Gzs7OypNZua1E9b8-awRmoxBwLiQueudVPgU0iZAkycAA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~o8eF3lFirnNKWjW6FNWhUGrxALy-Z2_yuUDRIG7i7M0n-837aTr5dAFuHrzOv2dg_qHM-B9eIE6kQd8smJBt1A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~o8eF3lFirnNKWjW6FNWhUGrxALy-Z2_yuUDRIG7i7M0n-837aTr5dAFuHrzOv2dg_qHM-B9eIE6kQd8smJBt1A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~o8eF3lFirnNKWjW6FNWhUGrxALy-Z2_yuUDRIG7i7M0n-837aTr5dAFuHrzOv2dg_qHM-B9eIE6kQd8smJBt1A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oF3_fuE3_6xLvRc3wgjBpg-DFXE4Am33SDeiI6rSVyVYLNZBwA62L-6CUZDZYRLpN2WGCRLG1FiauSkALulFqw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oF3_fuE3_6xLvRc3wgjBpg-DFXE4Am33SDeiI6rSVyVYLNZBwA62L-6CUZDZYRLpN2WGCRLG1FiauSkALulFqw== new file mode 100644 index 0000000..7c8b6f9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oF3_fuE3_6xLvRc3wgjBpg-DFXE4Am33SDeiI6rSVyVYLNZBwA62L-6CUZDZYRLpN2WGCRLG1FiauSkALulFqw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oH2YCjtzQcFgIgd36L69n4qMmhyOxkAV3nN-08sSPp3BqfbvCQsxCD85Z9p3xMyoAM8Rp213rMDFWlxbgFg4-A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oH2YCjtzQcFgIgd36L69n4qMmhyOxkAV3nN-08sSPp3BqfbvCQsxCD85Z9p3xMyoAM8Rp213rMDFWlxbgFg4-A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oH2YCjtzQcFgIgd36L69n4qMmhyOxkAV3nN-08sSPp3BqfbvCQsxCD85Z9p3xMyoAM8Rp213rMDFWlxbgFg4-A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oIR9PO3hqRfEHmufRS0r_4cR-5XQaD2sg-0wxfo9GVzxlals52knpyue9IdgwPLiYLdNJjVgUsbSgPc5gJXjjA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oIR9PO3hqRfEHmufRS0r_4cR-5XQaD2sg-0wxfo9GVzxlals52knpyue9IdgwPLiYLdNJjVgUsbSgPc5gJXjjA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oIR9PO3hqRfEHmufRS0r_4cR-5XQaD2sg-0wxfo9GVzxlals52knpyue9IdgwPLiYLdNJjVgUsbSgPc5gJXjjA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oKVSxRO8gTdLghDAzSoZK9xoZAsmC8BZrQM77-YALUdU24Utv6Quw2YDgwAykhO5TNHb7lUj9o4liaOwJ6aDww== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oKVSxRO8gTdLghDAzSoZK9xoZAsmC8BZrQM77-YALUdU24Utv6Quw2YDgwAykhO5TNHb7lUj9o4liaOwJ6aDww== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oKVSxRO8gTdLghDAzSoZK9xoZAsmC8BZrQM77-YALUdU24Utv6Quw2YDgwAykhO5TNHb7lUj9o4liaOwJ6aDww== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oRMi0sbQLktfDDDGUS-SqBKpdDiD6HCztVES_ShfGr0KVcYENoIq7y9oUSDWL5B_P2gkdtWG8JEsJLxPbdWOZA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oRMi0sbQLktfDDDGUS-SqBKpdDiD6HCztVES_ShfGr0KVcYENoIq7y9oUSDWL5B_P2gkdtWG8JEsJLxPbdWOZA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oRMi0sbQLktfDDDGUS-SqBKpdDiD6HCztVES_ShfGr0KVcYENoIq7y9oUSDWL5B_P2gkdtWG8JEsJLxPbdWOZA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oUqiikBu2Q3MrMlGdtFpZkttwBC4Xmw_xO-ivAgxkwFneW81_54sKbCIhr9tPpQxQ9WRWbqawktuHLVsOZiF7A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oUqiikBu2Q3MrMlGdtFpZkttwBC4Xmw_xO-ivAgxkwFneW81_54sKbCIhr9tPpQxQ9WRWbqawktuHLVsOZiF7A== new file mode 100644 index 0000000..b2aebaf Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oUqiikBu2Q3MrMlGdtFpZkttwBC4Xmw_xO-ivAgxkwFneW81_54sKbCIhr9tPpQxQ9WRWbqawktuHLVsOZiF7A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oVn5TFBGqaio2mdYeB0ni5z1Nv5SX4zl9-Nid2HOvJUIcOqMgyhbg9xR9RS2HWa08xTqhsjwolMqinlP1PvU8Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oVn5TFBGqaio2mdYeB0ni5z1Nv5SX4zl9-Nid2HOvJUIcOqMgyhbg9xR9RS2HWa08xTqhsjwolMqinlP1PvU8Q== new file mode 100644 index 0000000..9a87cca Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oVn5TFBGqaio2mdYeB0ni5z1Nv5SX4zl9-Nid2HOvJUIcOqMgyhbg9xR9RS2HWa08xTqhsjwolMqinlP1PvU8Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oXH9O9DHxBTa8vFb71i4citqlK73rhkq3CjdwR4cUK-U8CMo1vkxcJlPEkjeitQLvbsYr37lPA5nQAgds4_DLg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oXH9O9DHxBTa8vFb71i4citqlK73rhkq3CjdwR4cUK-U8CMo1vkxcJlPEkjeitQLvbsYr37lPA5nQAgds4_DLg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oXH9O9DHxBTa8vFb71i4citqlK73rhkq3CjdwR4cUK-U8CMo1vkxcJlPEkjeitQLvbsYr37lPA5nQAgds4_DLg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oZdg3OOc25D6ZrF79DoPYR7TnTDXMPSvnShyt9QfZkt0TO-Xn6syHcCEDyL2IOknS8ceKOU-XmwS6FEY7Aaafg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oZdg3OOc25D6ZrF79DoPYR7TnTDXMPSvnShyt9QfZkt0TO-Xn6syHcCEDyL2IOknS8ceKOU-XmwS6FEY7Aaafg== new file mode 100644 index 0000000..7730942 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~oZdg3OOc25D6ZrF79DoPYR7TnTDXMPSvnShyt9QfZkt0TO-Xn6syHcCEDyL2IOknS8ceKOU-XmwS6FEY7Aaafg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~omia9fMzORInD8qPIyFKn9U8dlvKqnNUKCoym6tA-gpmtP8zD4Gl0xBrg8-aIdtz9ZATk7hNhb5uF55OP-u_qQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~omia9fMzORInD8qPIyFKn9U8dlvKqnNUKCoym6tA-gpmtP8zD4Gl0xBrg8-aIdtz9ZATk7hNhb5uF55OP-u_qQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~omia9fMzORInD8qPIyFKn9U8dlvKqnNUKCoym6tA-gpmtP8zD4Gl0xBrg8-aIdtz9ZATk7hNhb5uF55OP-u_qQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ooQnwzgmikLBo4_SeOEJUiNMsUmS0Q4HFD6mSRXMItmJ58D-RBbDsL9gsYr_yfb8yMxHU2lC3aALMyY3qlaUKg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ooQnwzgmikLBo4_SeOEJUiNMsUmS0Q4HFD6mSRXMItmJ58D-RBbDsL9gsYr_yfb8yMxHU2lC3aALMyY3qlaUKg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ooQnwzgmikLBo4_SeOEJUiNMsUmS0Q4HFD6mSRXMItmJ58D-RBbDsL9gsYr_yfb8yMxHU2lC3aALMyY3qlaUKg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~osvl4N9z7xsgEnoYHDIzGH8jJZFr15rQL0wPJ0Va_OLwUbXaLAvWWHCDIw7X1nIUPMd8Tmzqi-OfrFB5Hti2Hw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~osvl4N9z7xsgEnoYHDIzGH8jJZFr15rQL0wPJ0Va_OLwUbXaLAvWWHCDIw7X1nIUPMd8Tmzqi-OfrFB5Hti2Hw== new file mode 100644 index 0000000..0d78189 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~osvl4N9z7xsgEnoYHDIzGH8jJZFr15rQL0wPJ0Va_OLwUbXaLAvWWHCDIw7X1nIUPMd8Tmzqi-OfrFB5Hti2Hw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ou56a-I40JvTJ3ZJhRjbfw9iOspRYr_jf9KCqGn-eh0FcojkwX3Kryp36m41Qbe2RYFD6Vg76m4PCYHKkk2LkQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ou56a-I40JvTJ3ZJhRjbfw9iOspRYr_jf9KCqGn-eh0FcojkwX3Kryp36m41Qbe2RYFD6Vg76m4PCYHKkk2LkQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ou56a-I40JvTJ3ZJhRjbfw9iOspRYr_jf9KCqGn-eh0FcojkwX3Kryp36m41Qbe2RYFD6Vg76m4PCYHKkk2LkQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ouS_YW3M3u5L9_UPwnPA_VK9F8iVQMav05sAAlMhs6TB2VAVEL1KzTkWyx9OASlhB7MIxveyllNJIoqjXLmkBw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ouS_YW3M3u5L9_UPwnPA_VK9F8iVQMav05sAAlMhs6TB2VAVEL1KzTkWyx9OASlhB7MIxveyllNJIoqjXLmkBw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ouS_YW3M3u5L9_UPwnPA_VK9F8iVQMav05sAAlMhs6TB2VAVEL1KzTkWyx9OASlhB7MIxveyllNJIoqjXLmkBw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ov0cibhXmkwCUkI5fqSxvC1SW1vCNmzqg1UyvYmLqi1ZgD_rL5dlw8WEwir3PMdGrbHmg8jxL4Qh7sYyEI9daw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ov0cibhXmkwCUkI5fqSxvC1SW1vCNmzqg1UyvYmLqi1ZgD_rL5dlw8WEwir3PMdGrbHmg8jxL4Qh7sYyEI9daw== new file mode 100644 index 0000000..1bf67ae Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ov0cibhXmkwCUkI5fqSxvC1SW1vCNmzqg1UyvYmLqi1ZgD_rL5dlw8WEwir3PMdGrbHmg8jxL4Qh7sYyEI9daw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~p3tNTNrbcbSqrVqQMAR12_kZU-gEIPMRT648tgHvkv-MKkDC8REPe0hIafsHXF-IbkXYaTOXYQlIGCZt1RBzgQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~p3tNTNrbcbSqrVqQMAR12_kZU-gEIPMRT648tgHvkv-MKkDC8REPe0hIafsHXF-IbkXYaTOXYQlIGCZt1RBzgQ== new file mode 100644 index 0000000..c23f3a8 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~p3tNTNrbcbSqrVqQMAR12_kZU-gEIPMRT648tgHvkv-MKkDC8REPe0hIafsHXF-IbkXYaTOXYQlIGCZt1RBzgQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~p8tP_he7T3indK1TZsrPoe7yisQvt1FPBCuv_0XfhnHa9YHeZ1Xd0Ur_qFCMeZH693dJ1pBBf48AaoaPLKrOhg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~p8tP_he7T3indK1TZsrPoe7yisQvt1FPBCuv_0XfhnHa9YHeZ1Xd0Ur_qFCMeZH693dJ1pBBf48AaoaPLKrOhg== new file mode 100644 index 0000000..2d52974 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~p8tP_he7T3indK1TZsrPoe7yisQvt1FPBCuv_0XfhnHa9YHeZ1Xd0Ur_qFCMeZH693dJ1pBBf48AaoaPLKrOhg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pBHB8unwdrFfU1HdoobEHBT3SG2yzrFRkao5GIZ3TRxjnZaJfNTd-8pb5x69gnw6V_go7ZLgmzO-XghkXqqc_Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pBHB8unwdrFfU1HdoobEHBT3SG2yzrFRkao5GIZ3TRxjnZaJfNTd-8pb5x69gnw6V_go7ZLgmzO-XghkXqqc_Q== new file mode 100644 index 0000000..c2f26f3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pBHB8unwdrFfU1HdoobEHBT3SG2yzrFRkao5GIZ3TRxjnZaJfNTd-8pb5x69gnw6V_go7ZLgmzO-XghkXqqc_Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pBXr472IVKMMKcomLjL199JVeYxqC5Rc7BzyyUAJ6j-EUmE144fueIPuyNYbQ8WCdEvElACEHNnNWLdNj1SELg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pBXr472IVKMMKcomLjL199JVeYxqC5Rc7BzyyUAJ6j-EUmE144fueIPuyNYbQ8WCdEvElACEHNnNWLdNj1SELg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pBXr472IVKMMKcomLjL199JVeYxqC5Rc7BzyyUAJ6j-EUmE144fueIPuyNYbQ8WCdEvElACEHNnNWLdNj1SELg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pBvod0CDyySzk5UDMbgFHuomxFWU0uELRbikKsgU_DUiudzFSzgQn2zm0sMQ1V5aGc8ZaTe6EFYyH2DPL9xMmw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pBvod0CDyySzk5UDMbgFHuomxFWU0uELRbikKsgU_DUiudzFSzgQn2zm0sMQ1V5aGc8ZaTe6EFYyH2DPL9xMmw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pBvod0CDyySzk5UDMbgFHuomxFWU0uELRbikKsgU_DUiudzFSzgQn2zm0sMQ1V5aGc8ZaTe6EFYyH2DPL9xMmw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pCJzAb7c6gqIaQgh1glFowsBM5Ao68zdzMostFN3L6RZI0qx-chEnug5lsQUlCnsjK4Q-eF1czdCHRXN3RcOJg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pCJzAb7c6gqIaQgh1glFowsBM5Ao68zdzMostFN3L6RZI0qx-chEnug5lsQUlCnsjK4Q-eF1czdCHRXN3RcOJg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pCJzAb7c6gqIaQgh1glFowsBM5Ao68zdzMostFN3L6RZI0qx-chEnug5lsQUlCnsjK4Q-eF1czdCHRXN3RcOJg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pL6VRlCi4EoNUMKlOQtIs8ggEOxsx8iCcgxYNfULuPbQT64N5wjVZeDkj2BzpexCMyKE6bhnpfKFuhWpbjEtIQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pL6VRlCi4EoNUMKlOQtIs8ggEOxsx8iCcgxYNfULuPbQT64N5wjVZeDkj2BzpexCMyKE6bhnpfKFuhWpbjEtIQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pL6VRlCi4EoNUMKlOQtIs8ggEOxsx8iCcgxYNfULuPbQT64N5wjVZeDkj2BzpexCMyKE6bhnpfKFuhWpbjEtIQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pMfzQYxEibNSl0dUujP8kAAzZhHXXM9Yv-Cne-act4PckUdbwmVAx51EWeeHycAI6d5HBYP_Lh7k8_68thcC8w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pMfzQYxEibNSl0dUujP8kAAzZhHXXM9Yv-Cne-act4PckUdbwmVAx51EWeeHycAI6d5HBYP_Lh7k8_68thcC8w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pMfzQYxEibNSl0dUujP8kAAzZhHXXM9Yv-Cne-act4PckUdbwmVAx51EWeeHycAI6d5HBYP_Lh7k8_68thcC8w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pY1LeY9t0vvmbwDU-hrBl80aLTwSNgHalVHykVzBrTGV3JcFG4THf-9R5kjjTlJeYfFU48hDRElMOM8jy8PBag== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pY1LeY9t0vvmbwDU-hrBl80aLTwSNgHalVHykVzBrTGV3JcFG4THf-9R5kjjTlJeYfFU48hDRElMOM8jy8PBag== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pY1LeY9t0vvmbwDU-hrBl80aLTwSNgHalVHykVzBrTGV3JcFG4THf-9R5kjjTlJeYfFU48hDRElMOM8jy8PBag== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pbSVYdZILdloA1CR6nAcbiZL8tO46alCDRTqKphs1q-Db_MTZCU4Ad-Y7JrE6HoIS5nCon9ssBHR0ZARwmQejg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pbSVYdZILdloA1CR6nAcbiZL8tO46alCDRTqKphs1q-Db_MTZCU4Ad-Y7JrE6HoIS5nCon9ssBHR0ZARwmQejg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pbSVYdZILdloA1CR6nAcbiZL8tO46alCDRTqKphs1q-Db_MTZCU4Ad-Y7JrE6HoIS5nCon9ssBHR0ZARwmQejg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pdIbxz12jQas5gmH6UJQXVA-JI7fi0oj623KXTpjwUyxDdr3tILDpgmmeT9LH_sNFOFuxk-nAduHZhYyi23xWQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pdIbxz12jQas5gmH6UJQXVA-JI7fi0oj623KXTpjwUyxDdr3tILDpgmmeT9LH_sNFOFuxk-nAduHZhYyi23xWQ== new file mode 100644 index 0000000..4b98d1c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pdIbxz12jQas5gmH6UJQXVA-JI7fi0oj623KXTpjwUyxDdr3tILDpgmmeT9LH_sNFOFuxk-nAduHZhYyi23xWQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pm1dNqKF7Gu5rJMHrEKEf_aGuF5tAjDu5I3hxfFJ-hoxpbt-mNkc9sH-JMkNvgo35Y4s9w-YX_iipsYAkadZLw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pm1dNqKF7Gu5rJMHrEKEf_aGuF5tAjDu5I3hxfFJ-hoxpbt-mNkc9sH-JMkNvgo35Y4s9w-YX_iipsYAkadZLw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pm1dNqKF7Gu5rJMHrEKEf_aGuF5tAjDu5I3hxfFJ-hoxpbt-mNkc9sH-JMkNvgo35Y4s9w-YX_iipsYAkadZLw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~psaJSn8MLgjT933cb468azwo1eAOzMR3q0dVUrPCy45kKJs_UEk490VLghnfNMTN_VHvdDX6TMtbXlK5cPcK_g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~psaJSn8MLgjT933cb468azwo1eAOzMR3q0dVUrPCy45kKJs_UEk490VLghnfNMTN_VHvdDX6TMtbXlK5cPcK_g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~psaJSn8MLgjT933cb468azwo1eAOzMR3q0dVUrPCy45kKJs_UEk490VLghnfNMTN_VHvdDX6TMtbXlK5cPcK_g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pyiQ0VOE2z4t1MOM946X58irCj-ytwoFLN1fbTbxKcqtNuGVcUyFRocgoU3bFSa7Owwq5z5pNk67lmgljGWqqw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pyiQ0VOE2z4t1MOM946X58irCj-ytwoFLN1fbTbxKcqtNuGVcUyFRocgoU3bFSa7Owwq5z5pNk67lmgljGWqqw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~pyiQ0VOE2z4t1MOM946X58irCj-ytwoFLN1fbTbxKcqtNuGVcUyFRocgoU3bFSa7Owwq5z5pNk67lmgljGWqqw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~q3rTuvvB3z6poTZjsVoNYOcmo6XzMO60LAxRaNzzd86ex8Jv00Y1NuJ2ciKO4nXcHLaxVelUER_IxqMPDjeyYA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~q3rTuvvB3z6poTZjsVoNYOcmo6XzMO60LAxRaNzzd86ex8Jv00Y1NuJ2ciKO4nXcHLaxVelUER_IxqMPDjeyYA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~q3rTuvvB3z6poTZjsVoNYOcmo6XzMO60LAxRaNzzd86ex8Jv00Y1NuJ2ciKO4nXcHLaxVelUER_IxqMPDjeyYA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~q4_K6CFmX1aJi2QKdqEyNzuiXUhCNrLUCgg5DgS9dXbnl5fZ-Pbp2AYnH8xcUXBAf9Zh1H8TvYy0nXKVcfkzQA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~q4_K6CFmX1aJi2QKdqEyNzuiXUhCNrLUCgg5DgS9dXbnl5fZ-Pbp2AYnH8xcUXBAf9Zh1H8TvYy0nXKVcfkzQA== new file mode 100644 index 0000000..90a7194 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~q4_K6CFmX1aJi2QKdqEyNzuiXUhCNrLUCgg5DgS9dXbnl5fZ-Pbp2AYnH8xcUXBAf9Zh1H8TvYy0nXKVcfkzQA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~q8vTMWBqcmsjoI5omZe-1xPjCjoJRpPqKDgTbNSSF_JejLmqxOualyUeZilMQYuTyZoQFtEAkh71yvmrfevO9Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~q8vTMWBqcmsjoI5omZe-1xPjCjoJRpPqKDgTbNSSF_JejLmqxOualyUeZilMQYuTyZoQFtEAkh71yvmrfevO9Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~q8vTMWBqcmsjoI5omZe-1xPjCjoJRpPqKDgTbNSSF_JejLmqxOualyUeZilMQYuTyZoQFtEAkh71yvmrfevO9Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qA7hv3l7ZTx0MVKD2eSQoa4zY3uG_4dseu0oA9HB0IOldMU4JRybgRJ0Vo0sVh8WjvTNujZI19SnMhEIBPMwww== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qA7hv3l7ZTx0MVKD2eSQoa4zY3uG_4dseu0oA9HB0IOldMU4JRybgRJ0Vo0sVh8WjvTNujZI19SnMhEIBPMwww== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qA7hv3l7ZTx0MVKD2eSQoa4zY3uG_4dseu0oA9HB0IOldMU4JRybgRJ0Vo0sVh8WjvTNujZI19SnMhEIBPMwww== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qEZH1v8fEFHcIl6-DTmemjlJ8O1QwAIbr0Hyco5Uaa3eB3wKO3pyL0YYUeul3U5hmChNB7EZWf9qYJbTSEp0YA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qEZH1v8fEFHcIl6-DTmemjlJ8O1QwAIbr0Hyco5Uaa3eB3wKO3pyL0YYUeul3U5hmChNB7EZWf9qYJbTSEp0YA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qEZH1v8fEFHcIl6-DTmemjlJ8O1QwAIbr0Hyco5Uaa3eB3wKO3pyL0YYUeul3U5hmChNB7EZWf9qYJbTSEp0YA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qJpdKgrfloRZpn1hPAIUSJBWVJH2Xn-rtH2j7OuCG6PK5ace7WN4PvW4MEwKpaERldnhgpep-jXzRC3GFH-_Gw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qJpdKgrfloRZpn1hPAIUSJBWVJH2Xn-rtH2j7OuCG6PK5ace7WN4PvW4MEwKpaERldnhgpep-jXzRC3GFH-_Gw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qJpdKgrfloRZpn1hPAIUSJBWVJH2Xn-rtH2j7OuCG6PK5ace7WN4PvW4MEwKpaERldnhgpep-jXzRC3GFH-_Gw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qLRw3I3is6H6OKHihdgV_jtJ-l4vF8bptViVVM-YGFJuqabLnB89R7dPgsxCJQoRuWVAN40faGaL_lxemseJVA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qLRw3I3is6H6OKHihdgV_jtJ-l4vF8bptViVVM-YGFJuqabLnB89R7dPgsxCJQoRuWVAN40faGaL_lxemseJVA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qLRw3I3is6H6OKHihdgV_jtJ-l4vF8bptViVVM-YGFJuqabLnB89R7dPgsxCJQoRuWVAN40faGaL_lxemseJVA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qMPzPeq0Jjr6UCnTeXsnXKEnVF7PQomkKU4nvTVoCFpuoYAYlh658ch5_rm4Apg9WCaSiTP3MCunWK4YCvNhCA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qMPzPeq0Jjr6UCnTeXsnXKEnVF7PQomkKU4nvTVoCFpuoYAYlh658ch5_rm4Apg9WCaSiTP3MCunWK4YCvNhCA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qMPzPeq0Jjr6UCnTeXsnXKEnVF7PQomkKU4nvTVoCFpuoYAYlh658ch5_rm4Apg9WCaSiTP3MCunWK4YCvNhCA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qNGSrMW2HE2TqGiBWEZnKaE2-K12-pDF3P0d1w27QdplYcfYsOe4V3ZMPG1Mq8rRv2qMlWNGVinvYjWRIFbVTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qNGSrMW2HE2TqGiBWEZnKaE2-K12-pDF3P0d1w27QdplYcfYsOe4V3ZMPG1Mq8rRv2qMlWNGVinvYjWRIFbVTw== new file mode 100644 index 0000000..03903e0 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qNGSrMW2HE2TqGiBWEZnKaE2-K12-pDF3P0d1w27QdplYcfYsOe4V3ZMPG1Mq8rRv2qMlWNGVinvYjWRIFbVTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qNn_P3z4kHMZX4p6VjUgJfnFLiSrcdjCpP5Aa31Rdckcc91iGlgvbScnr1DLHbFqnNiGxBzXrXqRyREIbokguw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qNn_P3z4kHMZX4p6VjUgJfnFLiSrcdjCpP5Aa31Rdckcc91iGlgvbScnr1DLHbFqnNiGxBzXrXqRyREIbokguw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qNn_P3z4kHMZX4p6VjUgJfnFLiSrcdjCpP5Aa31Rdckcc91iGlgvbScnr1DLHbFqnNiGxBzXrXqRyREIbokguw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qOJ7uFNeKn3eAzfp5uWizgUiXJHPgJ6iq83XrJiP0UPEWCwVFWoHVDXTKGJQJxhQMvoQkx0TCmZ4gJajpeqTXA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qOJ7uFNeKn3eAzfp5uWizgUiXJHPgJ6iq83XrJiP0UPEWCwVFWoHVDXTKGJQJxhQMvoQkx0TCmZ4gJajpeqTXA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qOJ7uFNeKn3eAzfp5uWizgUiXJHPgJ6iq83XrJiP0UPEWCwVFWoHVDXTKGJQJxhQMvoQkx0TCmZ4gJajpeqTXA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qRGYS-tB3BFwuoFspF772XMJvFlXB2S5bVCEnGlYnj9JxofTmTHW691-sew8mWGnReG3Ecgegfg5HX0YVpIUAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qRGYS-tB3BFwuoFspF772XMJvFlXB2S5bVCEnGlYnj9JxofTmTHW691-sew8mWGnReG3Ecgegfg5HX0YVpIUAg== new file mode 100644 index 0000000..d9a67b1 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qRGYS-tB3BFwuoFspF772XMJvFlXB2S5bVCEnGlYnj9JxofTmTHW691-sew8mWGnReG3Ecgegfg5HX0YVpIUAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qe2pfUwAnkQkHNgDMEALJpu6w_Yw0pufJvcv6IV2CWczN0lelQauSBOFD1GTti3biJl1MCROZWWEYCeuQZ0fXQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qe2pfUwAnkQkHNgDMEALJpu6w_Yw0pufJvcv6IV2CWczN0lelQauSBOFD1GTti3biJl1MCROZWWEYCeuQZ0fXQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qe2pfUwAnkQkHNgDMEALJpu6w_Yw0pufJvcv6IV2CWczN0lelQauSBOFD1GTti3biJl1MCROZWWEYCeuQZ0fXQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qf9acs_rG5OmuHXHnb9YHukgt9UVKk-iNwc0Gg13JxAa3i6Fhy1bdw2_zzL1PB3EWJC4IRR8CJGhu66MLXra6g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qf9acs_rG5OmuHXHnb9YHukgt9UVKk-iNwc0Gg13JxAa3i6Fhy1bdw2_zzL1PB3EWJC4IRR8CJGhu66MLXra6g== new file mode 100644 index 0000000..c9e25f6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qf9acs_rG5OmuHXHnb9YHukgt9UVKk-iNwc0Gg13JxAa3i6Fhy1bdw2_zzL1PB3EWJC4IRR8CJGhu66MLXra6g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qgN3eenNqKpFoksWNFCxjX6MR2Gjh8Z9Rv-4XsjV9umbEXTMbIX0MKSgtFROaeOb2NB11zG2vfzGXQ-qr1oWww== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qgN3eenNqKpFoksWNFCxjX6MR2Gjh8Z9Rv-4XsjV9umbEXTMbIX0MKSgtFROaeOb2NB11zG2vfzGXQ-qr1oWww== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qgN3eenNqKpFoksWNFCxjX6MR2Gjh8Z9Rv-4XsjV9umbEXTMbIX0MKSgtFROaeOb2NB11zG2vfzGXQ-qr1oWww== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qif01crgpy8kfuBUv5ijNNHYt-IRLJjWIMrlYLvBJH3OsYBVZFwlYl-i-yAC3HOD3i7oy0AFyKXl-VvqVqauSQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qif01crgpy8kfuBUv5ijNNHYt-IRLJjWIMrlYLvBJH3OsYBVZFwlYl-i-yAC3HOD3i7oy0AFyKXl-VvqVqauSQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qif01crgpy8kfuBUv5ijNNHYt-IRLJjWIMrlYLvBJH3OsYBVZFwlYl-i-yAC3HOD3i7oy0AFyKXl-VvqVqauSQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qifoymvSNuiQSRI-0y6yLbGQBS90cmZUsyUGhbX-OksECU431VYzOzta5sGlCQtg-r2oyrcFK0vrtU-zX8zmkQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qifoymvSNuiQSRI-0y6yLbGQBS90cmZUsyUGhbX-OksECU431VYzOzta5sGlCQtg-r2oyrcFK0vrtU-zX8zmkQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qifoymvSNuiQSRI-0y6yLbGQBS90cmZUsyUGhbX-OksECU431VYzOzta5sGlCQtg-r2oyrcFK0vrtU-zX8zmkQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qk_8IlfmeZUBsiCK0adpusjADIzZXw9seIDz6kXJsG9XBLQKcYX__tIPmBXUWEQtLEQcheolF-yVnti1nkVblw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qk_8IlfmeZUBsiCK0adpusjADIzZXw9seIDz6kXJsG9XBLQKcYX__tIPmBXUWEQtLEQcheolF-yVnti1nkVblw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qk_8IlfmeZUBsiCK0adpusjADIzZXw9seIDz6kXJsG9XBLQKcYX__tIPmBXUWEQtLEQcheolF-yVnti1nkVblw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qrETdQneq3GXjapyHISxEfwJ5BCYHafybW_nPMjSMqZ2PLmyKZG2QpZN_nZIV3MoGwYAqAZEu7E_R3lagyRhdg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qrETdQneq3GXjapyHISxEfwJ5BCYHafybW_nPMjSMqZ2PLmyKZG2QpZN_nZIV3MoGwYAqAZEu7E_R3lagyRhdg== new file mode 100644 index 0000000..2cfc7e5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~qrETdQneq3GXjapyHISxEfwJ5BCYHafybW_nPMjSMqZ2PLmyKZG2QpZN_nZIV3MoGwYAqAZEu7E_R3lagyRhdg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~r17WDxw9r0AqKNyBg29KqfCy47REGOiApR9LiITJ6PhGWSUVp45Net0juRk87jEs5dKfpmbYunc7ZRmigRV1ow== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~r17WDxw9r0AqKNyBg29KqfCy47REGOiApR9LiITJ6PhGWSUVp45Net0juRk87jEs5dKfpmbYunc7ZRmigRV1ow== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~r17WDxw9r0AqKNyBg29KqfCy47REGOiApR9LiITJ6PhGWSUVp45Net0juRk87jEs5dKfpmbYunc7ZRmigRV1ow== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~r35c-7fIRmEt_2UdO35w7u8lp8cUQH0TIhLrfCiB3G2kAlk2xMidwuxt8YE00fq9cwZYsd27sBlM9CV0SHpmHg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~r35c-7fIRmEt_2UdO35w7u8lp8cUQH0TIhLrfCiB3G2kAlk2xMidwuxt8YE00fq9cwZYsd27sBlM9CV0SHpmHg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~r35c-7fIRmEt_2UdO35w7u8lp8cUQH0TIhLrfCiB3G2kAlk2xMidwuxt8YE00fq9cwZYsd27sBlM9CV0SHpmHg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~r5GYMVQO2EeaYdfcxEUtLs2QjXiobf65qWVxasV1qIt7jDj1dhqbtyJsInRWnjI_c0sRduEQ8cqnipzMnwKIcg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~r5GYMVQO2EeaYdfcxEUtLs2QjXiobf65qWVxasV1qIt7jDj1dhqbtyJsInRWnjI_c0sRduEQ8cqnipzMnwKIcg== new file mode 100644 index 0000000..653783c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~r5GYMVQO2EeaYdfcxEUtLs2QjXiobf65qWVxasV1qIt7jDj1dhqbtyJsInRWnjI_c0sRduEQ8cqnipzMnwKIcg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~r62EEO3P_sn_FYEH9V6RSXcYb2SEzbKEOi968RrUrhRgbvYbvUAsRR8o-g06lO1a_ba5JoSDibE7ko841er9dA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~r62EEO3P_sn_FYEH9V6RSXcYb2SEzbKEOi968RrUrhRgbvYbvUAsRR8o-g06lO1a_ba5JoSDibE7ko841er9dA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~r62EEO3P_sn_FYEH9V6RSXcYb2SEzbKEOi968RrUrhRgbvYbvUAsRR8o-g06lO1a_ba5JoSDibE7ko841er9dA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rJPAkIYfozXicCv-0rzZt3R5Up8G7HZzD1USkdH6Ou2aA-Np5kI60skY8ovXU1tR4yBbJJaFiY-Ul19lvgVtBA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rJPAkIYfozXicCv-0rzZt3R5Up8G7HZzD1USkdH6Ou2aA-Np5kI60skY8ovXU1tR4yBbJJaFiY-Ul19lvgVtBA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rJPAkIYfozXicCv-0rzZt3R5Up8G7HZzD1USkdH6Ou2aA-Np5kI60skY8ovXU1tR4yBbJJaFiY-Ul19lvgVtBA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rLxzR-JbC9AmP2D98urjvuLbR47Z6AZRUMwK736rpbHicBSYyMDldZ-rzJYow7SAR_fbaYwTAw36FdquFwBOew== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rLxzR-JbC9AmP2D98urjvuLbR47Z6AZRUMwK736rpbHicBSYyMDldZ-rzJYow7SAR_fbaYwTAw36FdquFwBOew== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rLxzR-JbC9AmP2D98urjvuLbR47Z6AZRUMwK736rpbHicBSYyMDldZ-rzJYow7SAR_fbaYwTAw36FdquFwBOew== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rOfUXu3UFnqxAjfCvLRsDUXMoDlDNauEyTbEt0UoQl4u_mqebnnsUWF4F3zd6nxnmkRqL92YSstcDmSZ4eRmbQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rOfUXu3UFnqxAjfCvLRsDUXMoDlDNauEyTbEt0UoQl4u_mqebnnsUWF4F3zd6nxnmkRqL92YSstcDmSZ4eRmbQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rOfUXu3UFnqxAjfCvLRsDUXMoDlDNauEyTbEt0UoQl4u_mqebnnsUWF4F3zd6nxnmkRqL92YSstcDmSZ4eRmbQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rS6uSrirGpNoJ8pNu5TZHR5URo4p29jrVWloExZqwVogts72hIcIMYhCCeaQdG3iNW3BjqWhsR-fBdvJb5H0uw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rS6uSrirGpNoJ8pNu5TZHR5URo4p29jrVWloExZqwVogts72hIcIMYhCCeaQdG3iNW3BjqWhsR-fBdvJb5H0uw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rS6uSrirGpNoJ8pNu5TZHR5URo4p29jrVWloExZqwVogts72hIcIMYhCCeaQdG3iNW3BjqWhsR-fBdvJb5H0uw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rUCL90o69K7zPuTmZY3yWpNu62x1TwwnhzznUBDnpEXQA0H_Tl1fhvMOQ705fJCHM-t-_NaCHtEK66Pcj_Jlxw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rUCL90o69K7zPuTmZY3yWpNu62x1TwwnhzznUBDnpEXQA0H_Tl1fhvMOQ705fJCHM-t-_NaCHtEK66Pcj_Jlxw== new file mode 100644 index 0000000..6cc66fc Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rUCL90o69K7zPuTmZY3yWpNu62x1TwwnhzznUBDnpEXQA0H_Tl1fhvMOQ705fJCHM-t-_NaCHtEK66Pcj_Jlxw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~razr77ki-E0A_f6ukrdccRcDPyhft8cOFtJwVJE95LLYIWtjifUELSwSMsOn65Y3SIoH6wNQLIDO0MVFUu8-mA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~razr77ki-E0A_f6ukrdccRcDPyhft8cOFtJwVJE95LLYIWtjifUELSwSMsOn65Y3SIoH6wNQLIDO0MVFUu8-mA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~razr77ki-E0A_f6ukrdccRcDPyhft8cOFtJwVJE95LLYIWtjifUELSwSMsOn65Y3SIoH6wNQLIDO0MVFUu8-mA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rdUA6_fqlj-C6yBMjn-A2-YavzH3iI5-PST1j80lcZ9xzuD4YKkaMHqo8EPF03xRnM82Bf4mSNPgjFOByw5OEA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rdUA6_fqlj-C6yBMjn-A2-YavzH3iI5-PST1j80lcZ9xzuD4YKkaMHqo8EPF03xRnM82Bf4mSNPgjFOByw5OEA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rdUA6_fqlj-C6yBMjn-A2-YavzH3iI5-PST1j80lcZ9xzuD4YKkaMHqo8EPF03xRnM82Bf4mSNPgjFOByw5OEA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rgIsxHI6b71c2BRMHvcYjw3rDclEfFNmHPUUmGz_JA20wGfiNKNfBY1kWjXwzj0NkaL-1ety5ZUVs90clMQPTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rgIsxHI6b71c2BRMHvcYjw3rDclEfFNmHPUUmGz_JA20wGfiNKNfBY1kWjXwzj0NkaL-1ety5ZUVs90clMQPTw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rgIsxHI6b71c2BRMHvcYjw3rDclEfFNmHPUUmGz_JA20wGfiNKNfBY1kWjXwzj0NkaL-1ety5ZUVs90clMQPTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rjD-ZSFj1u2rZ_ASTr659KpqxN09eUz4NTtmoKQYPpZ-6X606NtI6Gsu6fEiG9CqMU13fkX8KZ4T0bQ_NHuA_A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rjD-ZSFj1u2rZ_ASTr659KpqxN09eUz4NTtmoKQYPpZ-6X606NtI6Gsu6fEiG9CqMU13fkX8KZ4T0bQ_NHuA_A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rjD-ZSFj1u2rZ_ASTr659KpqxN09eUz4NTtmoKQYPpZ-6X606NtI6Gsu6fEiG9CqMU13fkX8KZ4T0bQ_NHuA_A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rluRRBsJaIDQdg2PpVI-4dj0jIQAXmMk_blo8AjTrX8IIf-Rv0mR1lt3aadwIlDiK6f2MaGou9SIulsQtSg9TQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rluRRBsJaIDQdg2PpVI-4dj0jIQAXmMk_blo8AjTrX8IIf-Rv0mR1lt3aadwIlDiK6f2MaGou9SIulsQtSg9TQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~rluRRBsJaIDQdg2PpVI-4dj0jIQAXmMk_blo8AjTrX8IIf-Rv0mR1lt3aadwIlDiK6f2MaGou9SIulsQtSg9TQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~s45hfFv3KFZNvR_jj_saURwZ03WAsh3cvQi51tBICCnfbaW9rrZP7tCggtVKgd-YLSSHIe-z3QTxq0vT_qvpPg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~s45hfFv3KFZNvR_jj_saURwZ03WAsh3cvQi51tBICCnfbaW9rrZP7tCggtVKgd-YLSSHIe-z3QTxq0vT_qvpPg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~s45hfFv3KFZNvR_jj_saURwZ03WAsh3cvQi51tBICCnfbaW9rrZP7tCggtVKgd-YLSSHIe-z3QTxq0vT_qvpPg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sATNSOH9_p0OJV5TUrq6Y2sAkEkI7-XWa0gw9ZosRzt6zR9IAkLwzkp8gLXYjzALjVyolyqymHTyrjhFrdxdpg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sATNSOH9_p0OJV5TUrq6Y2sAkEkI7-XWa0gw9ZosRzt6zR9IAkLwzkp8gLXYjzALjVyolyqymHTyrjhFrdxdpg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sATNSOH9_p0OJV5TUrq6Y2sAkEkI7-XWa0gw9ZosRzt6zR9IAkLwzkp8gLXYjzALjVyolyqymHTyrjhFrdxdpg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sHJ-k3B3g63m1115HOAlpFfvk3CAdIQIAu3iN75j4orObGeI9-ikxle7HbvhD22L0Ejsxzs-9kmj5eI3iaCLkw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sHJ-k3B3g63m1115HOAlpFfvk3CAdIQIAu3iN75j4orObGeI9-ikxle7HbvhD22L0Ejsxzs-9kmj5eI3iaCLkw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sHJ-k3B3g63m1115HOAlpFfvk3CAdIQIAu3iN75j4orObGeI9-ikxle7HbvhD22L0Ejsxzs-9kmj5eI3iaCLkw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sOC9dA32cRCdw-6qQs498Ew1Ph1SUNsQNhcRNv_Jxc4RkGtYVfU7Wc55ddSqJXhkzmHXj352HzWghZQoB49IAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sOC9dA32cRCdw-6qQs498Ew1Ph1SUNsQNhcRNv_Jxc4RkGtYVfU7Wc55ddSqJXhkzmHXj352HzWghZQoB49IAg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sOC9dA32cRCdw-6qQs498Ew1Ph1SUNsQNhcRNv_Jxc4RkGtYVfU7Wc55ddSqJXhkzmHXj352HzWghZQoB49IAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sPx8AGHYAdmGN9w1KffBkYp4GY63nW3K1tVw49TI6yyI05abJwCDRXueitEQYOvkCUpA3axKd4zZg7u9g4k_mQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sPx8AGHYAdmGN9w1KffBkYp4GY63nW3K1tVw49TI6yyI05abJwCDRXueitEQYOvkCUpA3axKd4zZg7u9g4k_mQ== new file mode 100644 index 0000000..4ffa796 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sPx8AGHYAdmGN9w1KffBkYp4GY63nW3K1tVw49TI6yyI05abJwCDRXueitEQYOvkCUpA3axKd4zZg7u9g4k_mQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sQCFRna0zGx5B-I6BxKGC5yF42iqXlBgm7hERitQ3XnYsDeCdG2ahkGGc60f4TwMtud30zOR2cg2Z_7Rk7Czxg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sQCFRna0zGx5B-I6BxKGC5yF42iqXlBgm7hERitQ3XnYsDeCdG2ahkGGc60f4TwMtud30zOR2cg2Z_7Rk7Czxg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sQCFRna0zGx5B-I6BxKGC5yF42iqXlBgm7hERitQ3XnYsDeCdG2ahkGGc60f4TwMtud30zOR2cg2Z_7Rk7Czxg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sVUnNhhQtdT004paB2daxBH0UCHsUUjU9tHKLzIrSxIJxxBOHj3E-DtbKBQeCI5omoU_h7KlMBc0mQt7lAgWtA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sVUnNhhQtdT004paB2daxBH0UCHsUUjU9tHKLzIrSxIJxxBOHj3E-DtbKBQeCI5omoU_h7KlMBc0mQt7lAgWtA== new file mode 100644 index 0000000..80bab02 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sVUnNhhQtdT004paB2daxBH0UCHsUUjU9tHKLzIrSxIJxxBOHj3E-DtbKBQeCI5omoU_h7KlMBc0mQt7lAgWtA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~scJodSvDtR9LrRCXIWYcePU_LvfrhILX-kSV3SX6g23gJJcDVBbuq0nwg7Cf91rcbCfbzQy70jkGBCxTnvQrAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~scJodSvDtR9LrRCXIWYcePU_LvfrhILX-kSV3SX6g23gJJcDVBbuq0nwg7Cf91rcbCfbzQy70jkGBCxTnvQrAg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~scJodSvDtR9LrRCXIWYcePU_LvfrhILX-kSV3SX6g23gJJcDVBbuq0nwg7Cf91rcbCfbzQy70jkGBCxTnvQrAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sdv0KA83xCgD0mN3ifcQ-Uh4fVkRPFh37g4DSKDf5dLOGQwfOv8WoIMJWu_t2nfbjH7QZIYstz_-8IlU2j2zAQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sdv0KA83xCgD0mN3ifcQ-Uh4fVkRPFh37g4DSKDf5dLOGQwfOv8WoIMJWu_t2nfbjH7QZIYstz_-8IlU2j2zAQ== new file mode 100644 index 0000000..aeea298 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sdv0KA83xCgD0mN3ifcQ-Uh4fVkRPFh37g4DSKDf5dLOGQwfOv8WoIMJWu_t2nfbjH7QZIYstz_-8IlU2j2zAQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~soNmmg77ZRHua8Ft7w0dCZWE0fKvKvbMrBLWtt3GWJPXge7KLo7YNlc0hGkKu-dGtd3XzLLE7s9djGD4eZhFzA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~soNmmg77ZRHua8Ft7w0dCZWE0fKvKvbMrBLWtt3GWJPXge7KLo7YNlc0hGkKu-dGtd3XzLLE7s9djGD4eZhFzA== new file mode 100644 index 0000000..44fa127 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~soNmmg77ZRHua8Ft7w0dCZWE0fKvKvbMrBLWtt3GWJPXge7KLo7YNlc0hGkKu-dGtd3XzLLE7s9djGD4eZhFzA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sp_cfTU65_ZUpCuPDRjxiCUozanUpsNkrdple8Y0GuN62DcESjxyEFPGqJ5TuOiPdFHKXSBkerHXIBygMUxwgg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sp_cfTU65_ZUpCuPDRjxiCUozanUpsNkrdple8Y0GuN62DcESjxyEFPGqJ5TuOiPdFHKXSBkerHXIBygMUxwgg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sp_cfTU65_ZUpCuPDRjxiCUozanUpsNkrdple8Y0GuN62DcESjxyEFPGqJ5TuOiPdFHKXSBkerHXIBygMUxwgg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sxmwTU6UHn10cfNVebD-suA469rAqgELfHaZCUmR1uKmFhkYP3oO0raRPua50PIKjUMSTDDokTsckd1czJdKqw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sxmwTU6UHn10cfNVebD-suA469rAqgELfHaZCUmR1uKmFhkYP3oO0raRPua50PIKjUMSTDDokTsckd1czJdKqw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~sxmwTU6UHn10cfNVebD-suA469rAqgELfHaZCUmR1uKmFhkYP3oO0raRPua50PIKjUMSTDDokTsckd1czJdKqw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~szg-oLKvvyXBADlqEoRNnol-8-6oFWQ8Z8PWG0ybxMoH0pT8G-v5IUtBa0Jv03pqRYxRjDuIxD4FOR7p3u3JQw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~szg-oLKvvyXBADlqEoRNnol-8-6oFWQ8Z8PWG0ybxMoH0pT8G-v5IUtBa0Jv03pqRYxRjDuIxD4FOR7p3u3JQw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~szg-oLKvvyXBADlqEoRNnol-8-6oFWQ8Z8PWG0ybxMoH0pT8G-v5IUtBa0Jv03pqRYxRjDuIxD4FOR7p3u3JQw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t0EGcJH52Av5CnvOIjHEFVxxsBvs-sYbxF4899NLpaQwwAXDxc80CHI1LVgPfyxGt_4oHRaTeyvzuPZT__VTyg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t0EGcJH52Av5CnvOIjHEFVxxsBvs-sYbxF4899NLpaQwwAXDxc80CHI1LVgPfyxGt_4oHRaTeyvzuPZT__VTyg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t0EGcJH52Av5CnvOIjHEFVxxsBvs-sYbxF4899NLpaQwwAXDxc80CHI1LVgPfyxGt_4oHRaTeyvzuPZT__VTyg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t0VzpDCm94lfJv9d61FXJHFiZppq_0Pb88WyXtP0x8Mn3Rd2MIecM3Z2_8l8cQBLCNhQzAtS2wnNHYUF_Op9IQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t0VzpDCm94lfJv9d61FXJHFiZppq_0Pb88WyXtP0x8Mn3Rd2MIecM3Z2_8l8cQBLCNhQzAtS2wnNHYUF_Op9IQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t0VzpDCm94lfJv9d61FXJHFiZppq_0Pb88WyXtP0x8Mn3Rd2MIecM3Z2_8l8cQBLCNhQzAtS2wnNHYUF_Op9IQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t3fo27VGvm5zo7DoNNWKfr0WsVJ_vOrmG1MQe5ca-_QIGXLVTWwQQSA8Yhc7iZ-uUaXYxM6XVWaWGb4AEJmkRQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t3fo27VGvm5zo7DoNNWKfr0WsVJ_vOrmG1MQe5ca-_QIGXLVTWwQQSA8Yhc7iZ-uUaXYxM6XVWaWGb4AEJmkRQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t3fo27VGvm5zo7DoNNWKfr0WsVJ_vOrmG1MQe5ca-_QIGXLVTWwQQSA8Yhc7iZ-uUaXYxM6XVWaWGb4AEJmkRQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t5T-IlQlvH1RVvBK_K__PZLzGDpaMEz3BNty2Qod2JeQjD3_OzL4TbhmsJAxdIQCOi_vECPek8tNMxaCiLInKw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t5T-IlQlvH1RVvBK_K__PZLzGDpaMEz3BNty2Qod2JeQjD3_OzL4TbhmsJAxdIQCOi_vECPek8tNMxaCiLInKw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t5T-IlQlvH1RVvBK_K__PZLzGDpaMEz3BNty2Qod2JeQjD3_OzL4TbhmsJAxdIQCOi_vECPek8tNMxaCiLInKw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t8qUT_0sjDTkjT3cP219mUrRl5naUc2p87DhncUHUi4U7RmVnEghb-QBdL9pe2PhEi6lZB96LmOQRHq-edYweA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t8qUT_0sjDTkjT3cP219mUrRl5naUc2p87DhncUHUi4U7RmVnEghb-QBdL9pe2PhEi6lZB96LmOQRHq-edYweA== new file mode 100644 index 0000000..3beb1ad Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~t8qUT_0sjDTkjT3cP219mUrRl5naUc2p87DhncUHUi4U7RmVnEghb-QBdL9pe2PhEi6lZB96LmOQRHq-edYweA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tGQHQ_6-7jxuGvevU8pjSLE6gPK3pHw2hOiJpV24Gcqaif4XNQ4NoHhgfO0NpXEYIBmU44cY836MIwQvp0dkeQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tGQHQ_6-7jxuGvevU8pjSLE6gPK3pHw2hOiJpV24Gcqaif4XNQ4NoHhgfO0NpXEYIBmU44cY836MIwQvp0dkeQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tGQHQ_6-7jxuGvevU8pjSLE6gPK3pHw2hOiJpV24Gcqaif4XNQ4NoHhgfO0NpXEYIBmU44cY836MIwQvp0dkeQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tODSW4oD-gUnOooEMn_j7IHVv0fHNhjyrAMHX_37_IDlQhggAZT2FLZW5TjEzLEusAZ20XnlUobTDzbK5zxX1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tODSW4oD-gUnOooEMn_j7IHVv0fHNhjyrAMHX_37_IDlQhggAZT2FLZW5TjEzLEusAZ20XnlUobTDzbK5zxX1g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tODSW4oD-gUnOooEMn_j7IHVv0fHNhjyrAMHX_37_IDlQhggAZT2FLZW5TjEzLEusAZ20XnlUobTDzbK5zxX1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tOiSbw5FPDtfhB-gVFbkeVCiCU8ZrEY4hYPyDRyvDDtXrKb5YBzcbCPip0XSt4ixiSz1JvjHuUr-3CsCS7UKVw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tOiSbw5FPDtfhB-gVFbkeVCiCU8ZrEY4hYPyDRyvDDtXrKb5YBzcbCPip0XSt4ixiSz1JvjHuUr-3CsCS7UKVw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tOiSbw5FPDtfhB-gVFbkeVCiCU8ZrEY4hYPyDRyvDDtXrKb5YBzcbCPip0XSt4ixiSz1JvjHuUr-3CsCS7UKVw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tWSWUOZ2ZHU4nJiXQZx7LbzsYykUXrQq5naHeeJJ6HjUkRx6V5XSciIfm6p6LqME1sA5PedYFGWSvYZ2jQC78Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tWSWUOZ2ZHU4nJiXQZx7LbzsYykUXrQq5naHeeJJ6HjUkRx6V5XSciIfm6p6LqME1sA5PedYFGWSvYZ2jQC78Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tWSWUOZ2ZHU4nJiXQZx7LbzsYykUXrQq5naHeeJJ6HjUkRx6V5XSciIfm6p6LqME1sA5PedYFGWSvYZ2jQC78Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tdsfMNitVqODtfgwqF-_cONQPOwJbzuunDkQFUgxsBmMWZ4NtcURtVSrWVRdVCRz8AcEEMva2lQMldWi4Gul7g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tdsfMNitVqODtfgwqF-_cONQPOwJbzuunDkQFUgxsBmMWZ4NtcURtVSrWVRdVCRz8AcEEMva2lQMldWi4Gul7g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tdsfMNitVqODtfgwqF-_cONQPOwJbzuunDkQFUgxsBmMWZ4NtcURtVSrWVRdVCRz8AcEEMva2lQMldWi4Gul7g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tfEXSds1pAoPi0sd1jV_yHudOz6NpMCTMdOMh5uk5spxmUGrWTPPz8dXyA0NYav8xZCrPUznm6-pd-3QQMsJOw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tfEXSds1pAoPi0sd1jV_yHudOz6NpMCTMdOMh5uk5spxmUGrWTPPz8dXyA0NYav8xZCrPUznm6-pd-3QQMsJOw== new file mode 100644 index 0000000..5271037 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tfEXSds1pAoPi0sd1jV_yHudOz6NpMCTMdOMh5uk5spxmUGrWTPPz8dXyA0NYav8xZCrPUznm6-pd-3QQMsJOw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tjVrncGoq9LKv5c0k05RP64tHvH5ckc0giEUcdarbzDBoBM0Z8tVCcur1nd7c4GuNeNSisFf4zFYrt_O9tbNYw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tjVrncGoq9LKv5c0k05RP64tHvH5ckc0giEUcdarbzDBoBM0Z8tVCcur1nd7c4GuNeNSisFf4zFYrt_O9tbNYw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tjVrncGoq9LKv5c0k05RP64tHvH5ckc0giEUcdarbzDBoBM0Z8tVCcur1nd7c4GuNeNSisFf4zFYrt_O9tbNYw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tqdpuNDmMos8xkwdENMFGFcOcOZf-TmJwacxCiRqRf-1oxe4DUqEJcc_8huhnkDXdwEBMaJt9uqpm3H560zLiw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tqdpuNDmMos8xkwdENMFGFcOcOZf-TmJwacxCiRqRf-1oxe4DUqEJcc_8huhnkDXdwEBMaJt9uqpm3H560zLiw== new file mode 100644 index 0000000..d6672ac Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tqdpuNDmMos8xkwdENMFGFcOcOZf-TmJwacxCiRqRf-1oxe4DUqEJcc_8huhnkDXdwEBMaJt9uqpm3H560zLiw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tsedyFq067xFdIHYV1hgoCUxVCC__BoDWNNF7F4Q76i7F0dY-ZeQYmZzbYJ5T-vD7-DeyoiONrfYtcu0XZo9sw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tsedyFq067xFdIHYV1hgoCUxVCC__BoDWNNF7F4Q76i7F0dY-ZeQYmZzbYJ5T-vD7-DeyoiONrfYtcu0XZo9sw== new file mode 100644 index 0000000..a532fc3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tsedyFq067xFdIHYV1hgoCUxVCC__BoDWNNF7F4Q76i7F0dY-ZeQYmZzbYJ5T-vD7-DeyoiONrfYtcu0XZo9sw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tu5KvoougmSBeLCzf6M_W5Y9GYyBtqBHbGPkDCfyxqn-gJzN7k1BtWZG5xXwqyT9y8a4rOzp7HFvEgCh8OqLCw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tu5KvoougmSBeLCzf6M_W5Y9GYyBtqBHbGPkDCfyxqn-gJzN7k1BtWZG5xXwqyT9y8a4rOzp7HFvEgCh8OqLCw== new file mode 100644 index 0000000..fb9297b Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tu5KvoougmSBeLCzf6M_W5Y9GYyBtqBHbGPkDCfyxqn-gJzN7k1BtWZG5xXwqyT9y8a4rOzp7HFvEgCh8OqLCw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tuXdGEhP7clIqxWJQZh3DIMvSeNkUIjiNhqwsfWZHw3_GQPkibpqjy-cv_w2ipoAsbd14KF-NnNN9I0RQhlY9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tuXdGEhP7clIqxWJQZh3DIMvSeNkUIjiNhqwsfWZHw3_GQPkibpqjy-cv_w2ipoAsbd14KF-NnNN9I0RQhlY9A== new file mode 100644 index 0000000..fc15090 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~tuXdGEhP7clIqxWJQZh3DIMvSeNkUIjiNhqwsfWZHw3_GQPkibpqjy-cv_w2ipoAsbd14KF-NnNN9I0RQhlY9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~twdRo98-8dXCA4ereKJGck5JsKC9V3V9QRGaKdCY8eVhjO8bwP3Aas15ZxOp4p3I437aksFFC94ToBQYF_JSnQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~twdRo98-8dXCA4ereKJGck5JsKC9V3V9QRGaKdCY8eVhjO8bwP3Aas15ZxOp4p3I437aksFFC94ToBQYF_JSnQ== new file mode 100644 index 0000000..31bb41a Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~twdRo98-8dXCA4ereKJGck5JsKC9V3V9QRGaKdCY8eVhjO8bwP3Aas15ZxOp4p3I437aksFFC94ToBQYF_JSnQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~u1QShRKaeMBqRoK6rs5ffGWUhEFtShYBEHmU9JYqh9VL9_OWyPhbNLL5i3p53RN0rNd6H2zoiQsKs65wFwZV7w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~u1QShRKaeMBqRoK6rs5ffGWUhEFtShYBEHmU9JYqh9VL9_OWyPhbNLL5i3p53RN0rNd6H2zoiQsKs65wFwZV7w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~u1QShRKaeMBqRoK6rs5ffGWUhEFtShYBEHmU9JYqh9VL9_OWyPhbNLL5i3p53RN0rNd6H2zoiQsKs65wFwZV7w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~u2OkW3cxvQRncCK38Q4kFH0QHqyWZE4Qe_G8bEBB0Io04LJct-8bKuUe_JpQt_eBI5xt4VbHBO9l-g5s1lCozg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~u2OkW3cxvQRncCK38Q4kFH0QHqyWZE4Qe_G8bEBB0Io04LJct-8bKuUe_JpQt_eBI5xt4VbHBO9l-g5s1lCozg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~u2OkW3cxvQRncCK38Q4kFH0QHqyWZE4Qe_G8bEBB0Io04LJct-8bKuUe_JpQt_eBI5xt4VbHBO9l-g5s1lCozg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~u6dgdt56FZWWZOJzN3fl2-QczH9sKDJPxn0LeJE0nbBMMBJyjLafjv1GJNkLekMD-4ac_BrapjnSG8tn6WMR6A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~u6dgdt56FZWWZOJzN3fl2-QczH9sKDJPxn0LeJE0nbBMMBJyjLafjv1GJNkLekMD-4ac_BrapjnSG8tn6WMR6A== new file mode 100644 index 0000000..382d9fe Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~u6dgdt56FZWWZOJzN3fl2-QczH9sKDJPxn0LeJE0nbBMMBJyjLafjv1GJNkLekMD-4ac_BrapjnSG8tn6WMR6A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uJiS2iT-xuH6yRx8RaEekDtHU7oHLw-HOOw4tQNvQzXaqynaz1dtGOEBG5G7DStcppiu2j-HoZkbOTfCzKtPnQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uJiS2iT-xuH6yRx8RaEekDtHU7oHLw-HOOw4tQNvQzXaqynaz1dtGOEBG5G7DStcppiu2j-HoZkbOTfCzKtPnQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uJiS2iT-xuH6yRx8RaEekDtHU7oHLw-HOOw4tQNvQzXaqynaz1dtGOEBG5G7DStcppiu2j-HoZkbOTfCzKtPnQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uOlFTtdYZonT9Ti9Gs0qWVOlfgqs-FH0ysYWe45dQjvhqq4KKHhGdT4gIFrDnq6NjMN59rbmeoC_v6ODvN44wQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uOlFTtdYZonT9Ti9Gs0qWVOlfgqs-FH0ysYWe45dQjvhqq4KKHhGdT4gIFrDnq6NjMN59rbmeoC_v6ODvN44wQ== new file mode 100644 index 0000000..d474178 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uOlFTtdYZonT9Ti9Gs0qWVOlfgqs-FH0ysYWe45dQjvhqq4KKHhGdT4gIFrDnq6NjMN59rbmeoC_v6ODvN44wQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uQbgxY-i8yPgohOFuMAvmtPGl5wuFQkAP92QpE34d1AxUVFDSjBtlJL9wlw_xOWaCKtgGvwOEvhJUjA7mRghmQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uQbgxY-i8yPgohOFuMAvmtPGl5wuFQkAP92QpE34d1AxUVFDSjBtlJL9wlw_xOWaCKtgGvwOEvhJUjA7mRghmQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uQbgxY-i8yPgohOFuMAvmtPGl5wuFQkAP92QpE34d1AxUVFDSjBtlJL9wlw_xOWaCKtgGvwOEvhJUjA7mRghmQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uVtmXIwy3XGk7EzXl6eqwEYsmmwGPBqbUFd8JiDFW4wqpdi_ihRrhwd68zHZPpaQSJVvWpEUsPPyqHGCsH-vdQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uVtmXIwy3XGk7EzXl6eqwEYsmmwGPBqbUFd8JiDFW4wqpdi_ihRrhwd68zHZPpaQSJVvWpEUsPPyqHGCsH-vdQ== new file mode 100644 index 0000000..ce3133c Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uVtmXIwy3XGk7EzXl6eqwEYsmmwGPBqbUFd8JiDFW4wqpdi_ihRrhwd68zHZPpaQSJVvWpEUsPPyqHGCsH-vdQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uWX7Ysa3HkJep3G_Xb1_pT8j85XA8SERbv4b-_G8VkR-vpJPhoB-CxDUfET8mtlqydjTXkaT69h7-BKyyDQQnA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uWX7Ysa3HkJep3G_Xb1_pT8j85XA8SERbv4b-_G8VkR-vpJPhoB-CxDUfET8mtlqydjTXkaT69h7-BKyyDQQnA== new file mode 100644 index 0000000..9566be7 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uWX7Ysa3HkJep3G_Xb1_pT8j85XA8SERbv4b-_G8VkR-vpJPhoB-CxDUfET8mtlqydjTXkaT69h7-BKyyDQQnA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uZA2ROnceLuqyQwqKuXJBhQfPMWZd60R_f7ovnNnAjneW3SOkKco2CbDHgjn4keTGHMA--yUialaFoLix2Wyvg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uZA2ROnceLuqyQwqKuXJBhQfPMWZd60R_f7ovnNnAjneW3SOkKco2CbDHgjn4keTGHMA--yUialaFoLix2Wyvg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uZA2ROnceLuqyQwqKuXJBhQfPMWZd60R_f7ovnNnAjneW3SOkKco2CbDHgjn4keTGHMA--yUialaFoLix2Wyvg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uamUaYLQuNnFTIPfDpJjHBEmD2MitWOqjc2hztrVRwlUeGNet0jMbcAbx2xC0eMjCeCbcqxxJ3Bi2dmmFh9y0g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uamUaYLQuNnFTIPfDpJjHBEmD2MitWOqjc2hztrVRwlUeGNet0jMbcAbx2xC0eMjCeCbcqxxJ3Bi2dmmFh9y0g== new file mode 100644 index 0000000..8b732ad Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uamUaYLQuNnFTIPfDpJjHBEmD2MitWOqjc2hztrVRwlUeGNet0jMbcAbx2xC0eMjCeCbcqxxJ3Bi2dmmFh9y0g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ud9Fn1rphN5TBIwrCMi3uVgO288tvlYzjjNnYWlvGwzU7AI8Bz0T1TYwqFlmQ5Q12ngvOfNHPDwg9uLArV1bEA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ud9Fn1rphN5TBIwrCMi3uVgO288tvlYzjjNnYWlvGwzU7AI8Bz0T1TYwqFlmQ5Q12ngvOfNHPDwg9uLArV1bEA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ud9Fn1rphN5TBIwrCMi3uVgO288tvlYzjjNnYWlvGwzU7AI8Bz0T1TYwqFlmQ5Q12ngvOfNHPDwg9uLArV1bEA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~udBtZjgan_RYeh_bg3_PFhAGf9J43rEmIZKrphZzW2QxxsKAws6Jb1wOWncAew0M02IkYkvbv_Lj418eu0bM7g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~udBtZjgan_RYeh_bg3_PFhAGf9J43rEmIZKrphZzW2QxxsKAws6Jb1wOWncAew0M02IkYkvbv_Lj418eu0bM7g== new file mode 100644 index 0000000..052ec24 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~udBtZjgan_RYeh_bg3_PFhAGf9J43rEmIZKrphZzW2QxxsKAws6Jb1wOWncAew0M02IkYkvbv_Lj418eu0bM7g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ueKY5EM0bGnmMXdo1YO0fuPgdYzLejZShIqqjvyph3D2SkSvji8jGqY0wlpV6nKl8fB8GHbUSbj8bU1e8hi5nQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ueKY5EM0bGnmMXdo1YO0fuPgdYzLejZShIqqjvyph3D2SkSvji8jGqY0wlpV6nKl8fB8GHbUSbj8bU1e8hi5nQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ueKY5EM0bGnmMXdo1YO0fuPgdYzLejZShIqqjvyph3D2SkSvji8jGqY0wlpV6nKl8fB8GHbUSbj8bU1e8hi5nQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ujv1tn7wglG76t6yzqJogwGKG-LH_tUNeGqmMQ1I7x7v6Cd8uu0CncwcOhYUdX7EMzBxbEZRH8MvWpH43EdKQQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ujv1tn7wglG76t6yzqJogwGKG-LH_tUNeGqmMQ1I7x7v6Cd8uu0CncwcOhYUdX7EMzBxbEZRH8MvWpH43EdKQQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ujv1tn7wglG76t6yzqJogwGKG-LH_tUNeGqmMQ1I7x7v6Cd8uu0CncwcOhYUdX7EMzBxbEZRH8MvWpH43EdKQQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uosJNplaOGxcEhq55fbYfK7abrCZjDH-WWAIGqCMN4KQaKYqByw984tO8H8bJQhKM2R27boUSwKcqRr-7ArEqw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uosJNplaOGxcEhq55fbYfK7abrCZjDH-WWAIGqCMN4KQaKYqByw984tO8H8bJQhKM2R27boUSwKcqRr-7ArEqw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~uosJNplaOGxcEhq55fbYfK7abrCZjDH-WWAIGqCMN4KQaKYqByw984tO8H8bJQhKM2R27boUSwKcqRr-7ArEqw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~upzDQG53NbUVvHEGxK08i-2c7o5kj-OO8ICI5KpGBeGHhuqv2MSP4NNAb1mWMFrCEYbB83vabeTm44GeMeQyvw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~upzDQG53NbUVvHEGxK08i-2c7o5kj-OO8ICI5KpGBeGHhuqv2MSP4NNAb1mWMFrCEYbB83vabeTm44GeMeQyvw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~upzDQG53NbUVvHEGxK08i-2c7o5kj-OO8ICI5KpGBeGHhuqv2MSP4NNAb1mWMFrCEYbB83vabeTm44GeMeQyvw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~urfmM-Rsc8KQx3MNd05zrnOnmSXSsUFJ_pJ1GeUpl1uHY9WUDdpkXX5AqyQDLUd0NbwGL2NYq7W1uZ5sM7x3Tg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~urfmM-Rsc8KQx3MNd05zrnOnmSXSsUFJ_pJ1GeUpl1uHY9WUDdpkXX5AqyQDLUd0NbwGL2NYq7W1uZ5sM7x3Tg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~urfmM-Rsc8KQx3MNd05zrnOnmSXSsUFJ_pJ1GeUpl1uHY9WUDdpkXX5AqyQDLUd0NbwGL2NYq7W1uZ5sM7x3Tg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ut82Zq8iGPpJYDeKtwEbhnvmwcog1I7gZvfhSERLw6LT9ubL1oVnbDARNYPwDu8LpDKLnsIBpwB-K-zy9t0G5w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ut82Zq8iGPpJYDeKtwEbhnvmwcog1I7gZvfhSERLw6LT9ubL1oVnbDARNYPwDu8LpDKLnsIBpwB-K-zy9t0G5w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ut82Zq8iGPpJYDeKtwEbhnvmwcog1I7gZvfhSERLw6LT9ubL1oVnbDARNYPwDu8LpDKLnsIBpwB-K-zy9t0G5w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~v-CBDCzwFBEmUz5Z3mATDEo01XQP7qjv8o_yjHG-Isieda0JP33zDc51Wj0u77TRJdAweXQ8m2bNtaayDkyD2A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~v-CBDCzwFBEmUz5Z3mATDEo01XQP7qjv8o_yjHG-Isieda0JP33zDc51Wj0u77TRJdAweXQ8m2bNtaayDkyD2A== new file mode 100644 index 0000000..d296ea9 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~v-CBDCzwFBEmUz5Z3mATDEo01XQP7qjv8o_yjHG-Isieda0JP33zDc51Wj0u77TRJdAweXQ8m2bNtaayDkyD2A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~v3G33Hhfle5gwurMt2XlZvT9y64O0cvjV744yHdeaKLaQBQ9AQod90aWSWZFXWM4DiGfMFbkE11JdkgxHE4-vQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~v3G33Hhfle5gwurMt2XlZvT9y64O0cvjV744yHdeaKLaQBQ9AQod90aWSWZFXWM4DiGfMFbkE11JdkgxHE4-vQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~v3G33Hhfle5gwurMt2XlZvT9y64O0cvjV744yHdeaKLaQBQ9AQod90aWSWZFXWM4DiGfMFbkE11JdkgxHE4-vQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~v5dej7jVyRbWAi_n7Kym98RPsyRfawk0X-s1Zr4ntmBkHXdWkdCzat06V0hqigPDm8pZq1GkSWEBi0j8MJoIaA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~v5dej7jVyRbWAi_n7Kym98RPsyRfawk0X-s1Zr4ntmBkHXdWkdCzat06V0hqigPDm8pZq1GkSWEBi0j8MJoIaA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~v5dej7jVyRbWAi_n7Kym98RPsyRfawk0X-s1Zr4ntmBkHXdWkdCzat06V0hqigPDm8pZq1GkSWEBi0j8MJoIaA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vB-IdxEwsZtVf5qDn_bbttppfncYkC93eZ356Ow9Zc_fgJw94msGPWgtY2e37bi2Bvbz8IyzWALAzYl8DkBiTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vB-IdxEwsZtVf5qDn_bbttppfncYkC93eZ356Ow9Zc_fgJw94msGPWgtY2e37bi2Bvbz8IyzWALAzYl8DkBiTw== new file mode 100644 index 0000000..ae61c14 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vB-IdxEwsZtVf5qDn_bbttppfncYkC93eZ356Ow9Zc_fgJw94msGPWgtY2e37bi2Bvbz8IyzWALAzYl8DkBiTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vCOYWEYDAafBXw2ys_WMqJWw-Ec43aYv5ndEu6WqeCNRBc18sSr-1H8IiyPD92OlpgWM3Lgfkb3E_9OGUbf6gA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vCOYWEYDAafBXw2ys_WMqJWw-Ec43aYv5ndEu6WqeCNRBc18sSr-1H8IiyPD92OlpgWM3Lgfkb3E_9OGUbf6gA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vCOYWEYDAafBXw2ys_WMqJWw-Ec43aYv5ndEu6WqeCNRBc18sSr-1H8IiyPD92OlpgWM3Lgfkb3E_9OGUbf6gA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vHitvGHg0O1OrQUWWE2UVXPrO6UelUKLObARUyT4JzHuvv6j8pqnMDBd0ObiYFA_SoP39ychS170buApBNjHuA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vHitvGHg0O1OrQUWWE2UVXPrO6UelUKLObARUyT4JzHuvv6j8pqnMDBd0ObiYFA_SoP39ychS170buApBNjHuA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vHitvGHg0O1OrQUWWE2UVXPrO6UelUKLObARUyT4JzHuvv6j8pqnMDBd0ObiYFA_SoP39ychS170buApBNjHuA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vIlNs5NobBgaLp1ez2QPyAYLtVV5P16Qh7HxksZOlsSGf-ARjQuUCarDrdwIelgY760Vt3km7qFhZb7fYhIWdg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vIlNs5NobBgaLp1ez2QPyAYLtVV5P16Qh7HxksZOlsSGf-ARjQuUCarDrdwIelgY760Vt3km7qFhZb7fYhIWdg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vIlNs5NobBgaLp1ez2QPyAYLtVV5P16Qh7HxksZOlsSGf-ARjQuUCarDrdwIelgY760Vt3km7qFhZb7fYhIWdg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vZxSlu2k-3B0ODEhxuLUhojEyCmF8I1g8RE8J6BDN4_1VF3qvwIiQvDxEUnusuC3tWctjpYr_j_EluBcB0KKPg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vZxSlu2k-3B0ODEhxuLUhojEyCmF8I1g8RE8J6BDN4_1VF3qvwIiQvDxEUnusuC3tWctjpYr_j_EluBcB0KKPg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vZxSlu2k-3B0ODEhxuLUhojEyCmF8I1g8RE8J6BDN4_1VF3qvwIiQvDxEUnusuC3tWctjpYr_j_EluBcB0KKPg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vb3reMoxPZQt7xQ82xuN05yohRdBgeMHyPEHm4zA6uxY2EvxGc6bW6MR6EkRsRtrfIAOidL1UTPRl0tVZC3k9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vb3reMoxPZQt7xQ82xuN05yohRdBgeMHyPEHm4zA6uxY2EvxGc6bW6MR6EkRsRtrfIAOidL1UTPRl0tVZC3k9A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vb3reMoxPZQt7xQ82xuN05yohRdBgeMHyPEHm4zA6uxY2EvxGc6bW6MR6EkRsRtrfIAOidL1UTPRl0tVZC3k9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vb9jOHr-4hAwpyVRvbHs28U9vzdL2-UCVML53bCckYR4iJUyEOrmAFZO4XDuw5G3BJ6fxto-iX9VxJvLfGtp-w== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vb9jOHr-4hAwpyVRvbHs28U9vzdL2-UCVML53bCckYR4iJUyEOrmAFZO4XDuw5G3BJ6fxto-iX9VxJvLfGtp-w== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vb9jOHr-4hAwpyVRvbHs28U9vzdL2-UCVML53bCckYR4iJUyEOrmAFZO4XDuw5G3BJ6fxto-iX9VxJvLfGtp-w== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vh4JBLIkvW-CzL2idnF_UQHJ-vkkzQfgC5NAmJn8ymHqhWcHXaR9u9WDiOzEBu6mvAOdcF-e6HrN7NjduNdjxw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vh4JBLIkvW-CzL2idnF_UQHJ-vkkzQfgC5NAmJn8ymHqhWcHXaR9u9WDiOzEBu6mvAOdcF-e6HrN7NjduNdjxw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vh4JBLIkvW-CzL2idnF_UQHJ-vkkzQfgC5NAmJn8ymHqhWcHXaR9u9WDiOzEBu6mvAOdcF-e6HrN7NjduNdjxw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vjSNo44CIBTz9cDC3hF_r71z_aMZCXZZSIcIDkudRUnLAolT7LTocXTMwpvHCrYIdKE-52Tc7QLGvBTRlLBYbQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vjSNo44CIBTz9cDC3hF_r71z_aMZCXZZSIcIDkudRUnLAolT7LTocXTMwpvHCrYIdKE-52Tc7QLGvBTRlLBYbQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vjSNo44CIBTz9cDC3hF_r71z_aMZCXZZSIcIDkudRUnLAolT7LTocXTMwpvHCrYIdKE-52Tc7QLGvBTRlLBYbQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vnWgGy0grprOFYiiAcImGwuD9LvnR4S7a0RtJbiUkKkxgAZmXwVkpJPOe7o-XimLH3mi7068PNH4hHJ_tUb0dQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vnWgGy0grprOFYiiAcImGwuD9LvnR4S7a0RtJbiUkKkxgAZmXwVkpJPOe7o-XimLH3mi7068PNH4hHJ_tUb0dQ== new file mode 100644 index 0000000..41f4587 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vnWgGy0grprOFYiiAcImGwuD9LvnR4S7a0RtJbiUkKkxgAZmXwVkpJPOe7o-XimLH3mi7068PNH4hHJ_tUb0dQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vomMb6e4bvPtiIN1Kf6Ew_WXxbmZtPy3N2CTB_7lO1Z3xILc3HpnKY8OelAY1WGYqJDfUDgJ1_wIaSDTW2-eEA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vomMb6e4bvPtiIN1Kf6Ew_WXxbmZtPy3N2CTB_7lO1Z3xILc3HpnKY8OelAY1WGYqJDfUDgJ1_wIaSDTW2-eEA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vomMb6e4bvPtiIN1Kf6Ew_WXxbmZtPy3N2CTB_7lO1Z3xILc3HpnKY8OelAY1WGYqJDfUDgJ1_wIaSDTW2-eEA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vqJTkIVpKoRg38sijVf0e03egKtrK_rSbGLYlG6TrYWxsWQB3U379W9wfSusJtatJIWhTyXxC2-E6TcYTgHlbg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vqJTkIVpKoRg38sijVf0e03egKtrK_rSbGLYlG6TrYWxsWQB3U379W9wfSusJtatJIWhTyXxC2-E6TcYTgHlbg== new file mode 100644 index 0000000..dc4e671 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vqJTkIVpKoRg38sijVf0e03egKtrK_rSbGLYlG6TrYWxsWQB3U379W9wfSusJtatJIWhTyXxC2-E6TcYTgHlbg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vqeoYSvpFWXEzWJWTXZnzjR3x1tbSxnnMutdxzRVJGQxbqeZtPOpxJwrHMLuMX8ahB9gDyItUXJ0L33ZMAQ-Sw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vqeoYSvpFWXEzWJWTXZnzjR3x1tbSxnnMutdxzRVJGQxbqeZtPOpxJwrHMLuMX8ahB9gDyItUXJ0L33ZMAQ-Sw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vqeoYSvpFWXEzWJWTXZnzjR3x1tbSxnnMutdxzRVJGQxbqeZtPOpxJwrHMLuMX8ahB9gDyItUXJ0L33ZMAQ-Sw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vvk2LYtEkD31Cv5Zum1Vl9UtjJHI_8Q7rUuo_cjnvc2m5VYYY9Hx4Qzf-x6VXQZHUd0uMo17m_R6ABfYAcwwoA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vvk2LYtEkD31Cv5Zum1Vl9UtjJHI_8Q7rUuo_cjnvc2m5VYYY9Hx4Qzf-x6VXQZHUd0uMo17m_R6ABfYAcwwoA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vvk2LYtEkD31Cv5Zum1Vl9UtjJHI_8Q7rUuo_cjnvc2m5VYYY9Hx4Qzf-x6VXQZHUd0uMo17m_R6ABfYAcwwoA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vxw7-VQwZ8VOSDUzEKYnYweYcuEgX3pXINYStD3-h3IPQ4r39q4ReK4MSdpIZojeRsv20AYQnM8Zvf15KmgwnQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vxw7-VQwZ8VOSDUzEKYnYweYcuEgX3pXINYStD3-h3IPQ4r39q4ReK4MSdpIZojeRsv20AYQnM8Zvf15KmgwnQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~vxw7-VQwZ8VOSDUzEKYnYweYcuEgX3pXINYStD3-h3IPQ4r39q4ReK4MSdpIZojeRsv20AYQnM8Zvf15KmgwnQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~w2qpuonY8-PgD5H8eFDNJc6AZULQ_R2tYssS72PIavzQGL6pf0HUPG_MFHPLPgExElgJXSbRjxeCKI9vz167wQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~w2qpuonY8-PgD5H8eFDNJc6AZULQ_R2tYssS72PIavzQGL6pf0HUPG_MFHPLPgExElgJXSbRjxeCKI9vz167wQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~w2qpuonY8-PgD5H8eFDNJc6AZULQ_R2tYssS72PIavzQGL6pf0HUPG_MFHPLPgExElgJXSbRjxeCKI9vz167wQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wH0JeF2vvgk02I6-8n9mv7-VxDg0nqv8mG8ZA6uWaIpG1W6K9oPpGLNplRLgn63_F5lqf__rbqcH5XXe6_g-fw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wH0JeF2vvgk02I6-8n9mv7-VxDg0nqv8mG8ZA6uWaIpG1W6K9oPpGLNplRLgn63_F5lqf__rbqcH5XXe6_g-fw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wH0JeF2vvgk02I6-8n9mv7-VxDg0nqv8mG8ZA6uWaIpG1W6K9oPpGLNplRLgn63_F5lqf__rbqcH5XXe6_g-fw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wHQEWcDnCbFAoB5eJlOBwTa3yad4NncNFnrIEh_zvTzAPDk_WVY2zD8zOY2OUBJIqancJy7MGqgvrs3ZEFPifg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wHQEWcDnCbFAoB5eJlOBwTa3yad4NncNFnrIEh_zvTzAPDk_WVY2zD8zOY2OUBJIqancJy7MGqgvrs3ZEFPifg== new file mode 100644 index 0000000..a6d5276 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wHQEWcDnCbFAoB5eJlOBwTa3yad4NncNFnrIEh_zvTzAPDk_WVY2zD8zOY2OUBJIqancJy7MGqgvrs3ZEFPifg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wNi2SHK3NfdqbbAgxTrnp_hf6Xok0mLlia8IPb0x0owSftN294RS0QQInAv4Mc5hFpfa1mu2owd_SxCiKVXMaA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wNi2SHK3NfdqbbAgxTrnp_hf6Xok0mLlia8IPb0x0owSftN294RS0QQInAv4Mc5hFpfa1mu2owd_SxCiKVXMaA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wNi2SHK3NfdqbbAgxTrnp_hf6Xok0mLlia8IPb0x0owSftN294RS0QQInAv4Mc5hFpfa1mu2owd_SxCiKVXMaA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wOwaKiixu0cc3nCg_qnq3E94Rq25ayDxvPwgZUW9noandpTFa_NHBv9ijy8dr9BS9iSna9_OTJzY-c2CmPk86g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wOwaKiixu0cc3nCg_qnq3E94Rq25ayDxvPwgZUW9noandpTFa_NHBv9ijy8dr9BS9iSna9_OTJzY-c2CmPk86g== new file mode 100644 index 0000000..3b8a9b4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wOwaKiixu0cc3nCg_qnq3E94Rq25ayDxvPwgZUW9noandpTFa_NHBv9ijy8dr9BS9iSna9_OTJzY-c2CmPk86g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wR5jaNs55H2BeYDr6RzDohTppcTKUrfmif_9aHN3gnx_Vf5qkpoQaQIRfUv6G3bBxb_UUG6Si_ln4hT87OHkZg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wR5jaNs55H2BeYDr6RzDohTppcTKUrfmif_9aHN3gnx_Vf5qkpoQaQIRfUv6G3bBxb_UUG6Si_ln4hT87OHkZg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wR5jaNs55H2BeYDr6RzDohTppcTKUrfmif_9aHN3gnx_Vf5qkpoQaQIRfUv6G3bBxb_UUG6Si_ln4hT87OHkZg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wXBPhGHDfr0sibrTIs83yaC97X7qGur1PSE8nHFzlEaDPRWV5UCip2YEsvuy0Qd5fArkCiZ_pMjtv3OhGQmUsw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wXBPhGHDfr0sibrTIs83yaC97X7qGur1PSE8nHFzlEaDPRWV5UCip2YEsvuy0Qd5fArkCiZ_pMjtv3OhGQmUsw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wXBPhGHDfr0sibrTIs83yaC97X7qGur1PSE8nHFzlEaDPRWV5UCip2YEsvuy0Qd5fArkCiZ_pMjtv3OhGQmUsw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wYHWUU6O08qu51pcL3YI14RrMPmFkrPhyavaq1MJDzRC0A_8jEpR2v7UYM_zbHvkx-ILEvIWp_dVfAW9e-EtYA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wYHWUU6O08qu51pcL3YI14RrMPmFkrPhyavaq1MJDzRC0A_8jEpR2v7UYM_zbHvkx-ILEvIWp_dVfAW9e-EtYA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wYHWUU6O08qu51pcL3YI14RrMPmFkrPhyavaq1MJDzRC0A_8jEpR2v7UYM_zbHvkx-ILEvIWp_dVfAW9e-EtYA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wa33e2JbIJdujKec4HsZZEBGFYpEUEzn6nqrxmrvLqDHL2d9jK6VJO6FmLz9snlqLh7xxb33G3A1LejXwjlc9A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wa33e2JbIJdujKec4HsZZEBGFYpEUEzn6nqrxmrvLqDHL2d9jK6VJO6FmLz9snlqLh7xxb33G3A1LejXwjlc9A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wa33e2JbIJdujKec4HsZZEBGFYpEUEzn6nqrxmrvLqDHL2d9jK6VJO6FmLz9snlqLh7xxb33G3A1LejXwjlc9A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~weeVAgr8uqJwkNobn0vj7oMLbyO-zRza2FOder6rQ_YoVMWiKgeYt4yW2BEYpamrrkIQnt8wUoOR-BLQcDSKGA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~weeVAgr8uqJwkNobn0vj7oMLbyO-zRza2FOder6rQ_YoVMWiKgeYt4yW2BEYpamrrkIQnt8wUoOR-BLQcDSKGA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~weeVAgr8uqJwkNobn0vj7oMLbyO-zRza2FOder6rQ_YoVMWiKgeYt4yW2BEYpamrrkIQnt8wUoOR-BLQcDSKGA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wfLOsF0Wqoqjo6Ep7HoWAiMpD5gZgY3MqY_9TCKrLnnInPJ9NVC9fBsSjoU-BLmYgtUIdc42Bjkmk6CLeCDLMQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wfLOsF0Wqoqjo6Ep7HoWAiMpD5gZgY3MqY_9TCKrLnnInPJ9NVC9fBsSjoU-BLmYgtUIdc42Bjkmk6CLeCDLMQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wfLOsF0Wqoqjo6Ep7HoWAiMpD5gZgY3MqY_9TCKrLnnInPJ9NVC9fBsSjoU-BLmYgtUIdc42Bjkmk6CLeCDLMQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wkWpUxrLk_bWCaJWCrqm2D5Co3bd3oumXdTTHa3qmbbE9k6Cf8rlhGba-LzJS5N6MIV6RZWWTmYZ-IOkaScbDQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wkWpUxrLk_bWCaJWCrqm2D5Co3bd3oumXdTTHa3qmbbE9k6Cf8rlhGba-LzJS5N6MIV6RZWWTmYZ-IOkaScbDQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wkWpUxrLk_bWCaJWCrqm2D5Co3bd3oumXdTTHa3qmbbE9k6Cf8rlhGba-LzJS5N6MIV6RZWWTmYZ-IOkaScbDQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wkrSTxa9ijadTgzEQGOAmjN6R17sbrO8Y0UYQDW3wD6IP4xowoUYwIEiUJkWW3ZihsxnpYln50XKjBgFItZEBQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wkrSTxa9ijadTgzEQGOAmjN6R17sbrO8Y0UYQDW3wD6IP4xowoUYwIEiUJkWW3ZihsxnpYln50XKjBgFItZEBQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wkrSTxa9ijadTgzEQGOAmjN6R17sbrO8Y0UYQDW3wD6IP4xowoUYwIEiUJkWW3ZihsxnpYln50XKjBgFItZEBQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wriKlwm5iRXj7YB3TZo9Ov7DORPAD7jp6iYOFfqfUMYfnF7rPlcmKYvdaw2F1xML-fE3nADEOW1wtGz0NMReXA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wriKlwm5iRXj7YB3TZo9Ov7DORPAD7jp6iYOFfqfUMYfnF7rPlcmKYvdaw2F1xML-fE3nADEOW1wtGz0NMReXA== new file mode 100644 index 0000000..99dbbb4 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wriKlwm5iRXj7YB3TZo9Ov7DORPAD7jp6iYOFfqfUMYfnF7rPlcmKYvdaw2F1xML-fE3nADEOW1wtGz0NMReXA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wtlwRiXgjLS9oSKt40vGTKB7qaXXScVmQGX3pQhMU4HOd_8FC0dozWS1akavGweiXbOLlKESSEDrR4RepzT9Qg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wtlwRiXgjLS9oSKt40vGTKB7qaXXScVmQGX3pQhMU4HOd_8FC0dozWS1akavGweiXbOLlKESSEDrR4RepzT9Qg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~wtlwRiXgjLS9oSKt40vGTKB7qaXXScVmQGX3pQhMU4HOd_8FC0dozWS1akavGweiXbOLlKESSEDrR4RepzT9Qg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~x-ZWXZMUioOjwFG1ZW1TmU-kesXW-b4jnXLy67ZOKF0icbWNElTMP-HVCEOWaISAJXoKWkESIA3tl0LlTPmwbA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~x-ZWXZMUioOjwFG1ZW1TmU-kesXW-b4jnXLy67ZOKF0icbWNElTMP-HVCEOWaISAJXoKWkESIA3tl0LlTPmwbA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~x-ZWXZMUioOjwFG1ZW1TmU-kesXW-b4jnXLy67ZOKF0icbWNElTMP-HVCEOWaISAJXoKWkESIA3tl0LlTPmwbA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~x3pG2wx4EZL4uaRi39hmYO2yGw82yHh8Z869Ywqyw6PC6sChhA_CYYdnkjmsiAZtT_gf4k8_1TChIc7bPXi-kQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~x3pG2wx4EZL4uaRi39hmYO2yGw82yHh8Z869Ywqyw6PC6sChhA_CYYdnkjmsiAZtT_gf4k8_1TChIc7bPXi-kQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~x3pG2wx4EZL4uaRi39hmYO2yGw82yHh8Z869Ywqyw6PC6sChhA_CYYdnkjmsiAZtT_gf4k8_1TChIc7bPXi-kQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xDqnX_GQyEYIbw_W_AzpBOwKyoRK_6Dqp__kTi8gxB1jKKFSgIxeVKW4yZ7e4halL8VYClEhfEu1heTU4xoZ1A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xDqnX_GQyEYIbw_W_AzpBOwKyoRK_6Dqp__kTi8gxB1jKKFSgIxeVKW4yZ7e4halL8VYClEhfEu1heTU4xoZ1A== new file mode 100644 index 0000000..bf073b5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xDqnX_GQyEYIbw_W_AzpBOwKyoRK_6Dqp__kTi8gxB1jKKFSgIxeVKW4yZ7e4halL8VYClEhfEu1heTU4xoZ1A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xEPbVKJgI18BLAxh_LjkamCp13Z7M-IPmRwvgmGt4UG00OoPm1IxnzW51q1GFfS-s7PbV-8lNhnPOiT7vP7IFQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xEPbVKJgI18BLAxh_LjkamCp13Z7M-IPmRwvgmGt4UG00OoPm1IxnzW51q1GFfS-s7PbV-8lNhnPOiT7vP7IFQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xEPbVKJgI18BLAxh_LjkamCp13Z7M-IPmRwvgmGt4UG00OoPm1IxnzW51q1GFfS-s7PbV-8lNhnPOiT7vP7IFQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xLhYOVOaFBb0DYLHGiEIVp8myPh9_pfLltp5wMQAryDa3DWrcFsNqxxIiEbCwt4AWpdYYmJnjdoJkQJ3X6qFvg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xLhYOVOaFBb0DYLHGiEIVp8myPh9_pfLltp5wMQAryDa3DWrcFsNqxxIiEbCwt4AWpdYYmJnjdoJkQJ3X6qFvg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xLhYOVOaFBb0DYLHGiEIVp8myPh9_pfLltp5wMQAryDa3DWrcFsNqxxIiEbCwt4AWpdYYmJnjdoJkQJ3X6qFvg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xQQtmslhu8pBWCiHCpePJcV2InDyyQwVg-5fDC0dlg_V7efiUntpB_yoMNLqyHt-5qcoL6gigF4JX8zr1zVxrw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xQQtmslhu8pBWCiHCpePJcV2InDyyQwVg-5fDC0dlg_V7efiUntpB_yoMNLqyHt-5qcoL6gigF4JX8zr1zVxrw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xQQtmslhu8pBWCiHCpePJcV2InDyyQwVg-5fDC0dlg_V7efiUntpB_yoMNLqyHt-5qcoL6gigF4JX8zr1zVxrw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xSqPIrEv5cVLWmEWtem0u9YM643qLQQQLZfFILQlH3XDUpN3QRN7fOKR2Nddo7xI8f7hcv7PIAXQRzkao5UsLA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xSqPIrEv5cVLWmEWtem0u9YM643qLQQQLZfFILQlH3XDUpN3QRN7fOKR2Nddo7xI8f7hcv7PIAXQRzkao5UsLA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xSqPIrEv5cVLWmEWtem0u9YM643qLQQQLZfFILQlH3XDUpN3QRN7fOKR2Nddo7xI8f7hcv7PIAXQRzkao5UsLA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xVCfOPVlxSijbj59md8qB4nO-JphdDZuRLKliwZ11Lxm-zuiZqNlKle4Rfx4NQJ_ktRgPohkiOZPhq_xHFn-yQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xVCfOPVlxSijbj59md8qB4nO-JphdDZuRLKliwZ11Lxm-zuiZqNlKle4Rfx4NQJ_ktRgPohkiOZPhq_xHFn-yQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xVCfOPVlxSijbj59md8qB4nO-JphdDZuRLKliwZ11Lxm-zuiZqNlKle4Rfx4NQJ_ktRgPohkiOZPhq_xHFn-yQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xVI3-ue9L1131Uq8Kco5wZk51hmFT4LmHTm7msvMjkkN_8qKoWF_NGS6-praa6CXj4aYaZvMprf6NCOYwdXaWw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xVI3-ue9L1131Uq8Kco5wZk51hmFT4LmHTm7msvMjkkN_8qKoWF_NGS6-praa6CXj4aYaZvMprf6NCOYwdXaWw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xVI3-ue9L1131Uq8Kco5wZk51hmFT4LmHTm7msvMjkkN_8qKoWF_NGS6-praa6CXj4aYaZvMprf6NCOYwdXaWw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xbN9BYMDyB7554_-k2EjgYRLsijf4vA-jFJqiGGcW9zMf4FzOuZoEmcmJrnOlc-PS1vV61w5MgxQqmdDTn2d8g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xbN9BYMDyB7554_-k2EjgYRLsijf4vA-jFJqiGGcW9zMf4FzOuZoEmcmJrnOlc-PS1vV61w5MgxQqmdDTn2d8g== new file mode 100644 index 0000000..79a33a3 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xbN9BYMDyB7554_-k2EjgYRLsijf4vA-jFJqiGGcW9zMf4FzOuZoEmcmJrnOlc-PS1vV61w5MgxQqmdDTn2d8g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xceLUs3FYvEDTV_j873mQGU2LGq8JXW0e7WPMPUm7wKo31Edr43z_KftrVwYM17iZP9-xHiMub_S3X06jSFROQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xceLUs3FYvEDTV_j873mQGU2LGq8JXW0e7WPMPUm7wKo31Edr43z_KftrVwYM17iZP9-xHiMub_S3X06jSFROQ== new file mode 100644 index 0000000..1526d89 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xceLUs3FYvEDTV_j873mQGU2LGq8JXW0e7WPMPUm7wKo31Edr43z_KftrVwYM17iZP9-xHiMub_S3X06jSFROQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xg-7ZzrCeEpw1FAJ0OIkiYzgYIwK0n-Hgwt7XeaL6L7FL9-4inh48jVMlOLUfaqFRJHvePl8AuBy77cnfV4csQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xg-7ZzrCeEpw1FAJ0OIkiYzgYIwK0n-Hgwt7XeaL6L7FL9-4inh48jVMlOLUfaqFRJHvePl8AuBy77cnfV4csQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xg-7ZzrCeEpw1FAJ0OIkiYzgYIwK0n-Hgwt7XeaL6L7FL9-4inh48jVMlOLUfaqFRJHvePl8AuBy77cnfV4csQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xh81QqPKJoKvab5YVfR3KI7EXTbdrJPngg5yBitGl-eQwLpHmWE2GW796q3Y1pia-Ze3EigLbMREGh2G-R5xYw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xh81QqPKJoKvab5YVfR3KI7EXTbdrJPngg5yBitGl-eQwLpHmWE2GW796q3Y1pia-Ze3EigLbMREGh2G-R5xYw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xh81QqPKJoKvab5YVfR3KI7EXTbdrJPngg5yBitGl-eQwLpHmWE2GW796q3Y1pia-Ze3EigLbMREGh2G-R5xYw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xp119iJSQCqNFue3lj4LVjuGPsOpJw8FGp5ngRrLfVbtFfBBy-J6h5wQmGbJMVGRJDeDCMxsQFystgUlNb19Mg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xp119iJSQCqNFue3lj4LVjuGPsOpJw8FGp5ngRrLfVbtFfBBy-J6h5wQmGbJMVGRJDeDCMxsQFystgUlNb19Mg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xp119iJSQCqNFue3lj4LVjuGPsOpJw8FGp5ngRrLfVbtFfBBy-J6h5wQmGbJMVGRJDeDCMxsQFystgUlNb19Mg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xpEBsrCjRGJs3vkkPvSPdcZk5wwbRiusFtl5W0vkQRQsvgU7g4IYEWwU5Xhx2iZK1BqK0rum-gYdPkKuXF0DTw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xpEBsrCjRGJs3vkkPvSPdcZk5wwbRiusFtl5W0vkQRQsvgU7g4IYEWwU5Xhx2iZK1BqK0rum-gYdPkKuXF0DTw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xpEBsrCjRGJs3vkkPvSPdcZk5wwbRiusFtl5W0vkQRQsvgU7g4IYEWwU5Xhx2iZK1BqK0rum-gYdPkKuXF0DTw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xxk_9ZrIaVN_kYp6aK-6QFyeA_5DSFIVNyCkBLS4WUV0h5P_0BUX1FdsjfYPV3YwsdhKhOOclfADuu3XOZjK8g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xxk_9ZrIaVN_kYp6aK-6QFyeA_5DSFIVNyCkBLS4WUV0h5P_0BUX1FdsjfYPV3YwsdhKhOOclfADuu3XOZjK8g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~xxk_9ZrIaVN_kYp6aK-6QFyeA_5DSFIVNyCkBLS4WUV0h5P_0BUX1FdsjfYPV3YwsdhKhOOclfADuu3XOZjK8g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~y2WNPH_CHlsY_jVaJT1ohvEfizyycyjcS2bcAvRwl-y-3Vd2HboOONdc_UD9sEGm96ntBI38eYESlybbjLfYSQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~y2WNPH_CHlsY_jVaJT1ohvEfizyycyjcS2bcAvRwl-y-3Vd2HboOONdc_UD9sEGm96ntBI38eYESlybbjLfYSQ== new file mode 100644 index 0000000..ec155b5 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~y2WNPH_CHlsY_jVaJT1ohvEfizyycyjcS2bcAvRwl-y-3Vd2HboOONdc_UD9sEGm96ntBI38eYESlybbjLfYSQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~y8uR9aO8K2dBLwiz7v0CRL9vBYQQ9BQOZ0eBISgsYnT3rpmCLaXGZ8kxB9GToj0GMo0NHM0n4IfMS-Hf6I7Jgg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~y8uR9aO8K2dBLwiz7v0CRL9vBYQQ9BQOZ0eBISgsYnT3rpmCLaXGZ8kxB9GToj0GMo0NHM0n4IfMS-Hf6I7Jgg== new file mode 100644 index 0000000..5a982c6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~y8uR9aO8K2dBLwiz7v0CRL9vBYQQ9BQOZ0eBISgsYnT3rpmCLaXGZ8kxB9GToj0GMo0NHM0n4IfMS-Hf6I7Jgg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yAaiUN0WmUupKZdk1eQM1LCT6nYY1vwndL2TmhyTkwDGsYHWjPhooXTIQIgtYsnRBHhJWSqr9Tcz9rK-nWPU1g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yAaiUN0WmUupKZdk1eQM1LCT6nYY1vwndL2TmhyTkwDGsYHWjPhooXTIQIgtYsnRBHhJWSqr9Tcz9rK-nWPU1g== new file mode 100644 index 0000000..adc5b68 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yAaiUN0WmUupKZdk1eQM1LCT6nYY1vwndL2TmhyTkwDGsYHWjPhooXTIQIgtYsnRBHhJWSqr9Tcz9rK-nWPU1g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yC02gFRWUNlVr6hsZyoE39h8KsJOxlrRx4zLHML4XRsH4XTgwpYOSTG6s884LzmNeLIvWZauRCLSChGDlNE-xA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yC02gFRWUNlVr6hsZyoE39h8KsJOxlrRx4zLHML4XRsH4XTgwpYOSTG6s884LzmNeLIvWZauRCLSChGDlNE-xA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yC02gFRWUNlVr6hsZyoE39h8KsJOxlrRx4zLHML4XRsH4XTgwpYOSTG6s884LzmNeLIvWZauRCLSChGDlNE-xA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yETPYdzMv86nwK01Lonj7-Rdl34aPUOzDZpHMWaxQh1mkYzAYGMf5NTpIUwzGL5_pIAT3GwAGwhiqktM_oSxmA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yETPYdzMv86nwK01Lonj7-Rdl34aPUOzDZpHMWaxQh1mkYzAYGMf5NTpIUwzGL5_pIAT3GwAGwhiqktM_oSxmA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yETPYdzMv86nwK01Lonj7-Rdl34aPUOzDZpHMWaxQh1mkYzAYGMf5NTpIUwzGL5_pIAT3GwAGwhiqktM_oSxmA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yEgwPsIzSVxeU-4GqpxzXzt7YHIun8QnF1ogMfkZ-Eu_MaoFancLXe--pL6t92jNDGqhPBbanB7XxfQuPfnf-Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yEgwPsIzSVxeU-4GqpxzXzt7YHIun8QnF1ogMfkZ-Eu_MaoFancLXe--pL6t92jNDGqhPBbanB7XxfQuPfnf-Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yEgwPsIzSVxeU-4GqpxzXzt7YHIun8QnF1ogMfkZ-Eu_MaoFancLXe--pL6t92jNDGqhPBbanB7XxfQuPfnf-Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yJD8CkxUI_1SsILIp1z-MDksVDE-5WHUD1zkddiinMa3dYExnW6d7zDvcahbxCjOdOUUvhm0b8TVTIo9PAqvLA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yJD8CkxUI_1SsILIp1z-MDksVDE-5WHUD1zkddiinMa3dYExnW6d7zDvcahbxCjOdOUUvhm0b8TVTIo9PAqvLA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yJD8CkxUI_1SsILIp1z-MDksVDE-5WHUD1zkddiinMa3dYExnW6d7zDvcahbxCjOdOUUvhm0b8TVTIo9PAqvLA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yMuWdhvf0zUqqz3SxIzJP_bocA_7Qiw1Qw6VOSa9xI91tICGsgM4955a0Mo_9JOKjiasYyzIdz2lmhEedBImLQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yMuWdhvf0zUqqz3SxIzJP_bocA_7Qiw1Qw6VOSa9xI91tICGsgM4955a0Mo_9JOKjiasYyzIdz2lmhEedBImLQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yMuWdhvf0zUqqz3SxIzJP_bocA_7Qiw1Qw6VOSa9xI91tICGsgM4955a0Mo_9JOKjiasYyzIdz2lmhEedBImLQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yQkDMMX9omcJUx8EYUbmCSivSn-rRmsL4LskV7UVDPQUaC5OEoVBOiVYeKkunWoqXfGvdh-NwWTzQU9wenMBiw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yQkDMMX9omcJUx8EYUbmCSivSn-rRmsL4LskV7UVDPQUaC5OEoVBOiVYeKkunWoqXfGvdh-NwWTzQU9wenMBiw== new file mode 100644 index 0000000..388c291 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yQkDMMX9omcJUx8EYUbmCSivSn-rRmsL4LskV7UVDPQUaC5OEoVBOiVYeKkunWoqXfGvdh-NwWTzQU9wenMBiw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ySy2C6my5EvZQ6jJLgRSXoP3caqZAel-9hI5F1_zuol8WEAot0pQ-adeWcQs68Eps2QEUge7Q6jlvuumE-guAg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ySy2C6my5EvZQ6jJLgRSXoP3caqZAel-9hI5F1_zuol8WEAot0pQ-adeWcQs68Eps2QEUge7Q6jlvuumE-guAg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ySy2C6my5EvZQ6jJLgRSXoP3caqZAel-9hI5F1_zuol8WEAot0pQ-adeWcQs68Eps2QEUge7Q6jlvuumE-guAg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yV3FK9MMHcOGnmVpAqarRbkZtHI4d0Fq5UO_Bpp2GC_XSgGdEw5zv98UMm4Y5K89_SFwIPF4zBH0yeX7_u02cg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yV3FK9MMHcOGnmVpAqarRbkZtHI4d0Fq5UO_Bpp2GC_XSgGdEw5zv98UMm4Y5K89_SFwIPF4zBH0yeX7_u02cg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yV3FK9MMHcOGnmVpAqarRbkZtHI4d0Fq5UO_Bpp2GC_XSgGdEw5zv98UMm4Y5K89_SFwIPF4zBH0yeX7_u02cg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ynfEX8mYzZyiDaifOjF3S40TeBLM8VVgasHJ7Prfa8_iCX7kgHsrd-9rzCtDeudpQLoaE2ccV_BAs7JBz7Fzdg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ynfEX8mYzZyiDaifOjF3S40TeBLM8VVgasHJ7Prfa8_iCX7kgHsrd-9rzCtDeudpQLoaE2ccV_BAs7JBz7Fzdg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ynfEX8mYzZyiDaifOjF3S40TeBLM8VVgasHJ7Prfa8_iCX7kgHsrd-9rzCtDeudpQLoaE2ccV_BAs7JBz7Fzdg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ysLqjzVSKBKREC2w2nYPMLKYELMUKsfSGPjfq-cplWxCZ-mwRiiCVbdCma58q73vfyi8gP4S7Hpg2mO3PnFg1Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ysLqjzVSKBKREC2w2nYPMLKYELMUKsfSGPjfq-cplWxCZ-mwRiiCVbdCma58q73vfyi8gP4S7Hpg2mO3PnFg1Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ysLqjzVSKBKREC2w2nYPMLKYELMUKsfSGPjfq-cplWxCZ-mwRiiCVbdCma58q73vfyi8gP4S7Hpg2mO3PnFg1Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yuCOIeGMlr1sxGwTv9yF4zBA0khHnwuxUiaxBRUK9NUJbKDR84ghtk1R3rGJCi3BUnT7EQumaCFQ8dhbfOoQYw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yuCOIeGMlr1sxGwTv9yF4zBA0khHnwuxUiaxBRUK9NUJbKDR84ghtk1R3rGJCi3BUnT7EQumaCFQ8dhbfOoQYw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yuCOIeGMlr1sxGwTv9yF4zBA0khHnwuxUiaxBRUK9NUJbKDR84ghtk1R3rGJCi3BUnT7EQumaCFQ8dhbfOoQYw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ywf1G4dDtADbdy9pBYSpV9IJ2_6g-1z-ZLU8YG4sucJYgp1Cyz0etUlk-vdxoCIxcSquzPH2kRoE9NlfooxahA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ywf1G4dDtADbdy9pBYSpV9IJ2_6g-1z-ZLU8YG4sucJYgp1Cyz0etUlk-vdxoCIxcSquzPH2kRoE9NlfooxahA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ywf1G4dDtADbdy9pBYSpV9IJ2_6g-1z-ZLU8YG4sucJYgp1Cyz0etUlk-vdxoCIxcSquzPH2kRoE9NlfooxahA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yy8m2DfmWqaWfPq2IHJHRhospkJYSNzQLzywlGTfon-rolgmPR7w2WpoJud7optTEd7nlDQ0UFMjuBAYvmhCYQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yy8m2DfmWqaWfPq2IHJHRhospkJYSNzQLzywlGTfon-rolgmPR7w2WpoJud7optTEd7nlDQ0UFMjuBAYvmhCYQ== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yy8m2DfmWqaWfPq2IHJHRhospkJYSNzQLzywlGTfon-rolgmPR7w2WpoJud7optTEd7nlDQ0UFMjuBAYvmhCYQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yyXManYewUav9Cd6jiw21Vpq2T4RX0gSvMO9k9f45i-wCqyZtnPAFkG8yZ76ETV_TUCoH5VOFUSmRwi6PyXxsw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yyXManYewUav9Cd6jiw21Vpq2T4RX0gSvMO9k9f45i-wCqyZtnPAFkG8yZ76ETV_TUCoH5VOFUSmRwi6PyXxsw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~yyXManYewUav9Cd6jiw21Vpq2T4RX0gSvMO9k9f45i-wCqyZtnPAFkG8yZ76ETV_TUCoH5VOFUSmRwi6PyXxsw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~z-quN9yClo53Yvl93Ee0H4OVg8cTzRPlqCXeTCBy3oSvh8Kp4GQhMJPHwYtwoq2uBbG8yIqgImDYK_MKxbNaLQ== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~z-quN9yClo53Yvl93Ee0H4OVg8cTzRPlqCXeTCBy3oSvh8Kp4GQhMJPHwYtwoq2uBbG8yIqgImDYK_MKxbNaLQ== new file mode 100644 index 0000000..f82ebf6 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~z-quN9yClo53Yvl93Ee0H4OVg8cTzRPlqCXeTCBy3oSvh8Kp4GQhMJPHwYtwoq2uBbG8yIqgImDYK_MKxbNaLQ== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~z1l5mrVymacBVP9-qI5ChWDue5BotV0tlL75wuwqueJxeo_56REiOo6k7KtIKLaDgWAaBriYW9wwR7NfRrGF3A== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~z1l5mrVymacBVP9-qI5ChWDue5BotV0tlL75wuwqueJxeo_56REiOo6k7KtIKLaDgWAaBriYW9wwR7NfRrGF3A== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~z1l5mrVymacBVP9-qI5ChWDue5BotV0tlL75wuwqueJxeo_56REiOo6k7KtIKLaDgWAaBriYW9wwR7NfRrGF3A== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zKPBCK04_ajFs8rsWZVhpXQ_QocJDVa45MLNwyxExLZdbWJAvunO7yRHUWCflO-3emAzNxoYiAvrsOqfI0h0gw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zKPBCK04_ajFs8rsWZVhpXQ_QocJDVa45MLNwyxExLZdbWJAvunO7yRHUWCflO-3emAzNxoYiAvrsOqfI0h0gw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zKPBCK04_ajFs8rsWZVhpXQ_QocJDVa45MLNwyxExLZdbWJAvunO7yRHUWCflO-3emAzNxoYiAvrsOqfI0h0gw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zO_y7c2IXC8gfTbnN2oxPFiuP8q8phMiMNz7v8YwnCLQa0BTxfcwxVMK-6Bz7yE7GjczKISauKoK6CwluB2Axw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zO_y7c2IXC8gfTbnN2oxPFiuP8q8phMiMNz7v8YwnCLQa0BTxfcwxVMK-6Bz7yE7GjczKISauKoK6CwluB2Axw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zO_y7c2IXC8gfTbnN2oxPFiuP8q8phMiMNz7v8YwnCLQa0BTxfcwxVMK-6Bz7yE7GjczKISauKoK6CwluB2Axw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zdBXtN_sxLzUrvM0ORhQPmJHwBs4Q_X4lboD6S4JEhP-w9R19WVW4U9lnR7XrR27ZFRkmE6Yl3SyKDPAt7Lt9g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zdBXtN_sxLzUrvM0ORhQPmJHwBs4Q_X4lboD6S4JEhP-w9R19WVW4U9lnR7XrR27ZFRkmE6Yl3SyKDPAt7Lt9g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zdBXtN_sxLzUrvM0ORhQPmJHwBs4Q_X4lboD6S4JEhP-w9R19WVW4U9lnR7XrR27ZFRkmE6Yl3SyKDPAt7Lt9g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zkvrVNEP5NeVateuhM-PjHQFRXYQxRgDoTMeh1Gl_mhy5Tl_LlDbyErGemMzUeFtRFszknbOVWP2MuFiGuqwrA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zkvrVNEP5NeVateuhM-PjHQFRXYQxRgDoTMeh1Gl_mhy5Tl_LlDbyErGemMzUeFtRFszknbOVWP2MuFiGuqwrA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zkvrVNEP5NeVateuhM-PjHQFRXYQxRgDoTMeh1Gl_mhy5Tl_LlDbyErGemMzUeFtRFszknbOVWP2MuFiGuqwrA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zlh1QBogHzjt4N12Y7XUS_MRBy3anLfFNjuxZfA5fakzgoTnKWBrBOPt1nf2JhYUrTS6XdKgs3UXBAF2nX3Fsw== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zlh1QBogHzjt4N12Y7XUS_MRBy3anLfFNjuxZfA5fakzgoTnKWBrBOPt1nf2JhYUrTS6XdKgs3UXBAF2nX3Fsw== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zlh1QBogHzjt4N12Y7XUS_MRBy3anLfFNjuxZfA5fakzgoTnKWBrBOPt1nf2JhYUrTS6XdKgs3UXBAF2nX3Fsw== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ztR2y5kMupz0AtncDgQPR_Z3royuRdAzNqY6Ynu-bszW9rKcLr3W6Uw3zpkOseEFa1Ze1MK28ciLW-Ar5jl7pg== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ztR2y5kMupz0AtncDgQPR_Z3royuRdAzNqY6Ynu-bszW9rKcLr3W6Uw3zpkOseEFa1Ze1MK28ciLW-Ar5jl7pg== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~ztR2y5kMupz0AtncDgQPR_Z3royuRdAzNqY6Ynu-bszW9rKcLr3W6Uw3zpkOseEFa1Ze1MK28ciLW-Ar5jl7pg== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zxVzMP8J82ODSUSPCxkOY1va2D2dit0OTr-y-iHnjR7JBzuIpDgniTm2Uz3xALawd8mLpSKsacAH_w0TzagC5g== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zxVzMP8J82ODSUSPCxkOY1va2D2dit0OTr-y-iHnjR7JBzuIpDgniTm2Uz3xALawd8mLpSKsacAH_w0TzagC5g== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zxVzMP8J82ODSUSPCxkOY1va2D2dit0OTr-y-iHnjR7JBzuIpDgniTm2Uz3xALawd8mLpSKsacAH_w0TzagC5g== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zyUYAVbDp9oJ3HV8Xgzr8qpyXnTX2dUAmsSbSqvH-_Se6njshg3UOBRaoPwEPLJux5UV7hlVHLaCOTI4FYVb_Q== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zyUYAVbDp9oJ3HV8Xgzr8qpyXnTX2dUAmsSbSqvH-_Se6njshg3UOBRaoPwEPLJux5UV7hlVHLaCOTI4FYVb_Q== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zyUYAVbDp9oJ3HV8Xgzr8qpyXnTX2dUAmsSbSqvH-_Se6njshg3UOBRaoPwEPLJux5UV7hlVHLaCOTI4FYVb_Q== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zzTRYXhKbElMT1LGBv4S6Q-ziAq-hgM9jJ8O2imyA2Q7WHSzzgbB7wufRSfk2s2jCa8nq7zTSSLAFiRfgoxOgA== b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zzTRYXhKbElMT1LGBv4S6Q-ziAq-hgM9jJ8O2imyA2Q7WHSzzgbB7wufRSfk2s2jCa8nq7zTSSLAFiRfgoxOgA== new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Data/refs.0~zzTRYXhKbElMT1LGBv4S6Q-ziAq-hgM9jJ8O2imyA2Q7WHSzzgbB7wufRSfk2s2jCa8nq7zTSSLAFiRfgoxOgA== differ diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Info.plist b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Info.plist new file mode 100644 index 0000000..8ac9999 --- /dev/null +++ b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/Info.plist @@ -0,0 +1,31 @@ + + + + + dateCreated + 2026-06-30T18:24:31Z + directoryImportMode + concurrent + externalLocations + + rootId + + hash + 0~u6dgdt56FZWWZOJzN3fl2-QczH9sKDJPxn0LeJE0nbBMMBJyjLafjv1GJNkLekMD-4ac_BrapjnSG8tn6WMR6A== + + storage + + backend + fileBacked2 + compression + standard + + version + + major + 3 + minor + 60 + + + diff --git a/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/database.sqlite3 b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/database.sqlite3 new file mode 100644 index 0000000..9451154 Binary files /dev/null and b/Tests/XcresultparserTests/TestAssets/Test-FlakyFixture.xcresult/database.sqlite3 differ