Don't warn or note if bash is missing
authorReid Kleckner <reid@kleckner.net>
Wed, 4 Feb 2015 22:36:52 +0000 (22:36 +0000)
committerReid Kleckner <reid@kleckner.net>
Wed, 4 Feb 2015 22:36:52 +0000 (22:36 +0000)
We haven't needed bash on Windows to run the test suite for a long time
now.

Patch by Michael Edwards!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228221 91177308-0d34-0410-b5e6-96231b3b80d8

utils/lit/lit/LitConfig.py

index b0dde5db86868048b599950b3bed281aab5e7c0f..b8183801bfca7cc5627d25430cafe2e4ec831f52 100644 (file)
@@ -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