diff options
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/Unit/lit.cfg | 5 | ||||
| -rw-r--r-- | llvm/test/lit.cfg | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/llvm/test/Unit/lit.cfg b/llvm/test/Unit/lit.cfg index dac0bf829ba..9da82f5f2c9 100644 --- a/llvm/test/Unit/lit.cfg +++ b/llvm/test/Unit/lit.cfg @@ -3,6 +3,7 @@ # Configuration file for the 'lit' test runner. import os +import subprocess import lit.formats @@ -75,8 +76,8 @@ if config.test_exec_root is None: lit_config.fatal('No site specific configuration available!') # Get the source and object roots. - llvm_src_root = lit.util.capture(['llvm-config', '--src-root']).strip() - llvm_obj_root = lit.util.capture(['llvm-config', '--obj-root']).strip() + llvm_src_root = subprocess.check_output(['llvm-config', '--src-root']).strip() + llvm_obj_root = subprocess.check_output(['llvm-config', '--obj-root']).strip() # Validate that we got a tree which points to here. this_src_root = os.path.join(os.path.dirname(__file__),'..','..') diff --git a/llvm/test/lit.cfg b/llvm/test/lit.cfg index ed1ba2d11b1..8ed9187aea7 100644 --- a/llvm/test/lit.cfg +++ b/llvm/test/lit.cfg @@ -6,6 +6,7 @@ import os import sys import re import platform +import subprocess import lit.util import lit.formats @@ -150,8 +151,8 @@ if config.test_exec_root is None: lit_config.fatal('No site specific configuration available!') # Get the source and object roots. - llvm_src_root = lit.util.capture(['llvm-config', '--src-root']).strip() - llvm_obj_root = lit.util.capture(['llvm-config', '--obj-root']).strip() + llvm_src_root = subprocess.check_output(['llvm-config', '--src-root']).strip() + llvm_obj_root = subprocess.check_output(['llvm-config', '--obj-root']).strip() # Validate that we got a tree which points to here. this_src_root = os.path.dirname(config.test_source_root) |

