Skip to content

Commit

Permalink
Fix Linux test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
eneko committed Aug 29, 2018
1 parent 5973821 commit d20eb67
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Tests/LinuxMain.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import XCTest

import systemTests
import SystemTests

var tests = [XCTestCaseEntry]()
tests += systemTests.allTests()
XCTMain(tests)
tests += SystemTests.allTests()
XCTMain(tests)
4 changes: 3 additions & 1 deletion Tests/SystemTests/XCTestManifests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d20eb67

Please sign in to comment.