aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/Shell/Expr/TestObjCIncompleteSuperclass.test
blob: 22296f3e30a438805fe352d77885a27262fbd070 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# In this test we compile with -gmodules but delete the ModuleCache.
# When LLDB tries to find a definition for NSObject (the Foo's super-class)
# it will fail to do so. LLDB should handle this situation gracefully.
# A super-class definition is required when laying out Obj-C types.
#
# REQUIRES: system-darwin
#
# RUN: split-file %s %t
#
# RUN: %clang_host %t/main.m -c -g -gmodules -fmodules -fcxx-modules \
# RUN:             -fmodule-map-file=%t/module.modulemap \
# RUN:             -fmodules-cache-path=%t/ModuleCache -o %t/main.o
#
# RUN: %clang_host %t/module.m -c -g -gmodules -fmodules -fcxx-modules \
# RUN:             -fmodule-map-file=%t/module.modulemap \
# RUN:             -fmodules-cache-path=%t/ModuleCache -o %t/module.o
#
# RUN: %clang_host %t/*.o -framework Foundation -o %t.out
#
# RUN: rm -r %t/ModuleCache
#
# RUN: %lldb -x -o "settings set interpreter.stop-command-source-on-error false" \
# RUN:       -s %t/commands.input %t.out -o exit 2>&1 | FileCheck %s

#--- main.m
@import foo;

int main() {
    Foo *f = [Foo new];

    __builtin_debugtrap();
}

#--- module.m

#import "module.h"

@implementation Foo
@end

#--- module.h

#import <Foundation/Foundation.h>

@interface Foo : NSObject
@end

#--- module.modulemap
module foo {
  header "module.h"
  export *
}

#--- commands.input

run
expression *f

# CHECK: (lldb) expression *f