diff --git a/Tests/LinuxMain.swift b/Tests/LinuxMain.swift index 85b0871..b43fa6c 100644 --- a/Tests/LinuxMain.swift +++ b/Tests/LinuxMain.swift @@ -1,7 +1,7 @@ import XCTest -import systemTests +import SystemTests var tests = [XCTestCaseEntry]() -tests += systemTests.allTests() -XCTMain(tests) \ No newline at end of file +tests += SystemTests.allTests() +XCTMain(tests) diff --git a/Tests/SystemTests/XCTestManifests.swift b/Tests/SystemTests/XCTestManifests.swift index c895f66..381ba53 100644 --- a/Tests/SystemTests/XCTestManifests.swift +++ b/Tests/SystemTests/XCTestManifests.swift @@ -3,7 +3,9 @@ import XCTest #if !os(macOS) public func allTests() -> [XCTestCaseEntry] { return [ - testCase(StandardOutputTests.allTests), + testCase(StandardErrorTests.allTests), + testCase(StandardOutputTests.allTests), + testCase(SuccessFailureTests.allTests), ] } #endif