From e98f7f2cfa1690b4e85e0ed3883bafbc9f415202 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Wed, 22 Jun 2011 02:39:46 +0000 Subject: [PATCH] Recent change to SBSymbolContextList (r133498) makes the default constructor return a valid SB API object. Modify the test case to accommodate. llvm-svn: 133602 --- .../TestDefaultConstructorForAPIObjects.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py b/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py index 164c4f4faecb..aef11eebe4a9 100644 --- a/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py +++ b/lldb/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py @@ -2,8 +2,8 @@ Test lldb Python API object's default constructor and make sure it is invalid after initial construction. -There are two exceptions to the above general rules, though; the API objects are -SBCommadnReturnObject and SBStream. +There are three exceptions to the above general rules, though; the API objects are +SBCommadnReturnObject, SBStream, and SBSymbolContextList. """ import os, time @@ -198,7 +198,7 @@ class APIDefaultConstructorTestCase(TestBase): obj = lldb.SBSymbolContextList() if self.TraceOn(): print obj - self.assertFalse(obj) + self.assertTrue(obj) @python_api_test def test_SBTarget(self):