forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal_resilience.swift
89 lines (67 loc) · 2.49 KB
/
global_resilience.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// RUN: rm -rf %t && mkdir -p %t
// RUN: %target-build-swift -emit-library -I %t -Xfrontend -enable-resilience -c %S/../Inputs/resilient_global.swift -o %t/resilient_global.o
// RUN: %target-build-swift -emit-module -I %t -Xfrontend -enable-resilience -c %S/../Inputs/resilient_global.swift -o %t/resilient_global.o
// RUN: %target-build-swift -emit-library -I %t -Xfrontend -enable-resilience -c %S/../Inputs/resilient_struct.swift -o %t/resilient_struct.o
// RUN: %target-build-swift -emit-module -I %t -Xfrontend -enable-resilience -c %S/../Inputs/resilient_struct.swift -o %t/resilient_struct.o
// RUN: %target-build-swift %s -Xlinker %t/resilient_global.o -Xlinker %t/resilient_struct.o -I %t -L %t -o %t/main
// RUN: %target-run %t/main
// REQUIRES: executable_test
import StdlibUnittest
import resilient_global
import resilient_struct
var ResilientGlobalTestSuite = TestSuite("ResilientGlobal")
//
// Fits inside a buffer's inline storage.
//
public struct MySmallResilientStruct {
let x: Int32
}
let mySmallGlobal = MySmallResilientStruct(x: 1)
ResilientGlobalTestSuite.test("MySmallGlobal") {
expectEqual(1, mySmallGlobal.x)
}
//
// Requires out-of-line allocation.
//
public struct MyLargeResilientStruct {
let w: Int64
let x: Int64
let y: Int64
let z: Int64
}
var myLargeGlobal = MyLargeResilientStruct(w: 1, x: 2, y: 3, z: 4)
ResilientGlobalTestSuite.test("MyLargeGlobal") {
expectEqual(1, myLargeGlobal.w)
expectEqual(2, myLargeGlobal.x)
expectEqual(3, myLargeGlobal.y)
expectEqual(4, myLargeGlobal.z)
myLargeGlobal = MyLargeResilientStruct(w: 5, x: 6, y: 7, z: 8)
expectEqual(5, myLargeGlobal.w)
expectEqual(6, myLargeGlobal.x)
expectEqual(7, myLargeGlobal.y)
expectEqual(8, myLargeGlobal.z)
}
let myLargeGlobalUninitialized: MyLargeResilientStruct
myLargeGlobalUninitialized = MyLargeResilientStruct(w: 9, x: 10, y: 11, z: 12)
ResilientGlobalTestSuite.test("MyLargeGlobal") {
expectEqual(9, myLargeGlobalUninitialized.w)
expectEqual(10, myLargeGlobalUninitialized.x)
expectEqual(11, myLargeGlobalUninitialized.y)
expectEqual(12, myLargeGlobalUninitialized.z)
}
//
// Unknown size -- must call value witness functions for buffer
// management.
//
let myOtherGlobal = Size(w: 10, h: 15)
ResilientGlobalTestSuite.test("MyOtherGlobal") {
expectEqual(10, myOtherGlobal.w)
expectEqual(15, myOtherGlobal.h)
}
//
// Global variable is itself defined in a different module.
//
ResilientGlobalTestSuite.test("OtherGlobal") {
expectEqual(1337, emptyGlobal.computed)
}
runAllTests()