Skip to content

test: temporarily skip testBaselineGenerationEndToEnd to unblock CI #804

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

Merged
merged 3 commits into from
Aug 24, 2021
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions Tests/SwiftDriverTests/APIDigesterTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,8 @@ class APIDigesterTests: XCTestCase {
}

func testBaselineGenerationEndToEnd() throws {
// rdar://82302797
throw XCTSkip()
try withTemporaryDirectory { path in
try localFileSystem.changeCurrentWorkingDirectory(to: path)
let source = path.appending(component: "foo.swift")
Expand Down
4 changes: 4 additions & 0 deletions Tests/SwiftDriverTests/CrossModuleIncrementalBuildTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ class CrossModuleIncrementalBuildTests: XCTestCase {
}

func testChangingOutputFileMap() throws {
// rdar://82304093
throw XCTSkip()
try withTemporaryDirectory { path in
try localFileSystem.changeCurrentWorkingDirectory(to: path)
let magic = path.appending(component: "magic.swift")
Expand Down Expand Up @@ -94,6 +96,8 @@ class CrossModuleIncrementalBuildTests: XCTestCase {
}

func testEmbeddedModuleDependencies() throws {
// rdar://82304093
throw XCTSkip()
try withTemporaryDirectory { path in
try localFileSystem.changeCurrentWorkingDirectory(to: path)
do {
Expand Down
4 changes: 4 additions & 0 deletions Tests/SwiftDriverTests/NonincrementalCompilationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,8 @@ final class NonincrementalCompilationTests: XCTestCase {
}

func testShowJobLifecycleAndIncremental() throws {
// rdar://82304093
throw XCTSkip()
// Legacy MacOS driver output:
// Adding standard job to task queue: {compile: main.o <= main.swift}
// Added to TaskQueue: {compile: main.o <= main.swift}
Expand All @@ -319,6 +321,8 @@ final class NonincrementalCompilationTests: XCTestCase {

}
func testNoIncremental() throws {
// rdar://82304093
throw XCTSkip()
try runDriver( with: [
"-c",
"-incremental",
Expand Down