From d20eb67f31b5e8c0e2a41a78f67dc834dce4e53c Mon Sep 17 00:00:00 2001 From: Eneko Alonso Date: Tue, 28 Aug 2018 20:06:37 -0700 Subject: [PATCH] Fix Linux test cases --- Tests/LinuxMain.swift | 6 +++--- Tests/SystemTests/XCTestManifests.swift | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) 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