Home
last modified time | relevance | path

Searched refs:testSuite (Results 1 – 25 of 30) sorted by relevance

12

/external/selinux/libsepol/cil/test/unit/
DCuTest.c261 void CuSuiteInit(CuSuite* testSuite) in CuSuiteInit() argument
263 testSuite->count = 0; in CuSuiteInit()
264 testSuite->failCount = 0; in CuSuiteInit()
265 memset(testSuite->list, 0, sizeof(testSuite->list)); in CuSuiteInit()
270 CuSuite* testSuite = CU_ALLOC(CuSuite); in CuSuiteNew() local
271 CuSuiteInit(testSuite); in CuSuiteNew()
272 return testSuite; in CuSuiteNew()
275 void CuSuiteDelete(CuSuite *testSuite) in CuSuiteDelete() argument
280 if (testSuite->list[n]) in CuSuiteDelete()
282 CuTestDelete(testSuite->list[n]); in CuSuiteDelete()
[all …]
DCuTest.h130 void CuSuiteInit(CuSuite* testSuite);
132 void CuSuiteDelete(CuSuite *testSuite);
133 void CuSuiteAdd(CuSuite* testSuite, CuTest *testCase);
134 void CuSuiteAddSuite(CuSuite* testSuite, CuSuite* testSuite2);
135 void CuSuiteRun(CuSuite* testSuite);
136 void CuSuiteSummary(CuSuite* testSuite, CuString* summary);
137 void CuSuiteDetails(CuSuite* testSuite, CuString* details);
/external/boringssl/src/fipstools/
Drun_cavp.go54 type testSuite struct { struct
68 func (t *testSuite) getDirectory() string { argument
72 var aesGCMTests = testSuite{
84 var aesTests = testSuite{
129 var ecdsa2KeyPairTests = testSuite{
136 var ecdsa2PKVTests = testSuite{
143 var ecdsa2SigGenTests = testSuite{
153 var ecdsa2SigVerTests = testSuite{
160 var rsa2KeyGenTests = testSuite{
169 var rsa2SigGenTests = testSuite{
[all …]
/external/antlr/gunit/src/main/java/org/antlr/gunit/swingui/runner/
DgUnitAdapter.java45 private TestSuite testSuite; field in gUnitAdapter
51 testSuite = suite; in gUnitAdapter()
55 if (testSuite == null) in run()
62 … final CharStream input = new ANTLRFileStream(testSuite.getTestSuiteFile().getCanonicalPath()); in run()
72 testSuite.getTestSuiteFile().getParent(), testSuite); in run()
DNotifiedTestExecuter.java40 private TestSuite testSuite ; field in NotifiedTestExecuter
45 testSuite = suite; in NotifiedTestExecuter()
55 final Rule rule = testSuite.getRule(ruleName); in onFail()
68 final Rule rule = testSuite.getRule(ruleName); in onPass()
DTestSuiteAdapter.java41 public TestSuiteAdapter(TestSuite testSuite) { in TestSuiteAdapter() argument
42 model = testSuite; in TestSuiteAdapter()
/external/vogar/src/vogar/target/junit/junit3/
DTestSuiteTransformer.java68 TestSuite testSuite, String defaultName, Description suiteDescription) { in transformSuite() argument
70 int count = testSuite.testCount(); in transformSuite()
71 String name = testSuite.getName(); in transformSuite()
76 Test test = testSuite.testAt(i); in transformSuite()
100 TestSuite testSuite = (TestSuite) test; in makeDescription() local
101 Description description = Description.createSuiteDescription(testSuite.getName()); in makeDescription()
102 int count = testSuite.testCount(); in makeDescription()
104 Test childTest = testSuite.testAt(i); in makeDescription()
/external/vogar/test/vogar/target/junit3/
DLongSuite.java28 TestSuite testSuite = new TestSuite(LongSuite.class.getName()); in suite() local
29 testSuite.addTestSuite(LongTest.class); in suite()
30 testSuite.addTestSuite(LongTest2.class); in suite()
31 return testSuite; in suite()
/external/swiftshader/third_party/LLVM/utils/lit/lit/
DTestFormats.py57 def getTestsInDirectory(self, testSuite, path_in_suite, argument
59 source_path = testSuite.getSourcePath(path_in_suite)
78 yield Test.Test(testSuite, testPath, localConfig)
103 def getTestsInDirectory(self, testSuite, path_in_suite, argument
105 source_path = testSuite.getSourcePath(path_in_suite)
116 yield Test.Test(testSuite, path_in_suite + (filename,),
157 def getTestsInDirectory(self, testSuite, path_in_suite, argument
161 dir = testSuite.getSourcePath(path_in_suite)
181 test = Test.Test(testSuite,
/external/llvm/utils/lit/lit/formats/
Dbase.py14 def getTestsInDirectory(self, testSuite, path_in_suite, argument
16 source_path = testSuite.getSourcePath(path_in_suite)
27 yield lit.Test.Test(testSuite, path_in_suite + (filename,),
52 def getTestsInDirectory(self, testSuite, path_in_suite, argument
56 dir = testSuite.getSourcePath(path_in_suite)
77 testSuite, path_in_suite + tuple(suffix.split(os.sep)),
Dgoogletest.py71 def getTestsInExecutable(self, testSuite, path_in_suite, execpath, argument
79 yield lit.Test.Test(testSuite, testPath, localConfig, file_path=execpath)
81 def getTestsInDirectory(self, testSuite, path_in_suite, argument
83 source_path = testSuite.getSourcePath(path_in_suite)
94 testSuite, dirpath_in_suite, execpath,
99 testSuite, path_in_suite, filepath,
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/formats/
Dbase.py13 def getTestsInDirectory(self, testSuite, path_in_suite, argument
15 source_path = testSuite.getSourcePath(path_in_suite)
26 yield lit.Test.Test(testSuite, path_in_suite + (filename,),
51 def getTestsInDirectory(self, testSuite, path_in_suite, argument
55 dir = testSuite.getSourcePath(path_in_suite)
76 testSuite, path_in_suite + tuple(suffix.split(os.sep)),
Dgoogletest.py82 def getTestsInDirectory(self, testSuite, path_in_suite, argument
84 source_path = testSuite.getSourcePath(path_in_suite)
96 yield lit.Test.Test(testSuite, testPath, localConfig,
/external/antlr/gunit/src/main/java/org/antlr/gunit/swingui/model/
DTestSuiteFactory.java116 public static boolean saveTestSuite(TestSuite testSuite) { in saveTestSuite() argument
117 final String data = getScript(testSuite); in saveTestSuite()
119 FileWriter fw = new FileWriter(testSuite.getTestSuiteFile()); in saveTestSuite()
135 public static String getScript(TestSuite testSuite) { in getScript() argument
136 if(testSuite == null) return null; in getScript()
138 gUnitScript.setAttribute("testSuite", testSuite); in getScript()
/external/antlr/gunit/src/main/java/org/antlr/gunit/swingui/
DRuleListController.java61 private TestSuite testSuite = null; field in RuleListController
72 testSuite = newTestSuite; in setTestSuite()
145 if(testSuite == null) in RuleListModel()
150 return testSuite.getRuleCount(); in getSize()
154 return testSuite.getRule(index); in getElementAt()
DRunnerController.java195 public RunnerTreeModel(TestSuite testSuite) { in RunnerTreeModel() argument
196 super(new TestSuiteTreeNode(testSuite)); in RunnerTreeModel()
/external/antlr/gunit/src/main/resources/org/antlr/gunit/swingui/
Dgunit.stg3 gUnitFile(testSuite) ::= <<gunit <testSuite.grammarName>;
5 <testSuite.rulesForStringTemplate:testGroup()>
/external/testng/src/test/java/test/junit/testsetup/
DTestSuiteContainerWrapper.java11 public TestSuiteContainerWrapper(TestSuite testSuite, Class dataImpl) { in TestSuiteContainerWrapper() argument
12 super(testSuite); in TestSuiteContainerWrapper()
13 _test = testSuite; in TestSuiteContainerWrapper()
/external/toolchain-utils/automation/
Dall_tests.py15 testSuite = unittest.TestSuite(suites) variable
16 text_runner = unittest.TextTestRunner().run(testSuite)
/external/llvm/utils/lit/examples/many-tests/
Dlit.cfg9 def getTestsInDirectory(self, testSuite, path_in_suite,
13 yield Test.Test(testSuite, path_in_suite + (test_name,),
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/examples/many-tests/
Dlit.cfg9 def getTestsInDirectory(self, testSuite, path_in_suite,
13 yield Test.Test(testSuite, path_in_suite + (test_name,),
/external/libcxx/utils/libcxx/test/
Dgooglebenchmark.py72 def getTestsInDirectory(self, testSuite, path_in_suite, argument
74 source_path = testSuite.getSourcePath(path_in_suite)
86 yield lit.Test.Test(testSuite, testPath, localConfig,
Dformat.py61 def getTestsInDirectory(self, testSuite, path_in_suite, argument
63 source_path = testSuite.getSourcePath(path_in_suite)
73 yield lit.Test.Test(testSuite, path_in_suite + (filename,),
/external/antlr/gunit/src/main/java/org/antlr/gunit/
DGrammarInfo.java89 public void addRuleTestSuite(gUnitTestSuite testSuite) { in addRuleTestSuite() argument
90 this.ruleTestSuites.add(testSuite); in addRuleTestSuite()
/external/testng/src/test/java/test/
DJUnit4Test.java37 public void testSuite() { in testSuite() method in JUnit4Test

12