Skip to content

Commit 3f823dc

Browse files
committed
Add LinuxMain for tests w/ Swift <5.4
1 parent 45df726 commit 3f823dc

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Tests/LinuxMain.swift

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import XCTest
2+
3+
@testable import SignalHandlingTests
4+
5+
var tests: [XCTestCaseEntry] = [
6+
testCase([
7+
("testNSConditionLock", NSConditionLockTest.testNSConditionLock),
8+
]),
9+
testCase([
10+
("testBasicSignalDelayByUnsigaction", SignalHandlingTests.testBasicSignalDelayByUnsigaction),
11+
("testBasicSignalDelayByBlock", SignalHandlingTests.testBasicSignalDelayByBlock),
12+
]),
13+
]
14+
XCTMain(tests)

0 commit comments

Comments
 (0)