[lldb][NFC] Fix import-std-module tests that relied on fix-its to pass

These tests currently pass, but they rely on fix-its in our expression
parser to pass because they have some typos.

llvm-svn: 367309
This commit is contained in:
Raphael Isemann 2019-07-30 13:11:59 +00:00
parent e010f6bab3
commit 0b99518097
2 changed files with 5 additions and 5 deletions

View File

@ -25,12 +25,12 @@ class TestDbgInfoContentDeque(TestBase):
self.runCmd("settings set target.import-std-module true")
self.expect("expr (size_t)a.size()", substrs=['(size_t) $0 = 3'])
self.expect("expr (int)a.front()->a", substrs=['(int) $1 = 3'])
self.expect("expr (int)a.back()->a", substrs=['(int) $2 = 2'])
self.expect("expr (int)a.front().a", substrs=['(int) $1 = 3'])
self.expect("expr (int)a.back().a", substrs=['(int) $2 = 2'])
self.expect("expr std::reverse(a.begin(), a.end())")
self.expect("expr (int)a.front()->a", substrs=['(int) $3 = 2'])
self.expect("expr (int)a.back()->a", substrs=['(int) $4 = 3'])
self.expect("expr (int)a.front().a", substrs=['(int) $3 = 2'])
self.expect("expr (int)a.back().a", substrs=['(int) $4 = 3'])
self.expect("expr (int)(a.begin()->a)", substrs=['(int) $5 = 2'])
self.expect("expr (int)(a.rbegin()->a)", substrs=['(int) $6 = 3'])

View File

@ -25,7 +25,7 @@ class TestDbgInfoContentForwardList(TestBase):
self.runCmd("settings set target.import-std-module true")
self.expect("expr (size_t)std::distance(a.begin(), a.end())", substrs=['(size_t) $0 = 3'])
self.expect("expr (int)a.front()->a", substrs=['(int) $1 = 3'])
self.expect("expr (int)a.front().a", substrs=['(int) $1 = 3'])
self.expect("expr (int)(a.begin()->a)", substrs=['(int) $2 = 3'])