diff options
| author | Adrian Prantl <aprantl@apple.com> | 2014-02-20 19:51:07 +0000 | 
|---|---|---|
| committer | Adrian Prantl <aprantl@apple.com> | 2014-02-20 19:51:07 +0000 | 
| commit | 5cd2f3ee95d13a166e9725271872114585b65b82 (patch) | |
| tree | 09dd2765e64d906f35079400ee29e77be5660c5c | |
| parent | b6eb264ac40c4dce4456b2c1dfe1cd93a724c246 (diff) | |
| download | bcm5719-llvm-5cd2f3ee95d13a166e9725271872114585b65b82.tar.gz bcm5719-llvm-5cd2f3ee95d13a166e9725271872114585b65b82.zip  | |
Relax testcases. LLDB starts counting at $0.
llvm-svn: 201806
| -rw-r--r-- | debuginfo-tests/block_var.m | 2 | ||||
| -rw-r--r-- | debuginfo-tests/blocks.m | 6 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/debuginfo-tests/block_var.m b/debuginfo-tests/block_var.m index 367526910a3..83a30fd8c46 100644 --- a/debuginfo-tests/block_var.m +++ b/debuginfo-tests/block_var.m @@ -7,7 +7,7 @@  // DEBUGGER: break 24  // DEBUGGER: r  // DEBUGGER: p result -// CHECK: $1 = 42 +// CHECK: ${{[0-9]}} = 42  void doBlock(void (^block)(void))  { diff --git a/debuginfo-tests/blocks.m b/debuginfo-tests/blocks.m index 30472ed3bd1..0ac0e073efb 100644 --- a/debuginfo-tests/blocks.m +++ b/debuginfo-tests/blocks.m @@ -8,11 +8,11 @@  // DEBUGGER: break 31  // DEBUGGER: r  // DEBUGGER: p m2 +// CHECK: ${{[0-9]}} = 1  // DEBUGGER: p dbTransaction +// CHECK: ${{[0-9]}} = 0  // DEBUGGER: p master -// CHECK: $1 = 1 -// CHECK: $2 = 0 -// CHECK: $3 = 0 +// CHECK: ${{[0-9]}} = 0  #include <Cocoa/Cocoa.h>  | 

