diff options
author | Davide Italiano <davide@freebsd.org> | 2018-03-20 18:32:47 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2018-03-20 18:32:47 +0000 |
commit | 9362753a699dee4b7041204ab169fd1e84fef039 (patch) | |
tree | e6c23a036d56c3eb8bcbaae9172389c787dfafc6 /lldb/packages/Python/lldbsuite/test/expression_command | |
parent | 43b8acdfd7a801e1556c978f3aa956dc498c9aa2 (diff) | |
download | bcm5719-llvm-9362753a699dee4b7041204ab169fd1e84fef039.tar.gz bcm5719-llvm-9362753a699dee4b7041204ab169fd1e84fef039.zip |
[TestExpr] Fix a typo in a test, unbreaking the lldb Mac OS X bot.
llvm-svn: 328013
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/test/TestExprs2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/test/TestExprs2.py b/lldb/packages/Python/lldbsuite/test/expression_command/test/TestExprs2.py index db7c2edc6ac..f5ec4f02786 100644 --- a/lldb/packages/Python/lldbsuite/test/expression_command/test/TestExprs2.py +++ b/lldb/packages/Python/lldbsuite/test/expression_command/test/TestExprs2.py @@ -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" |