diff options
author | Reid Kleckner <reid@kleckner.net> | 2015-02-04 22:36:52 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2015-02-04 22:36:52 +0000 |
commit | ba77ad75d3570863a0ca270336cf6de46dbb21ef (patch) | |
tree | 7c5533a2c0042501076c9ce5145347458d462c8c | |
parent | 5149135369df776a68e3ce38ef46036f61d8c0b2 (diff) | |
download | bcm5719-llvm-ba77ad75d3570863a0ca270336cf6de46dbb21ef.tar.gz bcm5719-llvm-ba77ad75d3570863a0ca270336cf6de46dbb21ef.zip |
Don't warn or note if bash is missing
We haven't needed bash on Windows to run the test suite for a long time
now.
Patch by Michael Edwards!
llvm-svn: 228221
-rw-r--r-- | llvm/utils/lit/lit/LitConfig.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/utils/lit/lit/LitConfig.py b/llvm/utils/lit/lit/LitConfig.py index b0dde5db868..b8183801bfc 100644 --- a/llvm/utils/lit/lit/LitConfig.py +++ b/llvm/utils/lit/lit/LitConfig.py @@ -76,7 +76,6 @@ class LitConfig: self.bashPath = lit.util.which('bash') if self.bashPath is None: - self.warning("Unable to find 'bash'.") self.bashPath = '' return self.bashPath @@ -91,7 +90,6 @@ class LitConfig: # bash self.bashPath = lit.util.which('bash', dir) if self.bashPath is None: - self.note("Unable to find 'bash.exe'.") self.bashPath = '' return dir |