Home
last modified time | relevance | path

Searched refs:assertIsNotNone (Results 1 – 15 of 15) sorted by relevance

/openbsd-src/gnu/llvm/clang/tools/scan-build-py/tests/unit/
H A Dtest_compilation.py13 self.assertIsNotNone(sut.compiler_language(['clang']))
14 self.assertIsNotNone(sut.compiler_language(['clang-3.6']))
15 self.assertIsNotNone(sut.compiler_language(['clang++']))
16 self.assertIsNotNone(sut.compiler_language(['clang++-3.5.1']))
17 self.assertIsNotNone(sut.compiler_language(['cc']))
18 self.assertIsNotNone(sut.compiler_language(['c++']))
19 self.assertIsNotNone(sut.compiler_language(['gcc']))
20 self.assertIsNotNone(sut.compiler_language(['g++']))
21 self.assertIsNotNone(sut.compiler_language(['/usr/local/bin/gcc']))
22 self.assertIsNotNone(sut.compiler_language(['/usr/local/bin/g++']))
[all …]
H A Dtest_libear.py17 self.assertIsNotNone(dirname)
28 self.assertIsNotNone(dirname)
/openbsd-src/gnu/llvm/clang/bindings/python/tests/cindex/
H A Dtest_type.py46 self.assertIsNotNone(teststruct, "Could not find teststruct.")
50 self.assertIsNotNone(fields[0].translation_unit)
58 self.assertIsNotNone(fields[1].translation_unit)
67 self.assertIsNotNone(fields[2].translation_unit)
75 self.assertIsNotNone(fields[3].translation_unit)
83 self.assertIsNotNone(fields[4].translation_unit)
91 self.assertIsNotNone(fields[5].translation_unit)
99 self.assertIsNotNone(fields[6].translation_unit)
107 self.assertIsNotNone(fields[7].translation_unit)
140 self.assertIsNotNone(teststruct, "Didn't find teststruct??")
[all …]
H A Dtest_cursor.py65 self.assertIsNotNone(cursor.translation_unit)
75 self.assertIsNotNone(tu_nodes[0].translation_unit)
133 self.assertIsNotNone(cls)
134 self.assertIsNotNone(foo)
135 self.assertIsNotNone(bar)
288 self.assertIsNotNone(cls)
289 self.assertIsNotNone(x_)
290 self.assertIsNotNone(y_)
304 self.assertIsNotNone(cls)
305 self.assertIsNotNone(foo)
[all …]
H A Dtest_location.py30 self.assertIsNotNone(one)
31 self.assertIsNotNone(two)
41 self.assertIsNotNone(one)
42 self.assertIsNotNone(two)
64 self.assertIsNotNone(one)
H A Dtest_comment.py30 self.assertIsNotNone(test1, "Could not find test1.")
H A Dtest_code_completion.py15 self.assertIsNotNone(cr)
H A Dtest_translation_unit.py205 self.assertIsNotNone(foo)
221 self.assertIsNotNone(foo)
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
H A Dgdbremote_testcase.py368 self.assertIsNotNone(server)
380 self.assertIsNotNone(server)
488 self.assertIsNotNone(inferior)
518 self.assertIsNotNone(server)
584 self.assertIsNotNone(context)
586 self.assertIsNotNone(process_info_raw)
596 self.assertIsNotNone(val)
610 self.assertIsNotNone(reg_info_responses)
672 self.assertIsNotNone(reg_infos)
686 self.assertIsNotNone(key_val_text)
[all …]
H A Dlldbgdbserverutils.py176 asserter.assertIsNotNone(content)
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbdwarf.py205 self.assertIsNotNone(Context)
207 self.assertIsNotNone(p_response)
H A Dlldbinline.py147 self.assertIsNotNone(process, PROCESS_IS_VALID)
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_program.py142 self.assertIsNotNone(program.msg)
H A Dtest_case.py1163 self.assertIsNotNone('DjZoPloGears on Rails')
1164 self.assertRaises(self.failureException, self.assertIsNotNone, None)
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcase.py1037 def assertIsNotNone(self, obj, msg=None): member in TestCase