Home
last modified time | relevance | path

Searched refs:sut (Results 1 – 25 of 32) sorted by relevance

12

/external/clang/tools/scan-build-py/tests/unit/
Dtest_compilation.py7 import libscanbuild.compilation as sut namespace
14 self.assertIsNotNone(sut.compiler_language(['clang']))
15 self.assertIsNotNone(sut.compiler_language(['clang-3.6']))
16 self.assertIsNotNone(sut.compiler_language(['clang++']))
17 self.assertIsNotNone(sut.compiler_language(['clang++-3.5.1']))
18 self.assertIsNotNone(sut.compiler_language(['cc']))
19 self.assertIsNotNone(sut.compiler_language(['c++']))
20 self.assertIsNotNone(sut.compiler_language(['gcc']))
21 self.assertIsNotNone(sut.compiler_language(['g++']))
22 self.assertIsNotNone(sut.compiler_language(['/usr/local/bin/gcc']))
[all …]
Dtest_shell.py7 import libscanbuild.shell as sut namespace
15 self.assertEqual(sut.encode(sut.decode(value)), value)
23 self.assertEqual(sut.decode(sut.encode(value)), value)
33 self.assertEqual(sut.encode(['clang', "it's me", 'again']),
35 self.assertEqual(sut.encode(['clang', "it(s me", 'again)']),
37 self.assertEqual(sut.encode(['clang', 'redirect > it']),
39 self.assertEqual(sut.encode(['clang', '-DKEY="VALUE"']),
41 self.assertEqual(sut.encode(['clang', '-DKEY="value with spaces"']),
Dtest_report.py8 import libscanbuild.report as sut namespace
19 for bug in sut.parse_bug_html(file_name):
28 return sut.parse_crash(file_name)
106 result = sut.parse_crash(pp_file + '.info.txt')
117 self.assertEqual('file', sut.chop('/prefix', '/prefix/file'))
118 self.assertEqual('file', sut.chop('/prefix/', '/prefix/file'))
119 self.assertEqual('lib/file', sut.chop('/prefix/', '/prefix/lib/file'))
120 self.assertEqual('/prefix/file', sut.chop('', '/prefix/file'))
123 self.assertEqual('../src/file', sut.chop('/cwd', '/src/file'))
124 self.assertEqual('../src/file', sut.chop('/prefix/cwd',
[all …]
Dtest_intercept.py8 import libscanbuild.intercept as sut namespace
18 return list(sut.format_entry(trace))
31 return list(sut.format_entry(trace))[0]['file']
76 self.assertTrue(sut.is_preload_disabled(OSX))
79 self.assertFalse(sut.is_preload_disabled(OSX))
82 self.assertTrue(sut.is_preload_disabled(LINUX))
85 self.assertFalse(sut.is_preload_disabled(LINUX))
93 self.assertFalse(sut.is_preload_disabled(OSX))
94 self.assertFalse(sut.is_preload_disabled(LINUX))
96 self.assertFalse(sut.is_preload_disabled('unix'))
Dtest_runner.py8 import libscanbuild.runner as sut namespace
20 opts = sut.classify_parameters(cmd)
30 opts = sut.classify_parameters(cmd)
40 opts = sut.classify_parameters(cmd)
135 result = sut.run_analyzer(opts, spy.call)
183 sut.report_failure(opts)
215 sut.filter_debug_flags(opts, spy.call))
226 sut.set_file_path_relative(input, spy.call))
240 self.assertEqual(spy.success, sut.language_check(input, spy.call))
254 self.assertIsNone(sut.language_check(input, spy.call))
[all …]
Dtest_clang.py8 import libscanbuild.clang as sut namespace
20 result = sut.get_arguments(
29 Exception, sut.get_arguments,
36 result = sut.get_checkers('clang', [])
41 result = sut.get_active_checkers('clang', [])
Dtest_libear.py7 import libear as sut namespace
15 with sut.TemporaryDirectory() as tmpdir:
24 with sut.TemporaryDirectory() as tmpdir:
Dtest_analyze.py7 import libscanbuild.analyze as sut namespace
/external/autotest/site_utils/rpm_control_system/
Drpm_controller_unittest.py174 sut = rpm_controller.CiscoPOEController(self.SWITCH)
175 mock_ssh.expect(sut.POE_USERNAME_PROMPT, timeout=sut.LOGIN_TIMEOUT)
177 mock_ssh.expect(self.PWD, timeout=sut.LOGIN_TIMEOUT)
179 mock_ssh.expect(self.DEVICE, timeout=sut.LOGIN_TIMEOUT)
181 self.assertIsNotNone(sut._login())
186 sut = rpm_controller.CiscoPOEController(self.SWITCH)
188 self.mox.StubOutWithMock(sut, '_login')
189 sut._login().AndReturn(mock_ssh)
190 self.mox.StubOutWithMock(sut, '_verify_state')
191 sut._verify_state(self.PORT, 'ON', mock_ssh).AndReturn(True)
[all …]
/external/autotest/scheduler/shard/
Dshard_client_unittest.py195 sut = shard_client.get_shard_client()
197 sut.do_heartbeat()
207 sut.do_heartbeat()
220 sut.do_heartbeat()
247 sut = shard_client.get_shard_client()
249 sut.do_heartbeat()
257 sut.do_heartbeat()
263 sut.do_heartbeat()
282 sut = shard_client.get_shard_client()
284 original_process_heartbeat_response = sut.process_heartbeat_response
[all …]
/external/guice/extensions/persist/test/com/google/inject/persist/jpa/
DJpaPersistServiceTest.java36 private final JpaPersistService sut = field in JpaPersistServiceTest
50 sut.start(factory); in test_givenErrorOnEntityManagerClose_whenEndIsCalled_thenEntityManagerIsRemoved()
51 sut.begin(); in test_givenErrorOnEntityManagerClose_whenEndIsCalled_thenEntityManagerIsRemoved()
56 sut.end(); in test_givenErrorOnEntityManagerClose_whenEndIsCalled_thenEntityManagerIsRemoved()
59 assertThat(sut.isWorking(), is(false)); in test_givenErrorOnEntityManagerClose_whenEndIsCalled_thenEntityManagerIsRemoved()
/external/mockito/src/test/java/org/mockitousage/bugs/injection/
DParentTestMockInjectionTest.java26 assertNotNull(it.sut.daoFromParent); in injectMocksShouldInjectMocksFromTestSuperClasses()
27 assertNotNull(it.sut.daoFromSub); in injectMocksShouldInjectMocksFromTestSuperClasses()
37 @InjectMocks private TestedSystem sut = new TestedSystem(); field in ParentTestMockInjectionTest.ImplicitTest
48 sut.businessMethod(); in noNullPointerException()
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/utils/
DIOUtilsTest.java134 final InputStream sut = wrapper.wrap(in); in skip() local
135 Assert.assertEquals(10, IOUtils.skip(sut, 10)); in skip()
136 Assert.assertEquals(11, sut.read()); in skip()
/external/icu/icu4c/source/data/rbnf/
Dro.txt33 "100: una sut\u0103[ >>];",
55 "100: una sut\u0103[ >>];",
75 "100: una sut\u0103[ >>];",
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/
Dhy-fonipa-t-hy.txt348 հոգածության hoɡat͡sutʰjan
377 հանցագործությունների hant͡sʰaɡoɾt͡sutʰjunnɛɾi
378 հանցագործություն hant͡sʰaɡoɾt͡sutʰjun
379 հանցագործության hant͡sʰaɡoɾt͡sutʰjan
657 ամուսնալուծության amusnalut͡sutʰjan
682 Հանցագործության hant͡sʰaɡoɾt͡sutʰjan
Dblt-fonipa-t-blt.txt192 ꪎꪴꪒ sut˨
351 ꪎꪴꪒ sut˨
Dro-fonipa-t-ro.txt223 Suceava sut͡ʃe̯ava
Dja-t-pl-fonipa.txt308 want͡sut ワンツト
Dchr-fonipa-t-chr.txt375 ᏧᏣᏔᏊ t͡sut͡satakʷu
404 ᏧᏠᎯᏍᏗ t͡sut͡ɬohisdi
Dpl-fonipa-t-pl.txt305 Łancut want͡sut
Dund-Latn-t-und-gujr.txt646 ધરાસુતા dharāsutā
Dsat-fonipa-t-sat-Olck.txt1502 ᱥᱩᱛᱷᱮᱞᱮᱱᱰ sutʰelenɖ
/external/icu/icu4c/source/data/curr/
Dagq.txt111 "Lɔtì Lèsutù",
/external/icu/icu4c/source/data/region/
Dyav.txt180 SD{"sutáaŋ"}
/external/hyphenation-patterns/hu/
Dhyph-hu.pat.txt11104 dá2sut
20271 gá2sut
23029 hő2sut
27732 ká2sut
30088 lá2sut
45769 rá2sut
50815 2sutó
52140 tá2sut
60513 zá2sut

12