Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/tools/scan-build-py/tests/unit/
H A Dtest_compilation.py27 self.assertIsNone(sut.compiler_language([]))
28 self.assertIsNone(sut.compiler_language(['']))
29 self.assertIsNone(sut.compiler_language(['ld']))
30 self.assertIsNone(sut.compiler_language(['as']))
62 self.assertIsNone(
79 self.assertIsNone(
81 self.assertIsNone(
111 self.assertIsNone(sut.classify_source('file.o'))
112 self.assertIsNone(sut.classify_source('file.exe'))
113 self.assertIsNone(sut.classify_source('/path/file.o'))
[all …]
H A Dtest_analyze.py267 self.assertIsNone(sut.language_check(input, spy.call))
268 self.assertIsNone(spy.arg)
311 self.assertIsNone(sut.arch_check(input, spy.call))
312 self.assertIsNone(spy.arg)
/llvm-project-15.0.7/clang/utils/check_cfc/
H A Dtest_check_cfc.py65 self.assertIsNone(
68 self.assertIsNone(
71 self.assertIsNone(check_cfc.get_output_file(['clang', '-c', 'test.c']))
79 self.assertIsNone(check_cfc.derive_output_file(['clang', '--version']))
139 self.assertIsNone(check_cfc.get_input_file(['clang']))
147 self.assertIsNone(
149 self.assertIsNone(
152 self.assertIsNone(check_cfc.get_input_file(['clang', 'test.i']))
153 self.assertIsNone(check_cfc.get_input_file(['clang', 'test.ii']))
/llvm-project-15.0.7/clang/bindings/python/tests/cindex/
H A Dtest_comment.py46 self.assertIsNone(raw)
47 self.assertIsNone(brief)
/llvm-project-15.0.7/lldb/test/API/python_api/lldbutil/iter/
H A DTestRegistersIterator.py85 self.assertIsNone(REGs)
99 self.assertIsNone(REGs)
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_program.py138 self.assertIsNone(program.msg)
204 self.assertIsNone(FakeRunner.initArgs)
H A Dtest_result.py28 self.assertIsNone(result._stdout_buffer)
29 self.assertIsNone(result._stderr_buffer)
H A Dtest_case.py571 self.assertIsNone(self.shortDescription())
1162 self.assertIsNone(None)
1163 self.assertRaises(self.failureException, self.assertIsNone, False)
H A Dtest_break.py157 self.assertIsNone(ref())
/llvm-project-15.0.7/lldb/test/API/python_api/sbplatform/
H A DTestSBPlatform.py38 self.assertIsNone(dbg_platform.GetWorkingDirectory())
/llvm-project-15.0.7/lldb/test/API/functionalities/gdb_remote_client/
H A DTestPlatformClient.py104 self.assertIsNone(plat.GetWorkingDirectory())
/llvm-project-15.0.7/lldb/test/API/functionalities/paths/
H A DTestPaths.py33 self.assertIsNone(f.GetFilename())
/llvm-project-15.0.7/lldb/test/API/python_api/debugger/
H A DTestDebuggerAPI.py118 self.assertIsNone(platform3.GetWorkingDirectory())
/llvm-project-15.0.7/lldb/test/API/qemu/
H A DTestQemuLaunch.py224 self.assertIsNone(env.Get(var(4)))
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcase.py1036 def assertIsNone(self, obj, msg=None): member in TestCase