Skip to content

Commit 02695fa

Browse files
committedJul 13, 2018
[json, test] Fix the json.td test - the path to python could contain spaces
Summary: The path to the python executable can contain spaces, so it should be specified with quotes. Reviewers: asmith, simon_tatham Reviewed By: simon_tatham Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D49258 llvm-svn: 337006
1 parent e891aa9 commit 02695fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎llvm/test/TableGen/JSON.td

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: llvm-tblgen -dump-json %s | %python %S/JSON-check.py %s
1+
// RUN: llvm-tblgen -dump-json %s | '%python' %S/JSON-check.py %s
22

33
// CHECK: data['!tablegen_json_version'] == 1
44

0 commit comments

Comments
 (0)
Please sign in to comment.