diff options
author | Dean Michael Berris <dberris@google.com> | 2017-01-10 04:32:34 +0000 |
---|---|---|
committer | Dean Michael Berris <dberris@google.com> | 2017-01-10 04:32:34 +0000 |
commit | 4ebc79bb055a9e0e003ad86e63f34ba2170568c3 (patch) | |
tree | e9d7ca22bdbd1362e10cbefdae67acebf5c12c7c /llvm/test/tools/llvm-xray | |
parent | c4bfc6fa8ff1682db022f6c7d32cb9a12bef643c (diff) | |
download | bcm5719-llvm-4ebc79bb055a9e0e003ad86e63f34ba2170568c3.tar.gz bcm5719-llvm-4ebc79bb055a9e0e003ad86e63f34ba2170568c3.zip |
[XRay] Use regular expression for finding symbols
Un-break the test in Windows.
Follow-up on D24376.
llvm-svn: 291538
Diffstat (limited to 'llvm/test/tools/llvm-xray')
-rw-r--r-- | llvm/test/tools/llvm-xray/X86/convert-with-debug-syms.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/tools/llvm-xray/X86/convert-with-debug-syms.txt b/llvm/test/tools/llvm-xray/X86/convert-with-debug-syms.txt index d7e892bedaa..ddb8b6bdb1c 100644 --- a/llvm/test/tools/llvm-xray/X86/convert-with-debug-syms.txt +++ b/llvm/test/tools/llvm-xray/X86/convert-with-debug-syms.txt @@ -10,13 +10,13 @@ ; CHECK-NEXT: records: ; CHECK-NEXT: - { type: 0, func-id: 3, function: main, cpu: 37, thread: 84697, kind: function-enter, ; CHECK-NEXT: tsc: 3315356841453914 } -; CHECK-NEXT: - { type: 0, func-id: 2, function: 'foo()', cpu: 37, thread: 84697, kind: function-enter, +; CHECK-NEXT: - { type: 0, func-id: 2, function: {{.*foo.*}}, cpu: 37, thread: 84697, kind: function-enter, ; CHECK-NEXT: tsc: 3315356841454542 } -; CHECK-NEXT: - { type: 0, func-id: 2, function: 'foo()', cpu: 37, thread: 84697, kind: function-exit, +; CHECK-NEXT: - { type: 0, func-id: 2, function: {{.*foo.*}}, cpu: 37, thread: 84697, kind: function-exit, ; CHECK-NEXT: tsc: 3315356841454670 } -; CHECK-NEXT: - { type: 0, func-id: 1, function: 'bar()', cpu: 37, thread: 84697, kind: function-enter, +; CHECK-NEXT: - { type: 0, func-id: 1, function: {{.*bar.*}}, cpu: 37, thread: 84697, kind: function-enter, ; CHECK-NEXT: tsc: 3315356841454762 } -; CHECK-NEXT: - { type: 0, func-id: 1, function: 'bar()', cpu: 37, thread: 84697, kind: function-exit, +; CHECK-NEXT: - { type: 0, func-id: 1, function: {{.*bar.*}}, cpu: 37, thread: 84697, kind: function-exit, ; CHECK-NEXT: tsc: 3315356841454802 } ; CHECK-NEXT: - { type: 0, func-id: 3, function: main, cpu: 37, thread: 84697, kind: function-exit, ; CHECK-NEXT: tsc: 3315356841494828 } |