[llvm] 42f9ca5 - [Debuginfod][test] Fix debuginfod.test to use %python instead of python after D112759

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 4 17:32:05 PST 2022


Author: Fangrui Song
Date: 2022-02-04T17:32:00-08:00
New Revision: 42f9ca55dd487580cfd32d4b803315d789442442

URL: https://github.com/llvm/llvm-project/commit/42f9ca55dd487580cfd32d4b803315d789442442
DIFF: https://github.com/llvm/llvm-project/commit/42f9ca55dd487580cfd32d4b803315d789442442.diff

LOG: [Debuginfod][test] Fix debuginfod.test to use %python instead of python after D112759

Added: 
    

Modified: 
    llvm/test/tools/llvm-debuginfod-find/debuginfod.test

Removed: 
    


################################################################################
diff  --git a/llvm/test/tools/llvm-debuginfod-find/debuginfod.test b/llvm/test/tools/llvm-debuginfod-find/debuginfod.test
index e38913b78351b..d1c9c693c0e4a 100644
--- a/llvm/test/tools/llvm-debuginfod-find/debuginfod.test
+++ b/llvm/test/tools/llvm-debuginfod-find/debuginfod.test
@@ -2,13 +2,13 @@
 # RUN: rm -rf %t
 # RUN: mkdir %t
 # # Query the python server for artifacts
-# RUN: DEBUGINFOD_CACHE_PATH=%t python %s --server-path %S/Inputs \
+# RUN: DEBUGINFOD_CACHE_PATH=%t %python %s --server-path %S/Inputs \
 # RUN:   --tool-cmd 'llvm-debuginfod-find --dump --executable abcdef' | \
 # RUN:   FileCheck %s --check-prefix=EXECUTABLE
-# RUN: DEBUGINFOD_CACHE_PATH=%t python %s --server-path %S/Inputs \
+# RUN: DEBUGINFOD_CACHE_PATH=%t %python %s --server-path %S/Inputs \
 # RUN:   --tool-cmd 'llvm-debuginfod-find --dump --source=/directory/file.c abcdef' | \
 # RUN:   FileCheck %s --check-prefix=SOURCE
-# RUN: DEBUGINFOD_CACHE_PATH=%t python %s --server-path %S/Inputs \
+# RUN: DEBUGINFOD_CACHE_PATH=%t %python %s --server-path %S/Inputs \
 # RUN:   --tool-cmd 'llvm-debuginfod-find --dump --debuginfo abcdef' | \
 # RUN:   FileCheck %s --check-prefix=DEBUGINFO
 


        


More information about the llvm-commits mailing list