summaryrefslogtreecommitdiffstats
path: root/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2011-10-07 18:02:54 +0000
committerJim Ingham <jingham@apple.com>2011-10-07 18:02:54 +0000
commitde4b919d27137ec15923fcefb3975564158a3065 (patch)
treed30d403b61dd1789765e4a1e649408238026b065 /lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py
parent102be448438b509ce620d9d1d2dd77b121108413 (diff)
downloadbcm5719-llvm-de4b919d27137ec15923fcefb3975564158a3065.tar.gz
bcm5719-llvm-de4b919d27137ec15923fcefb3975564158a3065.zip
Turn the EvaluateExpression (..., True) tests back on.
llvm-svn: 141375
Diffstat (limited to 'lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py')
-rw-r--r--lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py b/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py
index dd6cf221303..f291f037240 100644
--- a/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py
+++ b/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py
@@ -159,10 +159,9 @@ class DynamicValueTestCase(TestBase):
self.examine_value_object_of_this_ptr (this_static, this_dynamic, myB_loc)
# Get "this" using the EvaluateExpression:
- # These tests fail for now because EvaluateExpression doesn't currently support dynamic typing...
- #this_static = frame.EvaluateExpression ('this', False)
- #this_dynamic = frame.EvaluateExpression ('this', True)
- #self.examine_value_object_of_this_ptr (this_static, this_dynamic, myB_loc)
+ this_static = frame.EvaluateExpression ('this', False)
+ this_dynamic = frame.EvaluateExpression ('this', True)
+ self.examine_value_object_of_this_ptr (this_static, this_dynamic, myB_loc)
# The "frame var" code uses another path to get into children, so let's
# make sure that works as well:
OpenPOWER on IntegriCloud