[Lldb-commits] [lldb] r328013 - [TestExpr] Fix a typo in a test, unbreaking the lldb Mac OS X bot.
Davide Italiano via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 20 11:32:48 PDT 2018
Author: davide
Date: Tue Mar 20 11:32:47 2018
New Revision: 328013
URL: http://llvm.org/viewvc/llvm-project?rev=328013&view=rev
Log:
[TestExpr] Fix a typo in a test, unbreaking the lldb Mac OS X bot.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/expression_command/test/TestExprs2.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/expression_command/test/TestExprs2.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/expression_command/test/TestExprs2.py?rev=328013&r1=328012&r2=328013&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/expression_command/test/TestExprs2.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/expression_command/test/TestExprs2.py Tue Mar 20 11:32:47 2018
@@ -76,5 +76,5 @@ class ExprCommands2TestCase(TestBase):
# Do anonymous symbols work?
self.expect("expression ((char**)environ)[0]",
- startstr="(char *) $1 = 0x")
+ startstr="(char *) $0 = 0x")
# (char *) $1 = 0x00007fff5fbff298 "Apple_PubSub_Socket_Render=/tmp/launch-7AEsUD/Render"
More information about the lldb-commits
mailing list