The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SwiftPropertyLaws, reference main (eeef84), with Swift 6.2 for macOS (SPM) on 5 May 2026 07:39:16 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Joseph-Cursio/SwiftPropertyLaws.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Joseph-Cursio/SwiftPropertyLaws
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at eeef84e docs(CLAUDE.md): rename SwiftProtocolLaws → SwiftPropertyLaws (mechanical pass 3/3)
Cloned https://github.com/Joseph-Cursio/SwiftPropertyLaws.git
Revision (git rev-parse @):
eeef84eb1285c0ff75516d1e781841ac86a22014
SUCCESS checkout https://github.com/Joseph-Cursio/SwiftPropertyLaws.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/Joseph-Cursio/SwiftPropertyLaws.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:36:59: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 34 |         let tool = try context.tool(named: "PropertyLawDiscoveryTool")
 35 |         let process = Process()
 36 |         process.executableURL = URL(fileURLWithPath: tool.path.string)
    |                                                           |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                                                           `- note: use 'url' instead
 37 |         var toolArgs: [String] = [
 38 |             "--target", target,
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:36:64: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 34 |         let tool = try context.tool(named: "PropertyLawDiscoveryTool")
 35 |         let process = Process()
 36 |         process.executableURL = URL(fileURLWithPath: tool.path.string)
    |                                                                `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 37 |         var toolArgs: [String] = [
 38 |             "--target", target,
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:67:40: warning: 'directory' is deprecated: renamed to 'directoryURL' [#DeprecatedDeclaration]
 65 |     /// doesn't exist; commit 5 will create the dir if missing.
 66 |     private func defaultOutputPath(for target: Target, in context: PluginContext) -> String {
 67 |         let testsDir = context.package.directory
    |                                        |- warning: 'directory' is deprecated: renamed to 'directoryURL' [#DeprecatedDeclaration]
    |                                        `- note: use 'directoryURL' instead
 68 |             .appending(["Tests", "\(target.name)Tests"])
 69 |         return testsDir.appending(["PropertyLawTests.generated.swift"]).string
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:68:14: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 66 |     private func defaultOutputPath(for target: Target, in context: PluginContext) -> String {
 67 |         let testsDir = context.package.directory
 68 |             .appending(["Tests", "\(target.name)Tests"])
    |              `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 69 |         return testsDir.appending(["PropertyLawTests.generated.swift"]).string
 70 |     }
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:69:25: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 67 |         let testsDir = context.package.directory
 68 |             .appending(["Tests", "\(target.name)Tests"])
 69 |         return testsDir.appending(["PropertyLawTests.generated.swift"]).string
    |                         `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 70 |     }
 71 |
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:69:73: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 67 |         let testsDir = context.package.directory
 68 |             .appending(["Tests", "\(target.name)Tests"])
 69 |         return testsDir.appending(["PropertyLawTests.generated.swift"]).string
    |                                                                         `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 70 |     }
 71 |
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:75:26: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 73 |         guard let sourceModuleTarget = target as? SourceModuleTarget else { return [] }
 74 |         return sourceModuleTarget.sourceFiles
 75 |             .filter { $0.path.extension == "swift" }
    |                          |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                          `- note: use 'url' instead
 76 |             .map { $0.path.string }
 77 |             .sorted()
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:75:31: warning: 'extension' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 73 |         guard let sourceModuleTarget = target as? SourceModuleTarget else { return [] }
 74 |         return sourceModuleTarget.sourceFiles
 75 |             .filter { $0.path.extension == "swift" }
    |                               `- warning: 'extension' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 76 |             .map { $0.path.string }
 77 |             .sorted()
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:76:23: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
 74 |         return sourceModuleTarget.sourceFiles
 75 |             .filter { $0.path.extension == "swift" }
 76 |             .map { $0.path.string }
    |                       |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
    |                       `- note: use 'url' instead
 77 |             .sorted()
 78 |     }
/Users/admin/builder/spi-builder-workspace/Plugins/PropertyLawDiscoveryPlugin/plugin.swift:76:28: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 74 |         return sourceModuleTarget.sourceFiles
 75 |             .filter { $0.path.extension == "swift" }
 76 |             .map { $0.path.string }
    |                            `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
 77 |             .sorted()
 78 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1/1] Compiling plugin PropertyLawDiscoveryPlugin
Building for debugging...
[1/35] Write sources
[16/35] Write PropertyLawDiscoveryTool-entitlement.plist
[18/35] Write PropertyLawDiscoveryTool-tool-entitlement.plist
[19/35] Write sources
[24/35] Compiling _SwiftSyntaxCShims dummy.c
[26/35] Write swift-version--3CB7CFEC50E0D141.txt
[28/117] Compiling SwiftSyntax600 Empty.swift
[29/117] Emitting module SwiftSyntax600
[30/117] Compiling SwiftSyntax600 Empty.swift
[31/117] Emitting module SwiftSyntax600
[32/117] Compiling SwiftSyntax509 Empty.swift
[33/117] Emitting module SwiftSyntax509
[35/117] Compiling SwiftSyntax509 Empty.swift
[36/117] Compiling PropertyLawCore GeneratorExpressionEmitter.swift
[37/117] Compiling SwiftSyntax510 Empty.swift
[38/117] Emitting module SwiftSyntax510
[39/117] Compiling SwiftSyntax510 Empty.swift
[40/117] Emitting module SwiftSyntax510
[41/117] Compiling PropertyLawCore KnownProtocol.swift
[42/117] Compiling PropertyLawCore MemberwiseEmitter.swift
[43/117] Compiling PropertyLawCore GeneratorExpressionEmitter.swift
[44/117] Compiling PropertyLawCore MemberwiseEmitter.swift
[45/117] Compiling PropertyLawCore DerivationStrategy.swift
[46/117] Emitting module PropertyLawCore
[47/117] Compiling PropertyLawCore KnownProtocol.swift
[48/117] Compiling PropertyLawCore DerivationStrategy.swift
[49/117] Emitting module PropertyLawCore
[50/253] Compiling SwiftSyntax CustomTraits.swift
[51/253] Compiling SwiftSyntax Identifier.swift
[52/253] Compiling SwiftSyntax MemoryLayout.swift
[53/253] Compiling SwiftSyntax MissingNodeInitializers.swift
[54/253] Compiling SwiftSyntax RawSyntax.swift
[55/253] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[56/253] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[63/260] Compiling SwiftSyntax RawSyntaxTokenView.swift
[64/260] Compiling SwiftSyntax AbsolutePosition.swift
[65/260] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[66/260] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[67/260] Compiling SwiftSyntax Assert.swift
[68/260] Compiling SwiftSyntax BumpPtrAllocator.swift
[69/260] Compiling SwiftSyntax CommonAncestor.swift
[70/260] Compiling SwiftSyntax Convenience.swift
[72/267] Compiling SwiftSyntax SyntaxArena.swift
[73/267] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[74/267] Compiling SwiftSyntax SyntaxChildren.swift
[75/267] Compiling SwiftSyntax SourcePresence.swift
[76/267] Compiling SwiftSyntax SyntaxHashable.swift
[77/267] Compiling SwiftSyntax SyntaxIdentifier.swift
[78/267] Compiling SwiftSyntax SyntaxNodeFactory.swift
[79/267] Compiling SwiftSyntax SourceEdit.swift
[80/267] Compiling SwiftSyntax SourceLength.swift
[81/267] Compiling SwiftSyntax SyntaxRewriter.swift
[82/267] Compiling SwiftSyntax SourcePresence.swift
[83/267] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[84/267] Compiling SwiftSyntax Syntax.swift
[93/267] Compiling PropertyLawMacroImpl PropertyLawSuiteMacro.swift
[94/267] Compiling PropertyLawMacroImpl MemberBlockInspector.swift
[95/267] Compiling PropertyLawMacroImpl Plugin.swift
[96/267] Compiling PropertyLawMacroImpl DiscoverableMacro.swift
[97/267] Emitting module PropertyLawMacroImpl
[98/267] Compiling PropertyLawMacroImpl Diagnostics.swift
[98/267] Write Objects.LinkFileList
[99/267] Linking PropertyLawMacroImpl-tool
[101/267] Emitting module SwiftSyntax
[105/267] Compiling SwiftSyntax SyntaxNodeStructure.swift
[115/273] Emitting module PropertyBased
[148/273] Compiling PropertyBased Shrink.swift
[149/273] Compiling PropertyBased Xoshiro.swift
[150/273] Compiling PropertyBased Zip.swift
[161/273] Compiling SwiftSyntax SyntaxCollections.swift
[162/273] Compiling SwiftSyntax SyntaxEnum.swift
[163/273] Compiling SwiftSyntax RawSyntaxNodesC.swift
[164/273] Compiling SwiftSyntax SyntaxRewriter.swift
[165/273] Compiling SwiftSyntax SyntaxTraits.swift
[166/273] Compiling SwiftSyntax SyntaxVisitor.swift
[167/273] Compiling SwiftSyntax AbsolutePosition.swift
[172/273] Compiling SwiftSyntax TokenDiagnostic.swift
[173/273] Compiling SwiftSyntax TokenSequence.swift
[174/273] Compiling SwiftSyntax TokenSyntax.swift
[175/273] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[176/273] Compiling SwiftSyntax TriviaPieces.swift
[177/273] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[178/273] Compiling SwiftSyntax RawSyntaxNodesC.swift
[179/273] Compiling SwiftSyntax CommonAncestor.swift
[180/273] Compiling SwiftSyntax Convenience.swift
[181/273] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[182/273] Compiling SwiftSyntax Utils.swift
[183/273] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[184/273] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[185/273] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[186/273] Compiling SwiftSyntax RawSyntaxValidation.swift
[187/273] Compiling SwiftSyntax SyntaxNodesAB.swift
[188/273] Compiling SwiftSyntax SyntaxNodesC.swift
[204/393] Compiling PropertyLawKit NumericGenerators.swift
[205/393] Compiling PropertyLawKit NumericLaws.swift
[206/393] Compiling PropertyLawKit PropertyBackend.swift
[207/393] Compiling PropertyLawKit RandomAccessCollectionLaws.swift
[208/393] Compiling PropertyLawKit RangeReplaceableCollectionLaws.swift
[209/393] Compiling PropertyLawKit RawRepresentableLaws.swift
[210/393] Compiling PropertyLawKit AggregateDriver.swift
[211/399] Compiling PropertyLawKit IteratorProtocolLaws.swift
[212/399] Compiling PropertyLawKit LosslessStringConvertibleLaws.swift
[213/399] Compiling PropertyLawKit Monoid.swift
[214/399] Compiling PropertyLawKit MonoidLaws.swift
[215/399] Compiling PropertyLawKit MutableCollectionLaws.swift
[216/399] Compiling PropertyLawKit ViolationFormatter.swift
[217/399] Emitting module PropertyLawKit
[219/399] Compiling PropertyLawKit SwiftPropertyBasedBackend.swift
[220/399] Compiling PropertyLawKit CoverageAccumulator.swift
[221/399] Compiling PropertyLawKit LawSuppressionPolicy.swift
[222/399] Compiling PropertyLawKit NearMissCollector.swift
[223/399] Compiling PropertyLawKit PerLawDriver.swift
[224/399] Compiling PropertyLawKit ReplayEnvironmentValidator.swift
[225/399] Compiling PropertyLawKit LawCheckOptions.swift
[226/399] Compiling PropertyLawKit LawIdentifier.swift
[227/399] Compiling PropertyLawKit LawSelection.swift
[228/399] Compiling PropertyLawKit LawSuppression.swift
[229/399] Compiling PropertyLawKit PropertyLawViolation.swift
[230/399] Compiling PropertyLawKit Seed.swift
[231/399] Compiling PropertyLawKit SequenceLawOptions.swift
[232/399] Compiling PropertyLawKit EquatableLaws.swift
[233/399] Compiling PropertyLawKit FixedWidthIntegerLaws.swift
[234/399] Compiling PropertyLawKit FloatingPointLaws.swift
[235/399] Compiling PropertyLawKit Group.swift
[236/399] Compiling PropertyLawKit GroupLaws.swift
[237/399] Compiling PropertyLawKit HashableLaws.swift
[238/399] Emitting module PropertyLawKit
[239/405] Compiling PropertyLawKit CheckResult.swift
[240/405] Compiling PropertyLawKit CodableCodec.swift
[241/405] Compiling PropertyLawKit CodableLawConfig.swift
[242/405] Compiling PropertyLawKit CodableRoundTripMode.swift
[243/405] Compiling PropertyLawKit EnforcementMode.swift
[244/405] Compiling PropertyLawKit Environment.swift
[245/405] Compiling PropertyLawKit StrictnessTier.swift
[246/405] Compiling PropertyLawKit TrialBudget.swift
[247/405] Compiling PropertyLawKit PropertyLawKit.swift
[248/405] Compiling PropertyLawKit AdditiveArithmeticLaws.swift
[249/405] Compiling PropertyLawKit BidirectionalCollectionLaws.swift
[250/405] Compiling PropertyLawKit BinaryFloatingPointLaws.swift
[251/405] Compiling PropertyLawKit BinaryIntegerLaws.swift
[268/405] Compiling PropertyLawKit CommutativeMonoid.swift
[269/405] Compiling PropertyLawKit CommutativeMonoidLaws.swift
[270/405] Compiling PropertyLawKit ComparableLaws.swift
[271/405] Compiling PropertyLawKit CoverageClassifier.swift
[273/405] Compiling PropertyLawKit ReplayEnvironmentMismatch.swift
[274/405] Compiling PropertyLawKit Semigroup.swift
[275/405] Compiling PropertyLawKit SemigroupLaws.swift
[291/405] Compiling PropertyLawKit CaseIterableLaws.swift
[292/405] Compiling PropertyLawKit CodableLaws.swift
[293/405] Compiling PropertyLawKit CollectionLaws.swift
[294/405] Compiling PropertyLawKit Semilattice.swift
[295/405] Compiling PropertyLawKit SemilatticeLaws.swift
[296/405] Compiling PropertyLawKit SequenceLaws.swift
[297/405] Compiling PropertyLawKit IdentifiableLaws.swift
[310/405] Compiling PropertyLawKit SetAlgebraLaws.swift
[311/405] Compiling PropertyLawKit SignedIntegerLaws.swift
[312/405] Compiling PropertyLawKit SignedNumericLaws.swift
[313/405] Compiling PropertyLawKit StrideableLaws.swift
[314/405] Compiling PropertyLawKit StringProtocolLaws.swift
[320/405] Compiling PropertyLawKit UnsignedIntegerLaws.swift
[328/405] Compiling SwiftSyntax SyntaxNodesEF.swift
[329/405] Compiling SwiftSyntax SyntaxNodesGHI.swift
[330/405] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[331/405] Compiling SwiftSyntax SyntaxNodesOP.swift
[332/405] Compiling SwiftSyntax SyntaxNodesQRS.swift
[333/405] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[341/489] Compiling SwiftParser Parameters.swift
[342/489] Compiling SwiftParser ParseSourceFile.swift
[343/489] Compiling SwiftParser Parser.swift
[344/489] Compiling SwiftParser Patterns.swift
[345/493] Compiling SwiftParser Types.swift
[346/493] Compiling SwiftParser ExperimentalFeatures.swift
[347/493] Compiling SwiftParser StringLiterals.swift
[348/493] Compiling SwiftParser SwiftParserCompatibility.swift
[349/493] Compiling SwiftParser SwiftVersion.swift
[350/493] Compiling SwiftParser SyntaxUtils.swift
[351/493] Compiling SwiftParser TokenConsumer.swift
[352/493] Compiling SwiftParser Lookahead.swift
[353/493] Compiling SwiftParser LoopProgressCondition.swift
[354/493] Compiling SwiftParser Modifiers.swift
[355/493] Compiling SwiftParser Names.swift
[356/493] Compiling SwiftParser TopLevel.swift
[357/493] Compiling SwiftParser TriviaParser.swift
[358/493] Compiling SwiftParser RegexLiteralLexer.swift
[359/493] Compiling SwiftParser Recovery.swift
[360/493] Compiling SwiftParser Specifiers.swift
[361/493] Compiling SwiftParser Statements.swift
[362/493] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[363/493] Compiling SwiftParser UnicodeScalarExtensions.swift
[364/493] Compiling SwiftParser TokenPrecedence.swift
[365/493] Compiling SwiftParser TokenSpec.swift
[366/493] Compiling SwiftParser TokenSpecSet.swift
[367/493] Compiling SwiftParser Nominals.swift
[384/495] Compiling SwiftParser IsLexerClassified.swift
[385/495] Compiling SwiftParser LayoutNodes+Parsable.swift
[386/495] Compiling SwiftParser Parser+TokenSpecSet.swift
[387/495] Compiling SwiftParser TokenSpecStaticMembers.swift
[423/501] Emitting module SwiftParser
[441/501] Compiling SwiftParser Directives.swift
[442/501] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[443/501] Compiling SwiftParser Expressions.swift
[444/501] Compiling SwiftParser IncrementalParseTransition.swift
[445/501] Emitting module SwiftParser
[459/501] Compiling SwiftParser Attributes.swift
[460/501] Compiling SwiftParser Availability.swift
[461/501] Compiling SwiftParser CharacterInfo.swift
[462/501] Compiling SwiftParser CollectionNodes+Parsable.swift
[463/501] Compiling SwiftParser Declarations.swift
[469/501] Compiling PropertyLawMacro PropertyLawMacro.swift
[470/501] Emitting module PropertyLawMacro
[475/501] Compiling SwiftParser IsValidIdentifier.swift
[476/501] Compiling SwiftParser Cursor.swift
[477/501] Compiling SwiftParser Lexeme.swift
[478/501] Compiling SwiftParser LexemeSequence.swift
[479/501] Compiling SwiftParser Lexer.swift
[481/501] Compiling PropertyLawMacro PropertyLawMacro.swift
[482/501] Emitting module PropertyLawMacro
[488/501] Compiling SwiftParser IsLexerClassified.swift
[489/501] Compiling SwiftParser LayoutNodes+Parsable.swift
[490/501] Compiling SwiftParser Parser+TokenSpecSet.swift
[491/501] Compiling SwiftParser TokenSpecStaticMembers.swift
[496/511] Compiling PropertyLawDiscoveryTool SuppressionParser.swift
[497/522] Compiling PropertyLawDiscoveryTool RoundTripFinder.swift
[498/522] Compiling PropertyLawDiscoveryTool PluginMemberInspector.swift
[499/522] Compiling PropertyLawDiscoveryTool RoundTripSuggester.swift
[500/522] Compiling PropertyLawDiscoveryTool AdvisorySuggester.swift
[501/522] Compiling PropertyLawDiscoveryTool ModuleScanner.swift
[502/522] Emitting module PropertyLawDiscoveryTool
[503/522] Compiling PropertyLawDiscoveryTool GeneratedFileEmitter.swift
[504/522] Compiling PropertyLawDiscoveryTool ConformanceMap.swift
[505/522] Compiling PropertyLawDiscoveryTool PropertyLawDiscoveryTool.swift
[506/522] Compiling PropertyLawDiscoveryTool WitnessFinder.swift
[506/522] Write Objects.LinkFileList
[508/522] Compiling PropertyLawDiscoveryTool RoundTripFinder.swift
[509/522] Compiling PropertyLawDiscoveryTool RoundTripSuggester.swift
[510/522] Compiling PropertyLawDiscoveryTool PluginMemberInspector.swift
[511/522] Compiling PropertyLawDiscoveryTool SuppressionParser.swift
[512/523] Compiling PropertyLawDiscoveryTool ConformanceMap.swift
[513/523] Compiling PropertyLawDiscoveryTool PropertyLawDiscoveryTool.swift
[514/523] Compiling PropertyLawDiscoveryTool GeneratedFileEmitter.swift
[515/523] Compiling PropertyLawDiscoveryTool AdvisorySuggester.swift
[516/523] Emitting module PropertyLawDiscoveryTool
[517/523] Compiling PropertyLawDiscoveryTool ModuleScanner.swift
[518/523] Compiling PropertyLawDiscoveryTool WitnessFinder.swift
[518/523] Write Objects.LinkFileList
[519/523] Linking PropertyLawDiscoveryTool-tool
[520/523] Applying PropertyLawDiscoveryTool-tool
[521/523] Linking PropertyLawDiscoveryTool
[522/523] Applying PropertyLawDiscoveryTool
Build complete! (45.29s)
Fetching https://github.com/swiftlang/swift-syntax.git
Fetching https://github.com/x-sheep/swift-property-based.git
[1/1261] Fetching swift-property-based
[1262/76306] Fetching swift-property-based, swift-syntax
Fetched https://github.com/x-sheep/swift-property-based.git from cache (5.82s)
Fetched https://github.com/swiftlang/swift-syntax.git from cache (5.82s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Computed https://github.com/swiftlang/swift-syntax.git at 600.0.1 (9.37s)
Computing version for https://github.com/x-sheep/swift-property-based.git
Computed https://github.com/x-sheep/swift-property-based.git at 1.2.0 (0.59s)
Creating working copy for https://github.com/x-sheep/swift-property-based.git
Working copy of https://github.com/x-sheep/swift-property-based.git resolved at 1.2.0
Creating working copy for https://github.com/swiftlang/swift-syntax.git
Working copy of https://github.com/swiftlang/swift-syntax.git resolved at 600.0.1
Downloading package prebuilt https://download.swift.org/prebuilts/swift-syntax/600.0.1/swiftlang-6.2.4.1.4-MacroSupport-macos_aarch64.zip
Downloaded https://download.swift.org/prebuilts/swift-syntax/600.0.1/swiftlang-6.2.4.1.4-MacroSupport-macos_aarch64.zip (0.16s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-property-based",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/x-sheep/swift-property-based.git"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "600.0.0",
            "upper_bound" : "601.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    }
  ],
  "manifest_display_name" : "SwiftPropertyLaws",
  "name" : "SwiftPropertyLaws",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "tvos",
      "version" : "17.0"
    },
    {
      "name" : "watchos",
      "version" : "10.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "PropertyLawKit",
      "targets" : [
        "PropertyLawKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "PropertyLawMacro",
      "targets" : [
        "PropertyLawMacro"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "PropertyLawCore",
      "targets" : [
        "PropertyLawCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "PropertyLawDiscoveryTool",
      "targets" : [
        "PropertyLawDiscoveryTool"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "PropertyLawMacroImpl",
      "targets" : [
        "PropertyLawMacroImpl"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "PropertyLawMacroTests",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawMacroTests",
      "path" : "Tests/PropertyLawMacroTests",
      "product_dependencies" : [
        "PropertyBased",
        "SwiftSyntaxMacros",
        "SwiftSyntaxMacrosTestSupport"
      ],
      "sources" : [
        "DiagnosticsTests.swift",
        "DiscoverableMacroTests.swift",
        "EndToEndTests.swift",
        "MacroExpansionMultiTypeTests.swift",
        "MacroExpansionTests.swift"
      ],
      "target_dependencies" : [
        "PropertyLawMacro",
        "PropertyLawMacroImpl",
        "PropertyLawKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PropertyLawMacroImpl",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawMacroImpl",
      "path" : "Sources/PropertyLawMacroImpl",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin",
        "SwiftDiagnostics"
      ],
      "product_memberships" : [
        "PropertyLawMacro",
        "PropertyLawMacroImpl"
      ],
      "sources" : [
        "Diagnostics.swift",
        "DiscoverableMacro.swift",
        "MemberBlockInspector.swift",
        "Plugin.swift",
        "PropertyLawSuiteMacro.swift"
      ],
      "target_dependencies" : [
        "PropertyLawCore"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "PropertyLawMacro",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawMacro",
      "path" : "Sources/PropertyLawMacro",
      "product_memberships" : [
        "PropertyLawMacro"
      ],
      "sources" : [
        "PropertyLawMacro.swift"
      ],
      "target_dependencies" : [
        "PropertyLawKit",
        "PropertyLawMacroImpl"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PropertyLawKitTests",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawKitTests",
      "path" : "Tests/PropertyLawKitTests",
      "product_dependencies" : [
        "PropertyBased"
      ],
      "sources" : [
        "AdditiveArithmeticLawsTests.swift",
        "BidirectionalCollectionLawsTests.swift",
        "BinaryFloatingPointLawsTests.swift",
        "BinaryIntegerLawsTests.swift",
        "BudgetTests.swift",
        "CaseIterableLawsTests.swift",
        "CodableLawsTests.swift",
        "CollectionLawsTests.swift",
        "CommutativeMonoidLawsTests.swift",
        "ComparableLawsTests.swift",
        "CoverageHintsTests.swift",
        "DownstreamPropertyBackendSmokeTests.swift",
        "EnforcementTests.swift",
        "EquatableLawsTests.swift",
        "ErrorBoxTests.swift",
        "FixedWidthIntegerLawsTests.swift",
        "FloatingPointLawsTests.swift",
        "GroupLawsTests.swift",
        "HashableLawsTests.swift",
        "Helpers/Generators.swift",
        "Helpers/SeededValueType.swift",
        "IdentifiableLawsTests.swift",
        "IteratorProtocolLawsTests.swift",
        "LawIdentifierTests.swift",
        "LosslessStringConvertibleLawsTests.swift",
        "MonoidLawsTests.swift",
        "MutableCollectionLawsTests.swift",
        "NearMissTests.swift",
        "NumericLawsTests.swift",
        "PlantedBugs/PlantedAdditiveArithmeticViolators.swift",
        "PlantedBugs/PlantedBinaryIntegerViolators.swift",
        "PlantedBugs/PlantedBugCollectionRefinementsDetectionTests.swift",
        "PlantedBugs/PlantedBugCollectionsDetectionTests.swift",
        "PlantedBugs/PlantedBugDetectionTests.swift",
        "PlantedBugs/PlantedBugIntegerDetectionTests.swift",
        "PlantedBugs/PlantedBugMonoidDetectionTests.swift",
        "PlantedBugs/PlantedBugNumericDetectionTests.swift",
        "PlantedBugs/PlantedBugSemigroupDetectionTests.swift",
        "PlantedBugs/PlantedCaseIterableViolators.swift",
        "PlantedBugs/PlantedCodableViolators.swift",
        "PlantedBugs/PlantedCollectionRefinementsViolators.swift",
        "PlantedBugs/PlantedCollectionViolators.swift",
        "PlantedBugs/PlantedComparableViolators.swift",
        "PlantedBugs/PlantedEquatableViolators.swift",
        "PlantedBugs/PlantedFixedWidthIntegerViolators.swift",
        "PlantedBugs/PlantedHashableViolators.swift",
        "PlantedBugs/PlantedIdentifiableViolators.swift",
        "PlantedBugs/PlantedIteratorViolators.swift",
        "PlantedBugs/PlantedLosslessStringConvertibleViolators.swift",
        "PlantedBugs/PlantedMonoidViolators.swift",
        "PlantedBugs/PlantedNumericViolators.swift",
        "PlantedBugs/PlantedRawRepresentableViolators.swift",
        "PlantedBugs/PlantedSemigroupViolators.swift",
        "PlantedBugs/PlantedSequenceViolators.swift",
        "PlantedBugs/PlantedSetAlgebraViolators.swift",
        "PlantedBugs/PlantedSignedIntegerViolators.swift",
        "PlantedBugs/PlantedSignedNumericViolators.swift",
        "PlantedBugs/PlantedStrideableViolators.swift",
        "PlantedBugs/PlantedUnsignedIntegerViolators.swift",
        "RandomAccessCollectionLawsTests.swift",
        "RangeReplaceableCollectionLawsTests.swift",
        "RawRepresentableLawsTests.swift",
        "ReplayValidationTests.swift",
        "SeedTests.swift",
        "SemigroupLawsTests.swift",
        "SemilatticeLawsTests.swift",
        "SequenceLawsTests.swift",
        "SetAlgebraLawsTests.swift",
        "SignedNumericLawsTests.swift",
        "StrideableLawsTests.swift",
        "StringProtocolLawsTests.swift",
        "SuppressionTests.swift"
      ],
      "target_dependencies" : [
        "PropertyLawKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PropertyLawKit",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawKit",
      "path" : "Sources/PropertyLawKit",
      "product_dependencies" : [
        "PropertyBased"
      ],
      "product_memberships" : [
        "PropertyLawKit",
        "PropertyLawMacro"
      ],
      "sources" : [
        "Internal/AggregateDriver.swift",
        "Internal/Backends/SwiftPropertyBasedBackend.swift",
        "Internal/CoverageAccumulator.swift",
        "Internal/LawSuppressionPolicy.swift",
        "Internal/NearMissCollector.swift",
        "Internal/PerLawDriver.swift",
        "Internal/ReplayEnvironmentValidator.swift",
        "Internal/ViolationFormatter.swift",
        "Model/CheckResult.swift",
        "Model/CodableCodec.swift",
        "Model/CodableLawConfig.swift",
        "Model/CodableRoundTripMode.swift",
        "Model/EnforcementMode.swift",
        "Model/Environment.swift",
        "Model/LawCheckOptions.swift",
        "Model/LawIdentifier.swift",
        "Model/LawSelection.swift",
        "Model/LawSuppression.swift",
        "Model/PropertyLawViolation.swift",
        "Model/Seed.swift",
        "Model/SequenceLawOptions.swift",
        "Model/StrictnessTier.swift",
        "Model/TrialBudget.swift",
        "PropertyLawKit.swift",
        "Public/AdditiveArithmeticLaws.swift",
        "Public/BidirectionalCollectionLaws.swift",
        "Public/BinaryFloatingPointLaws.swift",
        "Public/BinaryIntegerLaws.swift",
        "Public/CaseIterableLaws.swift",
        "Public/CodableLaws.swift",
        "Public/CollectionLaws.swift",
        "Public/CommutativeMonoid.swift",
        "Public/CommutativeMonoidLaws.swift",
        "Public/ComparableLaws.swift",
        "Public/CoverageClassifier.swift",
        "Public/EquatableLaws.swift",
        "Public/FixedWidthIntegerLaws.swift",
        "Public/FloatingPointLaws.swift",
        "Public/Group.swift",
        "Public/GroupLaws.swift",
        "Public/HashableLaws.swift",
        "Public/IdentifiableLaws.swift",
        "Public/IteratorProtocolLaws.swift",
        "Public/LosslessStringConvertibleLaws.swift",
        "Public/Monoid.swift",
        "Public/MonoidLaws.swift",
        "Public/MutableCollectionLaws.swift",
        "Public/NumericGenerators.swift",
        "Public/NumericLaws.swift",
        "Public/PropertyBackend.swift",
        "Public/RandomAccessCollectionLaws.swift",
        "Public/RangeReplaceableCollectionLaws.swift",
        "Public/RawRepresentableLaws.swift",
        "Public/ReplayEnvironmentMismatch.swift",
        "Public/Semigroup.swift",
        "Public/SemigroupLaws.swift",
        "Public/Semilattice.swift",
        "Public/SemilatticeLaws.swift",
        "Public/SequenceLaws.swift",
        "Public/SetAlgebraLaws.swift",
        "Public/SignedIntegerLaws.swift",
        "Public/SignedNumericLaws.swift",
        "Public/StrideableLaws.swift",
        "Public/StringProtocolLaws.swift",
        "Public/UnsignedIntegerLaws.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "PropertyLawDiscoveryToolTests",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawDiscoveryToolTests",
      "path" : "Tests/PropertyLawDiscoveryToolTests",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftParser"
      ],
      "sources" : [
        "AdvisorySuggesterTests.swift",
        "EmitterGoldenTests.swift",
        "ModuleScannerRoundTripTests.swift",
        "ModuleScannerTests.swift",
        "RoundTripSuggesterTests.swift",
        "SuppressionParserTests.swift",
        "ToolInvocationTests.swift"
      ],
      "target_dependencies" : [
        "PropertyLawDiscoveryTool"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PropertyLawDiscoveryTool",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawDiscoveryTool",
      "path" : "Sources/PropertyLawDiscoveryTool",
      "product_dependencies" : [
        "SwiftSyntax",
        "SwiftParser"
      ],
      "product_memberships" : [
        "PropertyLawDiscoveryTool"
      ],
      "sources" : [
        "AdvisorySuggester.swift",
        "ConformanceMap.swift",
        "GeneratedFileEmitter.swift",
        "ModuleScanner.swift",
        "PluginMemberInspector.swift",
        "PropertyLawDiscoveryTool.swift",
        "RoundTripFinder.swift",
        "RoundTripSuggester.swift",
        "SuppressionParser.swift",
        "WitnessFinder.swift"
      ],
      "target_dependencies" : [
        "PropertyLawCore"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "PropertyLawDiscoveryPlugin",
      "module_type" : "PluginTarget",
      "name" : "PropertyLawDiscoveryPlugin",
      "path" : "Plugins/PropertyLawDiscoveryPlugin",
      "plugin_capability" : {
        "intent" : {
          "description" : "Generate PropertyLawKit test files by walking a target's source files and detecting stdlib protocol conformances.",
          "type" : "custom",
          "verb" : "propertylawcheck"
        },
        "permissions" : [
          {
            "network_scope" : {
              "none" : {
              }
            },
            "reason" : "PropertyLawDiscoveryPlugin writes a generated test file (default: Tests/<Target>Tests/PropertyLawTests.generated.swift) listing the checkXxxPropertyLaws calls for each detected conformance.",
            "type" : "writeToPackageDirectory"
          }
        ],
        "type" : "command"
      },
      "sources" : [
        "plugin.swift"
      ],
      "target_dependencies" : [
        "PropertyLawDiscoveryTool"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "PropertyLawCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawCoreTests",
      "path" : "Tests/PropertyLawCoreTests",
      "sources" : [
        "DerivationStrategistTests.swift",
        "GeneratorExpressionEmitterTests.swift",
        "MemberwiseEmitterTests.swift"
      ],
      "target_dependencies" : [
        "PropertyLawCore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PropertyLawCore",
      "module_type" : "SwiftTarget",
      "name" : "PropertyLawCore",
      "path" : "Sources/PropertyLawCore",
      "product_memberships" : [
        "PropertyLawMacro",
        "PropertyLawCore",
        "PropertyLawDiscoveryTool",
        "PropertyLawMacroImpl"
      ],
      "sources" : [
        "DerivationStrategy.swift",
        "GeneratorExpressionEmitter.swift",
        "KnownProtocol.swift",
        "MemberwiseEmitter.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.1"
}
Done.