// RUN: %empty-directory(%t) // RUN: %target-build-swift %s -parse-as-library -Onone -o %t/ImageMap // RUN: %target-codesign %t/ImageMap // RUN: %target-run %t/ImageMap | %FileCheck %s // UNSUPPORTED: use_os_stdlib // UNSUPPORTED: back_deployment_runtime // REQUIRES: executable_test // REQUIRES: backtracing // REQUIRES: OS=macosx || OS=linux-gnu import Runtime @main struct ImageMapTest { static func main() { let map = ImageMap.capture() // We expect ImageMap, followed by one or more additional lines // CHECK: {{0x[0-9a-f]*-0x[0-9a-f]*}} {{(|[0-9a-f]*)}} ImageMap {{.*}}/ImageMap // CHECK-NEXT: {{0x[0-9a-f]*-0x[0-9a-f]*}} {{(|[0-9a-f]*)}} [[NAME:[^ ]*]] {{.*}}/[[NAME]] print(map) } }