[Lldb-commits] [lldb] 794b8a0 - [lldb] s/lldb/%lldb in another test

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 23 11:17:31 PST 2020


Author: Jonas Devlieghere
Date: 2020-01-23T11:17:24-08:00
New Revision: 794b8a0329d1356455970fe1ae26f5d3b38e7906

URL: https://github.com/llvm/llvm-project/commit/794b8a0329d1356455970fe1ae26f5d3b38e7906
DIFF: https://github.com/llvm/llvm-project/commit/794b8a0329d1356455970fe1ae26f5d3b38e7906.diff

LOG: [lldb] s/lldb/%lldb in another test

As explained in Pavel's previous commit message: %lldb is the proper
substitution. Using "lldb" can cause us to execute the system lldb
instead of the one we are testing. This happens at least in standalone
builds.

Added: 
    

Modified: 
    lldb/test/Shell/SymbolFile/DWARF/debug_aranges-empty-section.s

Removed: 
    


################################################################################
diff  --git a/lldb/test/Shell/SymbolFile/DWARF/debug_aranges-empty-section.s b/lldb/test/Shell/SymbolFile/DWARF/debug_aranges-empty-section.s
index 4e9fabdf64ab..98aa562620fe 100644
--- a/lldb/test/Shell/SymbolFile/DWARF/debug_aranges-empty-section.s
+++ b/lldb/test/Shell/SymbolFile/DWARF/debug_aranges-empty-section.s
@@ -3,7 +3,7 @@
 # REQUIRES: x86
 
 # RUN: llvm-mc %s -triple x86_64-pc-linux -filetype=obj >%t
-# RUN: lldb %t -o "breakpoint set -n f" -b | FileCheck %s
+# RUN: %lldb %t -o "breakpoint set -n f" -b | FileCheck %s
 
 # CHECK: Breakpoint 1: where = {{.*}}`f, address = 0x0000000000000047
 


        


More information about the lldb-commits mailing list