@@ -103,6 +103,7 @@ func main() {
103
103
104
104
colors. withUnsafeBufferPointer {
105
105
let buf = $0
106
+ print ( " break " )
106
107
//% self.expect("frame variable -d run-target buf",
107
108
//% patterns=[
108
109
//% '\(UnsafeBufferPointer<(.*)\.ColorCode>\) buf = 2 values \(0[xX][0-9a-fA-F]+\) {',
@@ -139,6 +140,7 @@ func main() {
139
140
140
141
numbers. withUnsafeBufferPointer {
141
142
let buf = $0
143
+ print ( " break " )
142
144
//% self.expect("frame variable -d run-target buf",
143
145
//% patterns=[
144
146
//% '\(UnsafeBufferPointer<(.*)\.Number<Double>>\) buf = 2 values \(0[xX][0-9a-fA-F]+\) {',
@@ -153,20 +155,23 @@ func main() {
153
155
bytes. withUnsafeBufferPointer {
154
156
let buf = $0
155
157
let rawbuf = UnsafeRawBufferPointer ( buf)
158
+ print ( " break " )
156
159
//% self.expect("frame variable -d run-target rawbuf",
157
160
//% patterns=[
158
161
//% '\(UnsafeRawBufferPointer\) rawbuf = 256 values \(0[xX][0-9a-fA-F]+\) {',
159
162
//% '\[([0-9]+)\] = (\\1)'
160
163
//% ])
161
164
typealias ByteBuffer = UnsafeRawBufferPointer ;
162
165
let alias = rawbuf as ByteBuffer
166
+ print ( " break " )
163
167
//% self.expect("frame variable -d run-target alias",
164
168
//% patterns=[
165
169
//% '\(ByteBuffer\) alias = 256 values \(0[xX][0-9a-fA-F]+\) {',
166
170
//% '\[([0-9]+)\] = (\\1)',
167
171
//% ])
168
172
typealias ByteBufferAlias = ByteBuffer
169
173
let secondAlias = alias as ByteBufferAlias
174
+ print ( " break " )
170
175
//% self.expect("frame variable -d run-target secondAlias",
171
176
//% patterns=[
172
177
//% '\(ByteBufferAlias\) secondAlias = 256 values \(0[xX][0-9a-fA-F]+\) {',
0 commit comments