diff options
-rw-r--r-- | lldb/test/expression_command/test/TestExprs.py | 6 | ||||
-rw-r--r-- | lldb/test/functionalities/alias/TestAliases.py | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lldb/test/expression_command/test/TestExprs.py b/lldb/test/expression_command/test/TestExprs.py index 422e05e3e2e..71f62fb1402 100644 --- a/lldb/test/expression_command/test/TestExprs.py +++ b/lldb/test/expression_command/test/TestExprs.py @@ -51,9 +51,9 @@ class BasicExprCommandsTestCase(TestBase): patterns = ["\(unsigned long long\) \$.* = 2"]) # (unsigned long long) $1 = 2 - self.expect("expression 2.234f", - patterns = ["\(float\) \$.* = 2\.234"]) - # (float) $2 = 2.234 + self.expect("expression 0.5f", + patterns = ["\(float\) \$.* = 0\.5"]) + # (float) $2 = 0.5 self.expect("expression 2.234", patterns = ["\(double\) \$.* = 2\.234"]) diff --git a/lldb/test/functionalities/alias/TestAliases.py b/lldb/test/functionalities/alias/TestAliases.py index 590e0ac5618..634d8d7e705 100644 --- a/lldb/test/functionalities/alias/TestAliases.py +++ b/lldb/test/functionalities/alias/TestAliases.py @@ -109,10 +109,10 @@ class AliasTestCase(TestBase): self.expect ("help run", - substrs = [ "'run' is an abbreviation for 'process launch -c /bin/sh --'" ]) + substrs = [ "'run' is an abbreviation for 'process launch -c /bin/sh'" ]) self.expect ("help -a run", - substrs = [ "'run' is an abbreviation for 'process launch -c /bin/sh --'" ]) + substrs = [ "'run' is an abbreviation for 'process launch -c /bin/sh'" ]) self.expect ("help -a", substrs = [ 'run', 'process launch -c /bin/sh' ]) |