Skip to content

Commit 3066e16

Browse files
martinboehmezoecarver
authored andcommitted
Remove redundant "cxx" from test names.
1 parent b2c5a3e commit 3066e16

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

test/Interop/Cxx/class/Inputs/module.modulemap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ module TypeClassification {
66
header "type-classification.h"
77
}
88

9-
module CxxConstructors {
10-
header "cxx-constructors.h"
9+
module Constructors {
10+
header "constructors.h"
1111
}
1212

1313
module MemberwiseInitializer {

test/Interop/Cxx/class/cxx-constructors-executable.swift renamed to test/Interop/Cxx/class/constructors-executable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// REQUIRES: executable_test
44

55
import StdlibUnittest
6-
import CxxConstructors
6+
import Constructors
77

88
var CxxConstructorTestSuite = TestSuite("CxxConstructors")
99

test/Interop/Cxx/class/cxx-constructors-ir.swift renamed to test/Interop/Cxx/class/constructors-ir.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// RUN: %swift -module-name Swift -target armv7-none-linux-androideabi -dump-clang-diagnostics -I %S/Inputs -enable-cxx-interop -emit-ir %s -parse-stdlib -parse-as-library -disable-legacy-type-info | %FileCheck %s -check-prefix=ITANIUM_ARM
55
// RUN: %swift -module-name Swift -target x86_64-unknown-windows-msvc -dump-clang-diagnostics -I %S/Inputs -enable-cxx-interop -emit-ir %s -parse-stdlib -parse-as-library -disable-legacy-type-info | %FileCheck %s -check-prefix=MICROSOFT_X64
66

7-
import CxxConstructors
7+
import Constructors
88

99
typealias Void = ()
1010

test/Interop/Cxx/class/cxx-constructors-module-interface.swift renamed to test/Interop/Cxx/class/constructors-module-interface.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %target-swift-ide-test -print-module -module-to-print=CxxConstructors -I %S/Inputs/ -source-filename=x -enable-cxx-interop | %FileCheck %s
1+
// RUN: %target-swift-ide-test -print-module -module-to-print=Constructors -I %S/Inputs/ -source-filename=x -enable-cxx-interop | %FileCheck %s
22

33
// CHECK: struct ExplicitDefaultConstructor {
44
// CHECK-NEXT: var x: Int32

test/Interop/Cxx/class/cxx-constructors-sil.swift renamed to test/Interop/Cxx/class/constructors-sil.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// RUN: %target-swift-frontend -I %S/Inputs -enable-cxx-interop -emit-sil %s | %FileCheck %s
22

3-
import CxxConstructors
3+
import Constructors
44

55
// The most important thing to test here is that the constructor result is returned
66
// with an @out attribute.

test/Interop/Cxx/class/cxx-constructors-typecheck.swift renamed to test/Interop/Cxx/class/constructors-typechecker.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// RUN: %target-typecheck-verify-swift -verify-ignore-unknown -I %S/Inputs -enable-cxx-interop
22

3-
import CxxConstructors
3+
import Constructors
44

55
let explicit = ExplicitDefaultConstructor()
66

0 commit comments

Comments
 (0)