Recommit "[lldb] Make TestExprDiagnostics.py pass again after enabling Fix-Its in...
authorDavide Italiano <ditaliano@apple.com>
Mon, 30 Mar 2020 21:15:29 +0000 (14:15 -0700)
committerDavide Italiano <ditaliano@apple.com>
Mon, 30 Mar 2020 21:24:06 +0000 (14:24 -0700)
This reverts commit 55ed09d32e2602eba1dbb8aba1985246739c3909 as
it was not responsible for breaking the bots. Sorry.

lldb/test/API/commands/expression/diagnostics/TestExprDiagnostics.py

index da29d7b..b5eb552 100644 (file)
@@ -60,10 +60,10 @@ class ExprDiagnosticsTestCase(TestBase):
         self.assertIn("<user expression 3>:1:10", value.GetError().GetCString())
 
         # Multiline top-level expressions.
-        value = frame.EvaluateExpression("void x() {}\nvoid foo(unknown_type x) {}", top_level_opts)
+        value = frame.EvaluateExpression("void x() {}\nvoid foo;", top_level_opts)
         self.assertFalse(value.GetError().Success())
-        self.assertIn("\nvoid foo(unknown_type x) {}\n         ^\n", value.GetError().GetCString())
-        self.assertIn("<user expression 4>:2:10", value.GetError().GetCString())
+        self.assertIn("\nvoid foo;\n     ^", value.GetError().GetCString())
+        self.assertIn("<user expression 4>:2:6", value.GetError().GetCString())
 
         # Test that we render Clang's 'notes' correctly.
         value = frame.EvaluateExpression("struct SFoo{}; struct SFoo { int x; };", top_level_opts)