Skip to content

Commit 4c5a13a

Browse files
committed
Moar test fixes
1 parent cedea94 commit 4c5a13a

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

stdlib/public/core/Slab.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ extension Slab where Element: ~Copyable {
347347
}
348348

349349
//===----------------------------------------------------------------------===//
350-
// Reduce and Swap
350+
// Swap
351351
//===----------------------------------------------------------------------===//
352352

353353
@available(SwiftStdlib 6.1, *)

test/DebugInfo/value-generics-embedded.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// RUN: %target-swift-frontend %s -target %target-cpu-apple-macos14 -emit-ir -g -enable-experimental-feature ValueGenerics -enable-experimental-feature Embedded -wmo -disable-availability-checking -o - | %FileCheck %s
22

3+
// REQUIRES: OS=macosx
4+
35
// REQUIRES: swift_feature_Embedded
46
// REQUIRES: swift_feature_ValueGenerics
57

test/Sema/typo_correction.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import NoSuchModule
1010

1111
// This is close enough to get typo-correction.
1212
func test_short_and_close() {
13-
let plop = 4 // expected-note {{'plop' declared here}}
13+
let plop = 4 // expected-note {{did you mean 'plop'?}}
1414
let bab = plob + 1
1515
// expected-error@-1 {{cannot find 'plob' in scope}}
1616
}

test/abi/macOS/x86_64/stdlib.swift

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -810,3 +810,15 @@ Added: _$ss13_SwiftifyInfoON
810810

811811
// Eager-lazy Array bridging
812812
Added: _$ss12_ArrayBufferV14associationKeySVvpZMV
813+
814+
// Slab metadata accessor
815+
Added: _$ss4SlabVMa
816+
817+
// Slab nominal type descriptor
818+
Added: _$ss4SlabVMn
819+
820+
// Slab.count property descriptor
821+
Added: _$ss4SlabVsRi__rlE5countSivpZMV
822+
823+
// Slab._storage _read accessor
824+
Added: _$ss4SlabVsRi__rlE8_storagexq_BVvr

0 commit comments

Comments
 (0)