[lldb][NFC] Fix import-std-module tests that relied on fix-its to pass
authorRaphael Isemann <teemperor@gmail.com>
Tue, 30 Jul 2019 13:11:59 +0000 (13:11 +0000)
committerRaphael Isemann <teemperor@gmail.com>
Tue, 30 Jul 2019 13:11:59 +0000 (13:11 +0000)
These tests currently pass, but they rely on fix-its in our expression
parser to pass because they have some typos.

llvm-svn: 367309

lldb/packages/Python/lldbsuite/test/expression_command/import-std-module/deque-dbg-info-content/TestDbgInfoContentDeque.py
lldb/packages/Python/lldbsuite/test/expression_command/import-std-module/forward_list-dbg-info-content/TestDbgInfoContentForwardList.py

index 4df280f..eeea348 100644 (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'])
index 6e7be3e..a2fc559 100644 (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'])