Files
swift-mirror/test/DebugInfo/ASTSection.swift
Michael Gottesman 828437948b [tests] Add support for running executable tests when SWIFT_INCLUDE_TOOLS is set to false.
The two changes here are that:

1. We do not create dependencies from lit on the non-existant swift tools.
2. I added a lit feature called 'swift_tools_extra' that marks some executable
tests that use extra tools that we build normally but that are not put in
toolchains.
2019-05-28 17:21:31 -07:00

32 lines
761 B
Swift

// RUN: %empty-directory(%t)
// RUN: %target-build-swift -emit-executable %s -g -o %t/ASTSection -emit-module
// RUN: %lldb-moduleimport-test -verbose %t/ASTSection | %FileCheck %s
// REQUIRES: executable_test
// REQUIRES: swift_tools_extra
// The test ASTSection_linker.swift builds this code with separate
// compile and link steps.
// The test ASTSection_ObjC.swift builds this code with -DOBJC.
// A type that should be serialized.
class Foo {
init() { }
func bar() -> Int64 { return 42 }
}
// Some toplevel code that should not be serialized.
var foo: Foo = Foo()
Double(foo.bar())
#if OBJC
func objCUser(_ obj: ObjCClass) {}
#endif
// CHECK: - Target: {{.+}}-{{.+}}-{{.+}}
// CHECK: Importing ASTSection... ok!
// LINETABLE-CHECK-NOT: ASTSection