Home
last modified time | relevance | path

Searched refs:assertNotIn (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/clang/utils/check_cfc/
H A Dtest_check_cfc.py15 self.assertNotIn('-g', check_cfc.flip_dash_g(['clang', '-c', '-g']))
16 self.assertNotIn(
25 self.assertNotIn(
34 self.assertNotIn(bin_path, stripped_path_var.split(os.pathsep))
38 self.assertNotIn(r'/usr//bin',
44 self.assertNotIn(
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_case.py641 self.assertNotIn('d', 'abc')
642 self.assertNotIn(0, [1, 2, 3])
643 self.assertNotIn('otter', animals)
650 self.assertRaises(self.failureException, self.assertNotIn, 'c', 'abc')
652 self.failureException, self.assertNotIn, 1, [
654 self.assertRaises(self.failureException, self.assertNotIn, 'cow',
1108 self.assertNotIn(omitted, msg)
1118 self.assertNotIn(omitted, msg)
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbpexpect.py69 self.assertNotIn('\n', cmd)
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcase.py884 def assertNotIn(self, member, container, msg=None): member in TestCase