Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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']))
31 self.assertIsNone(sut.compiler_language(['/usr/local/bin/compiler']))
59 self.assertIsNone(sut.split_command(['clang', '-E', 'source.c']))
60 self.assertIsNone(sut.split_command(['clang', '-c', '-E', 'source.c']))
61 self.assertIsNone(sut.split_command(['clang', '-c', '-M', 'source.c']))
62 self.assertIsNone(
79 self.assertIsNone(
[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)
/openbsd-src/gnu/llvm/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']))
/openbsd-src/gnu/llvm/clang/bindings/python/tests/cindex/
H A Dtest_comment.py46 self.assertIsNone(raw)
47 self.assertIsNone(brief)
/openbsd-src/gnu/llvm/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.py570 self.assertIsNone(self.shortDescription())
1161 self.assertIsNone(None)
1162 self.assertRaises(self.failureException, self.assertIsNone, False)
H A Dtest_break.py157 self.assertIsNone(ref())
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcase.py1031 def assertIsNone(self, obj, msg=None): member in TestCase