summaryrefslogtreecommitdiff
path: root/test/tools/llvm-symbolizer/ppc64.test
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2018-08-13 08:13:43 +0000
committerHans Wennborg <hans@hanshq.net>2018-08-13 08:13:43 +0000
commit5a09a6b1e4a5984ecd4e0f915b52e5b268bced99 (patch)
tree3784784afcb21c80802645e9cc8bc703abdc00b9 /test/tools/llvm-symbolizer/ppc64.test
parentc7b32708768b1768e941bfcd30334e22f40c0145 (diff)
Merging r339073:
------------------------------------------------------------------------ r339073 | stella.stamenova | 2018-08-07 00:37:44 +0200 (Tue, 07 Aug 2018) | 14 lines [lit, python] Always add quotes around the python path in lit Summary: The issue with the python path is that the path to python on Windows can contain spaces. To make the tests always work, the path to python needs to be surrounded by quotes. This change updates several configuration files which specify the path to python as a substitution and also remove quotes from existing tests. Reviewers: asmith, zturner, alexshap, jakehehrlich Reviewed By: zturner, alexshap, jakehehrlich Subscribers: mehdi_amini, nemanjai, eraman, kbarton, jakehehrlich, steven_wu, dexonsmith, stella.stamenova, delcypher, llvm-commits Differential Revision: https://reviews.llvm.org/D50206 ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_70@339541 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/tools/llvm-symbolizer/ppc64.test')
-rw-r--r--test/tools/llvm-symbolizer/ppc64.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tools/llvm-symbolizer/ppc64.test b/test/tools/llvm-symbolizer/ppc64.test
index 34ebad88b58..fc8e4ffc7e2 100644
--- a/test/tools/llvm-symbolizer/ppc64.test
+++ b/test/tools/llvm-symbolizer/ppc64.test
@@ -4,7 +4,7 @@ int foo() { return 0; }
int bar() { return foo(); }
int _start() { return bar(); }
-RUN: "%python" -c "print('0x1000014c\n0x1000018c\n0x100001cc')" | llvm-symbolizer -obj=%p/Inputs/ppc64 | FileCheck %s
+RUN: %python -c "print('0x1000014c\n0x1000018c\n0x100001cc')" | llvm-symbolizer -obj=%p/Inputs/ppc64 | FileCheck %s
CHECK: foo
CHECK: bar