forked from OSchip/llvm-project
[Debuginfod] Use env to fix debuginfod.test on Win32.
This commit is contained in:
parent
e4543af4e6
commit
fd575ae29a
|
@ -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: env 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: env 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: env 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
|
||||
|
||||
|
@ -18,12 +18,12 @@
|
|||
|
||||
# # The artifacts should still be present in the cache without needing to query
|
||||
# # the server.
|
||||
# RUN: DEBUGINFOD_CACHE_PATH=%t llvm-debuginfod-find --dump --executable abcdef | \
|
||||
# RUN: env DEBUGINFOD_CACHE_PATH=%t llvm-debuginfod-find --dump --executable abcdef | \
|
||||
# RUN: FileCheck %s --check-prefix=EXECUTABLE
|
||||
# RUN: DEBUGINFOD_CACHE_PATH=%t llvm-debuginfod-find --dump \
|
||||
# RUN: env DEBUGINFOD_CACHE_PATH=%t llvm-debuginfod-find --dump \
|
||||
# RUN: --source=/directory/file.c abcdef | \
|
||||
# RUN: FileCheck %s --check-prefix=SOURCE
|
||||
# RUN: DEBUGINFOD_CACHE_PATH=%t llvm-debuginfod-find --dump --debuginfo abcdef | \
|
||||
# RUN: env DEBUGINFOD_CACHE_PATH=%t llvm-debuginfod-find --dump --debuginfo abcdef | \
|
||||
# RUN: FileCheck %s --check-prefix=DEBUGINFO
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue