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

This commit is contained in:
Fangrui Song 2022-02-04 17:32:00 -08:00
parent 3dd2d4c0a2
commit 42f9ca55dd
1 changed files with 3 additions and 3 deletions

View File

@ -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