[Lldb-commits] [lldb] 696ae6f - [StopHook] Use wildcard matching. Pointed out by Jim Ingham.

Davide Italiano via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 20 13:58:03 PDT 2020


Author: Davide Italiano
Date: 2020-03-20T13:57:40-07:00
New Revision: 696ae6f7d8e170c82d5f2978fc99cc061f52b4ef

URL: https://github.com/llvm/llvm-project/commit/696ae6f7d8e170c82d5f2978fc99cc061f52b4ef
DIFF: https://github.com/llvm/llvm-project/commit/696ae6f7d8e170c82d5f2978fc99cc061f52b4ef.diff

LOG: [StopHook] Use wildcard matching. Pointed out by Jim Ingham.

Added: 
    

Modified: 
    lldb/test/Shell/ExecControl/StopHook/stop-hook.test

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/ExecControl/StopHook/stop-hook.test b/lldb/test/Shell/ExecControl/StopHook/stop-hook.test
index 7e5b37b63854..98a77cac99ba 100644
--- a/lldb/test/Shell/ExecControl/StopHook/stop-hook.test
+++ b/lldb/test/Shell/ExecControl/StopHook/stop-hook.test
@@ -46,12 +46,12 @@ target stop-hook list
 run
 # Stopping inside of the stop hook range
 # CHECK: (lldb) run
-# CHECK-NEXT: (void *) $0 = 0x
+# CHECK-NEXT: (void *) ${{.*}} = 0x
 
 thread step-over
 # Stepping inside of the stop hook range
 # CHECK: (lldb) thread step-over
-# CHECK-NEXT: (void *) $2 = 0x
+# CHECK-NEXT: (void *) ${{.*}} = 0x
 # CHECK: ->{{.*}} // We should stop here after stepping.
 
 process continue


        


More information about the lldb-commits mailing list