mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
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
71 lines
1.1 KiB
Plaintext
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
|
|
}
|