Skip to content

Commit 28d8ca4

Browse files
authored
Merge pull request swiftlang#15136 from gottesmm/pr-f6b76d7fa0590c2dec1bdb90a95150f684ee40e6
[+0-all-args] Mark all tests that will need updates for +0 as requiri…
2 parents 763bbf9 + e6e55df commit 28d8ca4

File tree

211 files changed

+214
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+214
-3
lines changed

test/ClangImporter/objc_ir.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// REQUIRES: plus_one_runtime
12
// RUN: %empty-directory(%t)
23
// RUN: %build-clang-importer-objc-overlays
34
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk-nosource -I %t) -I %S/Inputs/custom-modules -emit-ir -g -o - -primary-file %s | %FileCheck %s

test/ClangImporter/optional.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// REQUIRES: plus_one_runtime
12
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -I %S/Inputs/custom-modules -emit-silgen -o - %s | %FileCheck %s
23

34
// REQUIRES: objc_interop

test/ClangImporter/serialization-sil.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// REQUIRES: plus_one_runtime
12
// RUN: %empty-directory(%t)
23
// RUN: %target-swift-frontend -emit-module-path %t/Test.swiftmodule -emit-sil -o /dev/null -module-name Test %s -sdk "" -import-objc-header %S/Inputs/serialization-sil.h
34
// RUN: %target-sil-func-extractor %t/Test.swiftmodule -sil-print-debuginfo -func='$S4Test16testPartialApplyyySoAA_pF' -o - | %FileCheck %s

test/DebugInfo/closure-multivalue.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// REQUIRES: plus_one_runtime
12
// rdar://problem/23727705:
23
// RUN-DISABLED: %target-swift-frontend -O %s -disable-llvm-optzns -emit-ir -g -o - | %FileCheck %s
34
import StdlibUnittest
@@ -35,8 +36,8 @@ demo()
3536
// Verify that a reabstraction thunk does not have a line number.
3637
// CHECK-O0-NOT: DW_OP_bit_piece
3738
// CHECK-O0-NOT: DW_OP_bit_piece
38-
// CHECK-O0: !DILocalVariable(name: "a", arg: 1{{.*}} line: 17,
39+
// CHECK-O0: !DILocalVariable(name: "a", arg: 1{{.*}} line: 18,
3940
// CHECK-O0-NOT: DW_OP_bit_piece
40-
// CHECK-O0: !DILocalVariable(name: "b", arg: 2{{.*}} line: 17,
41+
// CHECK-O0: !DILocalVariable(name: "b", arg: 2{{.*}} line: 18,
4142
// CHECK-O0-NOT: DW_OP_bit_piece
4243
// CHECK-O0: !DISubprogram(linkageName: "$SS2SSbs5Error_pIgxxdzo_S2SSbsAA_pIegiidzo_TR",

test/DebugInfo/generic_args.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// REQUIRES: plus_one_runtime
12
// RUN: %target-swift-frontend -primary-file %s -emit-ir -verify -g -o - | %FileCheck %s
23

34
func markUsed<T>(_ t: T) {}

test/DebugInfo/resilience.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// REQUIRES: plus_one_runtime
12
// RUN: %empty-directory(%t)
23
//
34
// Compile the external swift module.

test/IRGen/big_types_corner_cases.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// REQUIRES: plus_one_runtime
12
// RUN: %target-swift-frontend -assume-parsing-unqualified-ownership-sil -enable-large-loadable-types %s -emit-ir | %FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-%target-ptrsize
23
// REQUIRES: optimized_stdlib
34
// UNSUPPORTED: resilient_stdlib

test/IRGen/builtins.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// REQUIRES: plus_one_runtime
12
// RUN: %target-swift-frontend -assume-parsing-unqualified-ownership-sil -parse-stdlib -primary-file %s -emit-ir -o - -disable-objc-attr-requires-foundation-module | %FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-%target-runtime
23

34
// REQUIRES: CPU=x86_64

test/IRGen/class_bounded_generics.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// REQUIRES: plus_one_runtime
12
// RUN: %target-swift-frontend -emit-ir -primary-file %s -disable-objc-attr-requires-foundation-module | %FileCheck %s
23

34
// REQUIRES: CPU=x86_64

test/IRGen/enum_resilience.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// REQUIRES: plus_one_runtime
12
// RUN: %empty-directory(%t)
23
// RUN: %target-swift-frontend -emit-module -enable-resilience -emit-module-path=%t/resilient_struct.swiftmodule -module-name=resilient_struct %S/../Inputs/resilient_struct.swift
34
// RUN: %target-swift-frontend -emit-module -enable-resilience -emit-module-path=%t/resilient_enum.swiftmodule -module-name=resilient_enum -I %t %S/../Inputs/resilient_enum.swift

0 commit comments

Comments
 (0)