Files
swift-mirror/test/Interop/Cxx/foreign-reference/Inputs/module.modulemap
Egor Zhdan b16816b4ee [cxx-interop] Disable test with an older runtime
848fad00 introduced support for printing foreign reference types. It changes both the compiler and the runtime, and having the runtime change applied is required for the test to pass. Let's not try to run it with an old runtime.

This change also splits up a test for printing of value types from a test for printing of foreign reference types, since we don't have any runtime restrictions for value types.

rdar://153205860
(cherry picked from commit 62d56067c8)
2025-06-23 18:16:24 +01:00

71 lines
1.1 KiB
Plaintext

module Constructor {
header "constructor.h"
requires cplusplus
}
module POD {
header "pod.h"
requires cplusplus
}
module MoveOnly {
header "move-only.h"
requires cplusplus
}
module Singleton {
header "singleton.h"
requires cplusplus
}
module Nullable {
header "nullable.h"
requires cplusplus
}
module Inheritance {
header "inheritance.h"
requires cplusplus
}
module WitnessTable {
header "witness-table.h"
requires cplusplus
}
module ReferenceCounted {
header "reference-counted.h"
requires cplusplus
}
module ReferenceCountedObjCProperty {
header "reference-counted-objc-property.h"
requires cplusplus
export *
}
module MemberLayout {
header "member-layout.h"
requires cplusplus
}
module MemberInheritance {
header "member-inheritance.h"
requires cplusplus
}
module DerivedFieldGetterReturnsOwnedFRT {
header "derived-field-getter-returns-owned-frt.h"
requires cplusplus
}
module FunctionsAndMethodsReturningFRT {
header "cxx-functions-and-methods-returning-frt.h"
requires cplusplus
}
module Printed {
header "printed.h"
requires cplusplus
}