mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-22 07:22:54 +00:00
[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:
parent
e010f6bab3
commit
0b99518097
@ -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'])
|
||||
|
@ -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'])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user