diff options
author | Aaron Smith <aaron.smith@microsoft.com> | 2018-02-21 00:41:30 +0000 |
---|---|---|
committer | Aaron Smith <aaron.smith@microsoft.com> | 2018-02-21 00:41:30 +0000 |
commit | 24e28629d7cfc2b19bf2f17453861437e2d2f9db (patch) | |
tree | 854a4b0c590674b0c0f45302845f4b1da587343d /llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp | |
parent | 29b8feb615c9850f43b9ed5efb83e4ebed72d4da (diff) | |
download | bcm5719-llvm-24e28629d7cfc2b19bf2f17453861437e2d2f9db.tar.gz bcm5719-llvm-24e28629d7cfc2b19bf2f17453861437e2d2f9db.zip |
[lit] Fix a problem with spaces in the python path by adding quotes around it
These are the last tests left to fix after D43265.
llvm-svn: 325657
Diffstat (limited to 'llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp')
-rw-r--r-- | llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp b/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp index 7fc36a7a911..c7e373eb875 100644 --- a/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp +++ b/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp @@ -37,7 +37,7 @@ int main() { // TEXT: [[@LINE]]| 161|int main( // // RUN: llvm-cov export %S/Inputs/lineExecutionCounts.covmapping -instr-profile %t.profdata -name=main 2>/dev/null > %t.export.json // RUN: FileCheck -input-file %t.export.json %S/Inputs/lineExecutionCounts.json -// RUN: cat %t.export.json | %python -c "import json, sys; json.loads(sys.stdin.read())" +// RUN: cat %t.export.json | "%python" -c "import json, sys; json.loads(sys.stdin.read())" // // RUN: llvm-cov export %S/Inputs/lineExecutionCounts.covmapping -instr-profile %t.profdata 2>/dev/null -summary-only > %t.export-summary.json // RUN: not grep '"name":"main"' %t.export-summary.json |