Turn the EvaluateExpression (..., True) tests back on.

llvm-svn: 141375
diff --git a/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py b/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py
index dd6cf22..f291f03 100644
--- a/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py
+++ b/lldb/test/lang/cpp/dynamic-value/TestDynamicValue.py
@@ -159,10 +159,9 @@
         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: