Skip to content

Commit

Permalink
Remove redundant "cxx" from test names.
Browse files Browse the repository at this point in the history
  • Loading branch information
martinboehme authored and zoecarver committed Oct 9, 2020
1 parent b2c5a3e commit 3066e16
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions test/Interop/Cxx/class/Inputs/module.modulemap
Expand Up @@ -6,8 +6,8 @@ module TypeClassification {
header "type-classification.h"
}

module CxxConstructors {
header "cxx-constructors.h"
module Constructors {
header "constructors.h"
}

module MemberwiseInitializer {
Expand Down
Expand Up @@ -3,7 +3,7 @@
// REQUIRES: executable_test

import StdlibUnittest
import CxxConstructors
import Constructors

var CxxConstructorTestSuite = TestSuite("CxxConstructors")

Expand Down
Expand Up @@ -4,7 +4,7 @@
// 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
// 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

import CxxConstructors
import Constructors

typealias Void = ()

Expand Down
@@ -1,4 +1,4 @@
// RUN: %target-swift-ide-test -print-module -module-to-print=CxxConstructors -I %S/Inputs/ -source-filename=x -enable-cxx-interop | %FileCheck %s
// RUN: %target-swift-ide-test -print-module -module-to-print=Constructors -I %S/Inputs/ -source-filename=x -enable-cxx-interop | %FileCheck %s

// CHECK: struct ExplicitDefaultConstructor {
// CHECK-NEXT: var x: Int32
Expand Down
@@ -1,6 +1,6 @@
// RUN: %target-swift-frontend -I %S/Inputs -enable-cxx-interop -emit-sil %s | %FileCheck %s

import CxxConstructors
import Constructors

// The most important thing to test here is that the constructor result is returned
// with an @out attribute.
Expand Down
@@ -1,6 +1,6 @@
// RUN: %target-typecheck-verify-swift -verify-ignore-unknown -I %S/Inputs -enable-cxx-interop

import CxxConstructors
import Constructors

let explicit = ExplicitDefaultConstructor()

Expand Down

0 comments on commit 3066e16

Please sign in to comment.