Disable the empty string check in TestDataFormatterStdString

This check was failing since it was added in r372837. It should be
possible to re-enable it once D68010 lands.

llvm-svn: 373071
This commit is contained in:
Pavel Labath 2019-09-27 11:39:27 +00:00
parent 0eb4d9dd7a
commit 59876948c3
1 changed files with 2 additions and 1 deletions

View File

@ -60,7 +60,8 @@ class StdStringDataFormatterTestCase(TestBase):
var_q = self.frame().FindVariable('q')
var_Q = self.frame().FindVariable('Q')
self.assertTrue(var_wempty.GetSummary() == 'L""', "wempty summary wrong")
# TODO: This is currently broken
# self.assertTrue(var_wempty.GetSummary() == 'L""', "wempty summary wrong")
self.assertTrue(
var_s.GetSummary() == 'L"hello world! מזל טוב!"',
"s summary wrong")