Skip to content

Commit 19252de

Browse files
committed
Merge pull request #29 from dcci/freebsd
First steps to make xctest working on FreeBSD.
2 parents 75d601c + b1a8789 commit 19252de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

XCTest/XCTestMain.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// for running tests and some infrastructure for running them.
1313
//
1414

15-
#if os(Linux)
15+
#if os(Linux) || os(FreeBSD)
1616
import Glibc
1717
#else
1818
import Darwin

XCTest/XCTimeUtilities.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// Some simple functions for working with "time intervals".
1212
//
1313

14-
#if os(Linux)
14+
#if os(Linux) || os(FreeBSD)
1515
import Glibc
1616
#else
1717
import Darwin

0 commit comments

Comments
 (0)