Skip to content

Commit

Permalink
Fix builtbot
Browse files Browse the repository at this point in the history
  • Loading branch information
walter-erquinigo committed Jan 2, 2024
1 parent 4b7707b commit 0d19a89
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lldb/test/API/tools/lldb-dap/optimized/TestDAP_optimized.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ def test_optimized_variable(self):
optimized_variable = self.dap_server.get_local_variable("argc")

self.assertTrue(optimized_variable["value"].startswith("<error:"))
self.assertEqual(
optimized_variable["$__lldb_extensions"]["error"],
"Could not evaluate DW_OP_entry_value.",
error_msg = optimized_variable["$__lldb_extensions"]["error"]
self.assertTrue(
("Could not evaluate DW_OP_entry_value" in error_msg)
or ("variable not available" in error_msg)
)

0 comments on commit 0d19a89

Please sign in to comment.