We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
clock_gettime
1 parent 61d4df9 commit 80e1e94Copy full SHA for 80e1e94
Sources/Testing/Events/Clock.swift
@@ -41,7 +41,13 @@ extension Test {
41
/// The wall-clock time corresponding to this instant.
42
fileprivate(set) var wall: TimeValue = {
43
var wall = timespec()
44
+#if os(Android)
45
+ // Android headers recommend `clock_gettime` over `timespec_get` which
46
+ // is available with API Level 29+ for `TIME_UTC`.
47
+ clock_gettime(CLOCK_REALTIME, &wall)
48
+#else
49
timespec_get(&wall, TIME_UTC)
50
+#endif
51
return TimeValue(wall)
52
}()
53
#endif
0 commit comments