[llvm-branch-commits] [llvm] a3b31d8 - [Debuginfod][test] Fix debuginfod.test to use %python instead of python after D112759
Fangrui Song via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Fri Feb 4 17:35:21 PST 2022
Author: Fangrui Song
Date: 2022-02-04T17:35:13-08:00
New Revision: a3b31d895b79140aeefeaaddd67b0403c7a0ec70
URL: https://github.com/llvm/llvm-project/commit/a3b31d895b79140aeefeaaddd67b0403c7a0ec70
DIFF: https://github.com/llvm/llvm-project/commit/a3b31d895b79140aeefeaaddd67b0403c7a0ec70.diff
LOG: [Debuginfod][test] Fix debuginfod.test to use %python instead of python after D112759
(cherry picked from commit 42f9ca55dd487580cfd32d4b803315d789442442)
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-branch-commits
mailing list