diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-09-29 14:54:28 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-09-29 14:54:28 +0000 |
commit | b3496c7efda26c6c89c1e4403d8bb80b2eb9041b (patch) | |
tree | 4291c9af869f8222b3bab5de678a1f7cc491d437 /test/Makefile | |
parent | 214904e358535e316a0750af67806d684bf82b75 (diff) |
Allow the PYTHON make variable to override the default Python when running Clang tests, from Ken Dyck.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@83065 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 9303a58171..8543d43144 100644 --- a/test/Makefile +++ b/test/Makefile @@ -27,7 +27,7 @@ endif all:: lit.site.cfg @ echo '--- Running clang tests for $(TARGET_TRIPLE) ---' - @ $(LLVM_SRC_ROOT)/utils/lit/lit.py \ + @ $(PYTHON) $(LLVM_SRC_ROOT)/utils/lit/lit.py \ $(TESTARGS) $(TESTDIRS) $(VGARG) FORCE: |