File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
.swiftpm/xcode/xcshareddata/xcschemes Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 82
82
</BuildableReference >
83
83
</TestableReference >
84
84
<TestableReference
85
- skipped = " NO" >
85
+ skipped = " NO"
86
+ parallelizable = " NO" >
86
87
<BuildableReference
87
88
BuildableIdentifier = " primary"
88
89
BlueprintIdentifier = " OSCKitTests"
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ struct OSCServer_Tests {
31
31
}
32
32
33
33
/// Ensure rapidly received messages are dispatched in the order they are received.
34
- @Test ( arguments: 0 ... 10 )
34
+ @MainActor @ Test ( arguments: 0 ... 10 )
35
35
func messageOrdering( iteration: Int ) async throws {
36
36
_ = iteration // argument value not used, just a mechanism to repeat the test X number of times
37
37
@@ -83,7 +83,7 @@ struct OSCServer_Tests {
83
83
}
84
84
85
85
/// Offline stress-test to ensure a large volume of OSC packets are received and dispatched in order.
86
- @Test
86
+ @MainActor @ Test
87
87
func stressTestOffline( ) async throws {
88
88
let server = OSCServer ( )
89
89
@@ -126,7 +126,7 @@ struct OSCServer_Tests {
126
126
}
127
127
128
128
/// Online stress-test to ensure a large volume of OSC packets are received and dispatched in order.
129
- @Test
129
+ @MainActor @ Test
130
130
func stressTestOnline( ) async throws {
131
131
let isFlakey = !isSystemTimingStable( )
132
132
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ struct OSCSocket_Tests {
31
31
}
32
32
33
33
/// Ensure rapidly received messages are dispatched in the order they are received.
34
- @Test ( arguments: 0 ... 10 )
34
+ @MainActor @ Test ( arguments: 0 ... 10 )
35
35
func messageOrdering( iteration: Int ) async throws {
36
36
_ = iteration // argument value not used, just a mechanism to repeat the test X number of times
37
37
@@ -83,7 +83,7 @@ struct OSCSocket_Tests {
83
83
}
84
84
85
85
/// Offline stress-test to ensure a large volume of OSC packets are received and dispatched in order.
86
- @Test
86
+ @MainActor @ Test
87
87
func stressTestOffline( ) async throws {
88
88
let socket = OSCSocket (
89
89
localPort: nil ,
@@ -135,7 +135,7 @@ struct OSCSocket_Tests {
135
135
}
136
136
137
137
/// Online stress-test to ensure a large volume of OSC packets are received and dispatched in order.
138
- @Test
138
+ @MainActor @ Test
139
139
func stressTestOnline( ) async throws {
140
140
let isFlakey = !isSystemTimingStable( )
141
141
You can’t perform that action at this time.
0 commit comments