Skip to content

Commit 5343eba

Browse files
committed
Make tests import new Synchronization module
1 parent db9b883 commit 5343eba

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

test/stdlib/Atomics/AtomicLazyReference.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// RUN: %target-run-simple-swift
22
// REQUIRES: executable_test
33

4+
import Synchronization
45
import StdlibUnittest
56

67
let suite = TestSuite("AtomicLazyReference")

test/stdlib/Atomics/Basics/Tests.gyb-template

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
/// Exercises all operations in a single-threaded context, verifying
88
/// they provide the expected results.
99

10+
import Synchronization
1011
import StdlibUnittest
1112

1213
% for label, type, a, b in types:

test/stdlib/Atomics/LockFreeSingleConsumerStack.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// REQUIRES: executable_test
33
// REQUIRES: libdispatch
44

5+
import Synchronization
56
import StdlibUnittest
67
import Dispatch
78

test/stdlib/Atomics/WordPair.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// RUN: %target-run-simple-swift
22
// REQUIRES: executable_test
33

4+
import Synchronization
45
import StdlibUnittest
56

67
let suite = TestSuite("WordPairTests")

0 commit comments

Comments
 (0)