Skip to content

Test: Mark an Integration tests as intermittent #8505

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions IntegrationTests/Tests/IntegrationTests/SwiftPMTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,14 @@ private struct SwiftPMTests {
let packagePath = tmpDir.appending(component: "foo")
try localFileSystem.createDirectory(packagePath)
try sh(swiftPackage, "--package-path", packagePath, "init", "--type", "library")
try withKnownIssue("""
try withKnownIssue(
"""
Linux: /lib/x86_64-linux-gnu/Scrt1.o:function _start: error: undefined reference to 'main'
Windows: lld-link: error: subsystem must be defined
MacOS: Could not find or use auto-linked library 'Testing': library 'Testing' not found
""") {
""",
isIntermittent: true
) {
try sh(swiftBuild, "--package-path", packagePath, "--build-system", buildSystemProvider.rawValue, "--vv")
let (stdout, stderr) = try sh(
swiftTest, "--package-path", packagePath, "--build-system", buildSystemProvider.rawValue, "--vv"
Expand Down