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
|
RUN: llvm-pdbutil dump -all %p/Inputs/TypeServerTest.pdb | FileCheck %s --check-prefix=NO-DBI
RUN: llvm-pdbutil pdb2yaml -all %p/Inputs/TypeServerTest.pdb > %t
RUN: FileCheck --input-file=%t %s --check-prefix=NO-DBI-YAML
NO-DBI-NOT: Native PDB Error: The specified stream could not be loaded.
NO-DBI: Module Stats
NO-DBI-NEXT: ============================================================
NO-DBI-NEXT: DBI stream not present
NO-DBI: S_UDT Record Stats
NO-DBI-NEXT: ============================================================
NO-DBI-NEXT: Globals stream not present
NO-DBI: Modules
NO-DBI-NEXT: ============================================================
NO-DBI-NEXT: DBI stream not present
NO-DBI: Files
NO-DBI-NEXT: ============================================================
NO-DBI-NEXT: DBI stream not present
NO-DBI: Lines
NO-DBI-NEXT: ============================================================
NO-DBI-NEXT: DBI stream not present
NO-DBI: Inlinee Lines
NO-DBI-NEXT: ============================================================
NO-DBI-NEXT: DBI stream not present
NO-DBI: Cross Module Imports
NO-DBI-NEXT: ============================================================
NO-DBI-NEXT: DBI stream not present
NO-DBI: Cross Module Exports
NO-DBI-NEXT: ============================================================
NO-DBI-NEXT: DBI stream not present
NO-DBI-YAML-NOT: Native PDB Error: The specified stream could not be loaded.
NO-DBI-YAML: TpiStream:
NO-DBI-YAML-NEXT: Version: VC80
NO-DBI-YAML-NEXT: Records:
NO-DBI-YAML-NEXT: - Kind: LF_ARGLIST
|