File: pdbdump-flags.test

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (40 lines) | stat: -rw-r--r-- 1,640 bytes parent folder | download | duplicates (19)
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
; RUN: llvm-pdbutil pretty %p/../Inputs/empty.pdb | FileCheck %s -check-prefix=NO_ARGS
; RUN: llvm-pdbutil pretty -types %p/../Inputs/empty.pdb | FileCheck %s -check-prefix=TYPES
; RUN: llvm-pdbutil pretty -compilands %p/../Inputs/empty.pdb | FileCheck %s -check-prefix=COMPILANDS
; RUN: llvm-pdbutil pretty -types -compilands %p/../Inputs/empty.pdb | FileCheck %s -check-prefix=MULTIPLE

; Check that neither symbols nor compilands are dumped when neither argument specified.
; NO_ARGS: empty.pdb
; NO_ARGS: Guid: {4156350B-A086-49A2-896F-9988FAE52FF0}
; NO_ARGS: Attributes: HasPrivateSymbols
; NO_ARGS-NOT: ---TYPES---
; NO_ARGS-NOT: ---COMPILANDS---
; NO_ARGS-NOT: ---GLOBALS---
; NO_ARGS-NOT: ---SYMBOLS---

; Check that only types are dumped when only -types is specified.
; TYPES: empty.pdb
; TYPES: Guid: {4156350B-A086-49A2-896F-9988FAE52FF0}
; TYPES: Attributes: HasPrivateSymbols
; TYPES: ---TYPES---
; TYPES-NOT: ---COMPILANDS---
; TYPES-NOT: ---GLOBALS---
; TYPES-NOT: ---SYMBOLS---

; Check that only compilands are dumped when only -compilands is specified.
; COMPILANDS: empty.pdb
; COMPILANDS: Guid: {4156350B-A086-49A2-896F-9988FAE52FF0}
; COMPILANDS: Attributes: HasPrivateSymbols
; COMPILANDS: ---COMPILANDS---
; COMPILANDS-NOT: ---TYPES---
; COMPILANDS-NOT: ---GLOBALS---
; COMPILANDS-NOT: ---SYMBOLS---

; Check that types and compilands are dumped when both arguments are specified.
; MULTIPLE: empty.pdb
; MULTIPLE: Guid: {4156350B-A086-49A2-896F-9988FAE52FF0}
; MULTIPLE: Attributes: HasPrivateSymbols
; MULTIPLE: ---COMPILANDS---
; MULTIPLE: ---TYPES---
; MULTIPLE-NOT: ---GLOBALS---
; MULTIPLE-NOT: ---SYMBOLS---