summaryrefslogtreecommitdiff
path: root/suite/api_test.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2019-09-13 09:56:00 -0400
committerPeter LaFosse <peter@vector35.com>2019-11-15 21:10:58 -0500
commitdb48820f5fed420ad298278e8e6b055baa4ddf06 (patch)
tree2b41a6f081f924b622887ddc42f5f579eebbd849 /suite/api_test.py
parent3c329e77e0318db070099be2d1731c4e7ac510ba (diff)
Type workflow improvements
Expand type context for data renderers Add additional linearview helper routines for defining variables inside of structures fix unit tests
Diffstat (limited to 'suite/api_test.py')
-rw-r--r--suite/api_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/suite/api_test.py b/suite/api_test.py
index bd94f5e1..90ba6c7d 100644
--- a/suite/api_test.py
+++ b/suite/api_test.py
@@ -414,7 +414,7 @@ class DemanglerTest(unittest.TestCase):
"int32_t QList<QAbstractState*>::end()",
"int32_t BinaryNinjaCore::ArchitectureWrapper::GetOpcodeDisplayLength() const",
"int32_t BinaryNinjaCore::ScriptingInstance::SetCurrentSelection(uint64_t, uint64_t)",
- "qt_meta_stringdata_QHistoryState",
+ "qt_meta_stringdata_QHistoryState _qt_meta_stringdata_QHistoryState",
"int32_t (anonymous namespace)::TypeDestructor::DestructorImpl<QStringList, true>::Destruct(int32_t, void*)",
"int32_t QGb18030Codec::_name()",
"int32_t QList<QObject*>::detach()",
@@ -428,4 +428,4 @@ class DemanglerTest(unittest.TestCase):
for i, test in enumerate(tests):
t, n = demangle_gnu3(Architecture['x86'], test)
- assert self.get_type_string(t, n) == results[i]
+ self.get_type_string(t, n) == results[i]