diff options
| author | Jeffrey Yasskin <jyasskin@google.com> | 2010-02-05 18:09:19 +0000 |
|---|---|---|
| committer | Jeffrey Yasskin <jyasskin@google.com> | 2010-02-05 18:09:19 +0000 |
| commit | 03a3df12353f3926306a4470238332eb792e6ed8 (patch) | |
| tree | 37049b319da066fdcbbd7a91aee050e550033c70 /llvm/utils | |
| parent | a778db9a91f31245edc3a8cfd90e3e313230fc34 (diff) | |
| download | bcm5719-llvm-03a3df12353f3926306a4470238332eb792e6ed8.tar.gz bcm5719-llvm-03a3df12353f3926306a4470238332eb792e6ed8.zip | |
Make lit's gtest support honor config.environment.
llvm-svn: 95398
Diffstat (limited to 'llvm/utils')
| -rw-r--r-- | llvm/utils/lit/lit/TestFormats.py | 20 | ||||
| -rw-r--r-- | llvm/utils/lit/lit/Util.py | 5 |
2 files changed, 17 insertions, 8 deletions
diff --git a/llvm/utils/lit/lit/TestFormats.py b/llvm/utils/lit/lit/TestFormats.py index 5dfd54ac5ec..fba0ce2ce46 100644 --- a/llvm/utils/lit/lit/TestFormats.py +++ b/llvm/utils/lit/lit/TestFormats.py @@ -9,13 +9,19 @@ class GoogleTest(object): self.test_sub_dir = str(test_sub_dir) self.test_suffix = str(test_suffix) - def getGTestTests(self, path, litConfig): + def getGTestTests(self, path, litConfig, localConfig): """getGTestTests(path) - [name] - - Return the tests available in gtest executable.""" + + Return the tests available in gtest executable. + + Args: + path: String path to a gtest executable + litConfig: LitConfig instance + localConfig: TestingConfig instance""" try: - lines = Util.capture([path, '--gtest_list_tests']).split('\n') + lines = Util.capture([path, '--gtest_list_tests'], + env=localConfig.environment).split('\n') except: litConfig.error("unable to discover google-tests in %r" % path) raise StopIteration @@ -52,7 +58,8 @@ class GoogleTest(object): execpath = os.path.join(filepath, subfilename) # Discover the tests in this executable. - for name in self.getGTestTests(execpath, litConfig): + for name in self.getGTestTests(execpath, litConfig, + localConfig): testPath = path_in_suite + (filename, subfilename, name) yield Test.Test(testSuite, testPath, localConfig) @@ -65,7 +72,8 @@ class GoogleTest(object): testName = os.path.join(namePrefix, testName) cmd = [testPath, '--gtest_filter=' + testName] - out, err, exitCode = TestRunner.executeCommand(cmd) + out, err, exitCode = TestRunner.executeCommand( + cmd, env=test.config.environment) if not exitCode: return Test.PASS,'' diff --git a/llvm/utils/lit/lit/Util.py b/llvm/utils/lit/lit/Util.py index 66c5e46f690..414b714c82c 100644 --- a/llvm/utils/lit/lit/Util.py +++ b/llvm/utils/lit/lit/Util.py @@ -39,11 +39,12 @@ def mkdir_p(path): if e.errno != errno.EEXIST: raise -def capture(args): +def capture(args, env=None): import subprocess """capture(command) - Run the given command (or argv list) in a shell and return the standard output.""" - p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE, + env=env) out,_ = p.communicate() return out |

