blob: 0c56d297d750bc2b243b84b83a260381195e5697 [file] [log] [blame]
Adrian Prantlf88c5542013-09-06 18:10:421 -*- rst -*-
Devang Patel59c97b52010-09-13 22:47:462This is a collection of tests to check debugging information generated by
3compiler. This test suite can be checked out inside clang/test folder. This
4will enable 'make test' for clang to pick up these tests. Typically, test
5cases included here includes debugger commands and intended debugger output
6as comments in source file using DEBUGGER: and CHECK: as prefixes respectively.
7
Adrian Prantlf88c5542013-09-06 18:10:428For example::
Devang Patel59c97b52010-09-13 22:47:469
Adrian Prantlf88c5542013-09-06 18:10:4210 define i32 @f1(i32 %i) nounwind ssp {
11 ; DEBUGGER: break f1
12 ; DEBUGGER: r
13 ; DEBUGGER: p i
14 ; CHECK: $1 = 42
15 entry:
16 }
Devang Patel59c97b52010-09-13 22:47:4617
Adrian Prantlf88c5542013-09-06 18:10:4218is a testcase where the debugger is asked to break at function 'f1' and
Devang Patel59c97b52010-09-13 22:47:4619print value of argument 'i'. The expected value of 'i' is 42 in this case.