Fixed the version test for darwin.

llvm-svn: 178595
This commit is contained in:
Greg Clayton 2013-04-03 00:04:27 +00:00
parent e1d9afa82d
commit 1a400cf485
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class HelpCommandTestCase(TestBase):
import re
match = re.match('[0-9]+', version_str)
if sys.platform.startswith("darwin"):
search_regexp = ['LLDB-' + (version_str if match else '[0-9]+')]
search_regexp = ['lldb-' + (version_str if match else '[0-9]+')]
else:
search_regexp = ['lldb version (\d|\.)+.*$']