mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Fix two IRGen tests that are failing on Android armv7 and disable eight ClangImporter, C++ Interop, and SILOptimizer tests, two of which that were already failing on other 32-bit platforms.
10 lines
467 B
Swift
10 lines
467 B
Swift
// RUN: %target-swift-ide-test -print-module -module-to-print=Constructors -I %S/Inputs -source-filename=x -enable-experimental-cxx-interop | %FileCheck %s
|
|
// XFAIL: OS=linux-androideabi
|
|
|
|
// CHECK: struct TemplatedCopyConstructor
|
|
// CHECK: struct TemplatedCopyConstructorWithExtraArg
|
|
|
|
// Make sure we don't import non-copyable types because we will have no way to
|
|
// represent and copy/move these in swift with correct semantics.
|
|
// CHECK-NOT: DeletedCopyConstructor
|