├── .github └── CODEOWNERS ├── .gitignore ├── README.md ├── basic.py ├── debugging-flags-SR85.py ├── example-package-dealer.py ├── lit.cfg ├── litTest ├── not ├── repl ├── test-repl-darwin.py └── test-repl-glibc.py ├── swift-build-self-host.py ├── swift-build.txt ├── swift-compiler.py ├── swift-package-init-exec.md ├── swift-package-init-lib.md ├── swift-package-with-spaces.txt ├── swift-run.md ├── test-c-library-swiftpm ├── test.py ├── testApp │ ├── Package.swift │ └── main.swift └── z │ ├── Package.swift │ └── module.modulemap ├── test-codecov-package ├── foo │ ├── .gitignore │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── foo │ │ │ └── foo.swift │ └── Tests │ │ ├── LinuxMain.swift │ │ └── fooTests │ │ ├── XCTestManifests.swift │ │ └── fooTests.swift └── test-codecov-package.txt ├── test-complex-xctest-package ├── SwiftCMixed │ ├── .gitignore │ ├── Package.swift │ ├── Sources │ │ ├── see │ │ │ ├── include │ │ │ │ ├── module.modulemap │ │ │ │ └── see.h │ │ │ └── see.c │ │ └── swifty │ │ │ └── swifty.swift │ └── Tests │ │ ├── LinuxMain.swift │ │ └── swiftyTests │ │ └── swiftyTests.swift └── test-xctest-package.txt ├── test-cross-compile ├── main.swift └── test-compile-wasm.test ├── test-foundation-package ├── main.swift ├── test-foundation-essentials.swift ├── test-foundation-essentials.txt ├── test-foundation-internationalization.swift ├── test-foundation-internationalization.txt ├── test-foundation-macros.swift ├── test-foundation-macros.txt ├── test-foundation-networking-fetch.swift ├── test-foundation-networking-fetch.txt ├── test-foundation-networking-static-stdlib.test ├── test-foundation-networking.swift ├── test-foundation-networking.txt ├── test-foundation-package.txt ├── test-foundation-static-stdlib.test ├── test-foundation-xml-static-stdlib.test ├── test-foundation-xml.swift └── test-foundation-xml.txt ├── test-import-glibc ├── import-glibc.swift └── test-import-glibc.py ├── test-lldb-with-swiftpm ├── Package.swift ├── README.txt └── Sources │ ├── Core │ └── core.swift │ ├── See │ ├── include │ │ └── see.h │ └── see.c │ └── exec │ └── main.swift ├── test-multi-compile-glibc ├── goodbye.swift ├── hello.swift ├── main.swift └── swift-multi-compile-glibc.py ├── test-multi-compile ├── goodbye.swift ├── hello.swift ├── main.swift └── swift-multi-compile.py ├── test-snapshot-binaries ├── linux_load_commands.py ├── test-rpath-linux.py └── test-universal-darwin.py ├── test-sourcekit-lsp ├── pkg │ ├── Package.swift │ └── Sources │ │ ├── clib │ │ ├── clib.c │ │ └── include │ │ │ └── clib.h │ │ ├── exec │ │ └── main.swift │ │ └── lib │ │ └── lib.swift └── test-sourcekit-lsp.py ├── test-static-lib ├── main.swift ├── staticLib.swift └── test-static-lib.py ├── test-static-stdlib ├── dispatch_test.swift ├── main.swift ├── test-dispatch-static-stdlib.test └── test-static-stdlib.test ├── test-swift-docc ├── DocCTest │ ├── Package.swift │ ├── README.md │ └── Sources │ │ └── DocCTest │ │ ├── DocCTest.docc │ │ ├── Documentation.md │ │ └── Info.plist │ │ └── DocCTest.swift └── test-swift-docc.txt ├── test-swift-testing-package ├── Tests.swift └── test-swift-testing-package.txt ├── test-xctest-package ├── main.swift └── test-xctest-package.txt └── wasm ├── Hello ├── .gitignore ├── Package.swift ├── Sources │ └── Hello │ │ └── Hello.swift └── Tests │ └── HelloTests │ └── HelloTests.swift └── swiftpm.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/README.md -------------------------------------------------------------------------------- /basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/basic.py -------------------------------------------------------------------------------- /debugging-flags-SR85.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/debugging-flags-SR85.py -------------------------------------------------------------------------------- /example-package-dealer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/example-package-dealer.py -------------------------------------------------------------------------------- /lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/lit.cfg -------------------------------------------------------------------------------- /litTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/litTest -------------------------------------------------------------------------------- /not: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/not -------------------------------------------------------------------------------- /repl/test-repl-darwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/repl/test-repl-darwin.py -------------------------------------------------------------------------------- /repl/test-repl-glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/repl/test-repl-glibc.py -------------------------------------------------------------------------------- /swift-build-self-host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/swift-build-self-host.py -------------------------------------------------------------------------------- /swift-build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/swift-build.txt -------------------------------------------------------------------------------- /swift-compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/swift-compiler.py -------------------------------------------------------------------------------- /swift-package-init-exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/swift-package-init-exec.md -------------------------------------------------------------------------------- /swift-package-init-lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/swift-package-init-lib.md -------------------------------------------------------------------------------- /swift-package-with-spaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/swift-package-with-spaces.txt -------------------------------------------------------------------------------- /swift-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/swift-run.md -------------------------------------------------------------------------------- /test-c-library-swiftpm/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-c-library-swiftpm/test.py -------------------------------------------------------------------------------- /test-c-library-swiftpm/testApp/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-c-library-swiftpm/testApp/Package.swift -------------------------------------------------------------------------------- /test-c-library-swiftpm/testApp/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-c-library-swiftpm/testApp/main.swift -------------------------------------------------------------------------------- /test-c-library-swiftpm/z/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-c-library-swiftpm/z/Package.swift -------------------------------------------------------------------------------- /test-c-library-swiftpm/z/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-c-library-swiftpm/z/module.modulemap -------------------------------------------------------------------------------- /test-codecov-package/foo/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | -------------------------------------------------------------------------------- /test-codecov-package/foo/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-codecov-package/foo/Package.swift -------------------------------------------------------------------------------- /test-codecov-package/foo/README.md: -------------------------------------------------------------------------------- 1 | # foo 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /test-codecov-package/foo/Sources/foo/foo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-codecov-package/foo/Sources/foo/foo.swift -------------------------------------------------------------------------------- /test-codecov-package/foo/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-codecov-package/foo/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /test-codecov-package/foo/Tests/fooTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-codecov-package/foo/Tests/fooTests/XCTestManifests.swift -------------------------------------------------------------------------------- /test-codecov-package/foo/Tests/fooTests/fooTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-codecov-package/foo/Tests/fooTests/fooTests.swift -------------------------------------------------------------------------------- /test-codecov-package/test-codecov-package.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-codecov-package/test-codecov-package.txt -------------------------------------------------------------------------------- /test-complex-xctest-package/SwiftCMixed/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | -------------------------------------------------------------------------------- /test-complex-xctest-package/SwiftCMixed/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-complex-xctest-package/SwiftCMixed/Package.swift -------------------------------------------------------------------------------- /test-complex-xctest-package/SwiftCMixed/Sources/see/include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-complex-xctest-package/SwiftCMixed/Sources/see/include/module.modulemap -------------------------------------------------------------------------------- /test-complex-xctest-package/SwiftCMixed/Sources/see/include/see.h: -------------------------------------------------------------------------------- 1 | int foo(); 2 | -------------------------------------------------------------------------------- /test-complex-xctest-package/SwiftCMixed/Sources/see/see.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-complex-xctest-package/SwiftCMixed/Sources/see/see.c -------------------------------------------------------------------------------- /test-complex-xctest-package/SwiftCMixed/Sources/swifty/swifty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-complex-xctest-package/SwiftCMixed/Sources/swifty/swifty.swift -------------------------------------------------------------------------------- /test-complex-xctest-package/SwiftCMixed/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-complex-xctest-package/SwiftCMixed/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /test-complex-xctest-package/SwiftCMixed/Tests/swiftyTests/swiftyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-complex-xctest-package/SwiftCMixed/Tests/swiftyTests/swiftyTests.swift -------------------------------------------------------------------------------- /test-complex-xctest-package/test-xctest-package.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-complex-xctest-package/test-xctest-package.txt -------------------------------------------------------------------------------- /test-cross-compile/main.swift: -------------------------------------------------------------------------------- 1 | func foo() {} 2 | -------------------------------------------------------------------------------- /test-cross-compile/test-compile-wasm.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-cross-compile/test-compile-wasm.test -------------------------------------------------------------------------------- /test-foundation-package/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/main.swift -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-essentials.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-essentials.swift -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-essentials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-essentials.txt -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-internationalization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-internationalization.swift -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-internationalization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-internationalization.txt -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-macros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-macros.swift -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-macros.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-macros.txt -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-networking-fetch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-networking-fetch.swift -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-networking-fetch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-networking-fetch.txt -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-networking-static-stdlib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-networking-static-stdlib.test -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-networking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-networking.swift -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-networking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-networking.txt -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-package.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-package.txt -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-static-stdlib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-static-stdlib.test -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-xml-static-stdlib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-xml-static-stdlib.test -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-xml.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-xml.swift -------------------------------------------------------------------------------- /test-foundation-package/test-foundation-xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-foundation-package/test-foundation-xml.txt -------------------------------------------------------------------------------- /test-import-glibc/import-glibc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-import-glibc/import-glibc.swift -------------------------------------------------------------------------------- /test-import-glibc/test-import-glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-import-glibc/test-import-glibc.py -------------------------------------------------------------------------------- /test-lldb-with-swiftpm/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-lldb-with-swiftpm/Package.swift -------------------------------------------------------------------------------- /test-lldb-with-swiftpm/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-lldb-with-swiftpm/README.txt -------------------------------------------------------------------------------- /test-lldb-with-swiftpm/Sources/Core/core.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-lldb-with-swiftpm/Sources/Core/core.swift -------------------------------------------------------------------------------- /test-lldb-with-swiftpm/Sources/See/include/see.h: -------------------------------------------------------------------------------- 1 | int see(); 2 | -------------------------------------------------------------------------------- /test-lldb-with-swiftpm/Sources/See/see.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-lldb-with-swiftpm/Sources/See/see.c -------------------------------------------------------------------------------- /test-lldb-with-swiftpm/Sources/exec/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-lldb-with-swiftpm/Sources/exec/main.swift -------------------------------------------------------------------------------- /test-multi-compile-glibc/goodbye.swift: -------------------------------------------------------------------------------- 1 | hello() 2 | -------------------------------------------------------------------------------- /test-multi-compile-glibc/hello.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-multi-compile-glibc/hello.swift -------------------------------------------------------------------------------- /test-multi-compile-glibc/main.swift: -------------------------------------------------------------------------------- 1 | hello() 2 | -------------------------------------------------------------------------------- /test-multi-compile-glibc/swift-multi-compile-glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-multi-compile-glibc/swift-multi-compile-glibc.py -------------------------------------------------------------------------------- /test-multi-compile/goodbye.swift: -------------------------------------------------------------------------------- 1 | hello() 2 | -------------------------------------------------------------------------------- /test-multi-compile/hello.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-multi-compile/hello.swift -------------------------------------------------------------------------------- /test-multi-compile/main.swift: -------------------------------------------------------------------------------- 1 | hello() 2 | -------------------------------------------------------------------------------- /test-multi-compile/swift-multi-compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-multi-compile/swift-multi-compile.py -------------------------------------------------------------------------------- /test-snapshot-binaries/linux_load_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-snapshot-binaries/linux_load_commands.py -------------------------------------------------------------------------------- /test-snapshot-binaries/test-rpath-linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-snapshot-binaries/test-rpath-linux.py -------------------------------------------------------------------------------- /test-snapshot-binaries/test-universal-darwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-snapshot-binaries/test-universal-darwin.py -------------------------------------------------------------------------------- /test-sourcekit-lsp/pkg/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-sourcekit-lsp/pkg/Package.swift -------------------------------------------------------------------------------- /test-sourcekit-lsp/pkg/Sources/clib/clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-sourcekit-lsp/pkg/Sources/clib/clib.c -------------------------------------------------------------------------------- /test-sourcekit-lsp/pkg/Sources/clib/include/clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-sourcekit-lsp/pkg/Sources/clib/include/clib.h -------------------------------------------------------------------------------- /test-sourcekit-lsp/pkg/Sources/exec/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-sourcekit-lsp/pkg/Sources/exec/main.swift -------------------------------------------------------------------------------- /test-sourcekit-lsp/pkg/Sources/lib/lib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-sourcekit-lsp/pkg/Sources/lib/lib.swift -------------------------------------------------------------------------------- /test-sourcekit-lsp/test-sourcekit-lsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-sourcekit-lsp/test-sourcekit-lsp.py -------------------------------------------------------------------------------- /test-static-lib/main.swift: -------------------------------------------------------------------------------- 1 | import staticLib 2 | 3 | hello() 4 | -------------------------------------------------------------------------------- /test-static-lib/staticLib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-static-lib/staticLib.swift -------------------------------------------------------------------------------- /test-static-lib/test-static-lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-static-lib/test-static-lib.py -------------------------------------------------------------------------------- /test-static-stdlib/dispatch_test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-static-stdlib/dispatch_test.swift -------------------------------------------------------------------------------- /test-static-stdlib/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-static-stdlib/main.swift -------------------------------------------------------------------------------- /test-static-stdlib/test-dispatch-static-stdlib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-static-stdlib/test-dispatch-static-stdlib.test -------------------------------------------------------------------------------- /test-static-stdlib/test-static-stdlib.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-static-stdlib/test-static-stdlib.test -------------------------------------------------------------------------------- /test-swift-docc/DocCTest/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-swift-docc/DocCTest/Package.swift -------------------------------------------------------------------------------- /test-swift-docc/DocCTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-swift-docc/DocCTest/README.md -------------------------------------------------------------------------------- /test-swift-docc/DocCTest/Sources/DocCTest/DocCTest.docc/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-swift-docc/DocCTest/Sources/DocCTest/DocCTest.docc/Documentation.md -------------------------------------------------------------------------------- /test-swift-docc/DocCTest/Sources/DocCTest/DocCTest.docc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-swift-docc/DocCTest/Sources/DocCTest/DocCTest.docc/Info.plist -------------------------------------------------------------------------------- /test-swift-docc/DocCTest/Sources/DocCTest/DocCTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-swift-docc/DocCTest/Sources/DocCTest/DocCTest.swift -------------------------------------------------------------------------------- /test-swift-docc/test-swift-docc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-swift-docc/test-swift-docc.txt -------------------------------------------------------------------------------- /test-swift-testing-package/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-swift-testing-package/Tests.swift -------------------------------------------------------------------------------- /test-swift-testing-package/test-swift-testing-package.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-swift-testing-package/test-swift-testing-package.txt -------------------------------------------------------------------------------- /test-xctest-package/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-xctest-package/main.swift -------------------------------------------------------------------------------- /test-xctest-package/test-xctest-package.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/test-xctest-package/test-xctest-package.txt -------------------------------------------------------------------------------- /wasm/Hello/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/wasm/Hello/.gitignore -------------------------------------------------------------------------------- /wasm/Hello/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/wasm/Hello/Package.swift -------------------------------------------------------------------------------- /wasm/Hello/Sources/Hello/Hello.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/wasm/Hello/Sources/Hello/Hello.swift -------------------------------------------------------------------------------- /wasm/Hello/Tests/HelloTests/HelloTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/wasm/Hello/Tests/HelloTests/HelloTests.swift -------------------------------------------------------------------------------- /wasm/swiftpm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swiftlang/swift-integration-tests/HEAD/wasm/swiftpm.md --------------------------------------------------------------------------------