Home
last modified time | relevance | path

Searched refs:testContext (Results 1 – 25 of 63) sorted by relevance

123

/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationSmokeTests.cpp604 void generateWork (TestContext& testContext) in generateWork() argument
606 const DeviceInterface& deviceInterface = testContext.vkd; in generateWork()
607 const deUint32 queueFamilyNdx = testContext.queueFamilyIndex; in generateWork()
612 testContext.device, in generateWork()
613 testContext.binaryCollection.get("glslvert"), in generateWork()
617 testContext.device, in generateWork()
618 testContext.binaryCollection.get("glslfrag"), in generateWork()
692 bufferParameters.memory = testContext.vertices; in generateWork()
693 bufferParameters.size = testContext.numVertices * sizeof(tcu::Vec4); in generateWork()
699 …createVulkanBuffer(deviceInterface, testContext.device, testContext.allocator, bufferParameters, b… in generateWork()
[all …]
/external/testng/src/main/java/org/testng/remote/strprotocol/
DTestMessage.java40 public TestMessage(final ITestContext testContext, final boolean isTestStart) { in TestMessage() argument
42 testContext.getSuite().getName(), in TestMessage()
43 testContext.getCurrentXmlTest().getName(), in TestMessage()
44 testContext.getAllTestMethods().length, in TestMessage()
45 testContext.getPassedTests().size(), in TestMessage()
46 testContext.getFailedTests().size(), in TestMessage()
47 testContext.getSkippedTests().size(), in TestMessage()
48 testContext.getFailedButWithinSuccessPercentageTests().size()); in TestMessage()
/external/testng/src/main/java/org/testng/internal/invokers/
DInvokedMethodListenerInvoker.java39 ITestResult testResult, ITestContext testContext) { in InvokedMethodListenerInvoker() argument
41 m_testContext = testContext; in InvokedMethodListenerInvoker()
77 ITestContext testContext); in callMethod() argument
83 ITestResult testResult, ITestContext testContext) { in callMethod() argument
91 ITestResult testResult, ITestContext testContext) { in callMethod() argument
92 listener.beforeInvocation(invokedMethod, testResult, testContext); in callMethod()
99 ITestResult testResult, ITestContext testContext) { in callMethod() argument
107 ITestResult testResult, ITestContext testContext) { in callMethod() argument
108 listener.afterInvocation(invokedMethod, testResult, testContext); in callMethod()
/external/testng/src/main/java/org/testng/reporters/
DTestHTMLReporter.java247 public static void generateLog(ITestContext testContext, in generateLog() argument
259 .append("<title>TestNG: ").append(testContext.getName()).append("</title>\n") in generateLog()
265 Date startDate = testContext.getStartDate(); in generateLog()
266 Date endDate = testContext.getEndDate(); in generateLog()
269 testContext.getPassedTests().size() + in generateLog()
270 testContext.getFailedButWithinSuccessPercentageTests().size(); in generateLog()
271 int failed = testContext.getFailedTests().size(); in generateLog()
272 int skipped = testContext.getSkippedTests().size(); in generateLog()
277 .append("<h2 align='center'>").append(testContext.getName()).append("</h2>") in generateLog()
284 ….append("<td>Started on:</td><td>").append(testContext.getStartDate().toString()).append("</td>\n") in generateLog()
[all …]
DEmailableReporter.java91 ITestContext testContext = r2.getTestContext(); in generateMethodSummaryReport() local
92 String testName = testContext.getName(); in generateMethodSummaryReport()
94 resultSummary(suite, testContext.getFailedConfigurations(), testName, in generateMethodSummaryReport()
96 resultSummary(suite, testContext.getFailedTests(), testName, "failed", in generateMethodSummaryReport()
98 resultSummary(suite, testContext.getSkippedConfigurations(), testName, in generateMethodSummaryReport()
100 resultSummary(suite, testContext.getSkippedTests(), testName, in generateMethodSummaryReport()
102 resultSummary(suite, testContext.getPassedTests(), testName, "passed", in generateMethodSummaryReport()
116 ITestContext testContext = r2.getTestContext(); in generateMethodDetailReport() local
118 m_out.println("<h1>" + testContext.getName() + "</h1>"); in generateMethodDetailReport()
120 resultDetail(testContext.getFailedConfigurations()); in generateMethodDetailReport()
[all …]
DXMLReporter.java47 ITestContext testContext = sr.getTestContext(); in generateReport() local
48 passed += testContext.getPassedTests().size(); in generateReport()
49 failed += testContext.getFailedTests().size(); in generateReport()
50 skipped += testContext.getSkippedTests().size(); in generateReport()
156 ITestContext testContext = result.getValue().getTestContext(); in getSuiteAttributes() local
157 Date startDate = testContext.getStartDate(); in getSuiteAttributes()
158 Date endDate = testContext.getEndDate(); in getSuiteAttributes()
DXMLSuiteResultWriter.java66 ITestContext testContext = suiteResult.getTestContext(); in writeAllToBuffer() local
67 addAllTestResults(testResults, testContext.getPassedTests()); in writeAllToBuffer()
68 addAllTestResults(testResults, testContext.getFailedTests()); in writeAllToBuffer()
69 addAllTestResults(testResults, testContext.getSkippedTests()); in writeAllToBuffer()
70 addAllTestResults(testResults, testContext.getPassedConfigurations()); in writeAllToBuffer()
71 addAllTestResults(testResults, testContext.getSkippedConfigurations()); in writeAllToBuffer()
72 addAllTestResults(testResults, testContext.getFailedConfigurations()); in writeAllToBuffer()
73 addAllTestResults(testResults, testContext.getFailedButWithinSuccessPercentageTests()); in writeAllToBuffer()
DFailedReporter.java65 ITestContext testContext = suiteResult.getTestContext(); in generateFailureSuite() local
68 xmlTests.get(testContext.getName()), in generateFailureSuite()
69 testContext, in generateFailureSuite()
70 testContext.getFailedTests().getAllResults(), in generateFailureSuite()
71 testContext.getSkippedTests().getAllResults()); in generateFailureSuite()
/external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/
DSSLContextTest.java617 TestSSLContext testContext = TestSSLContext.create(); in test_SSLContextTest_TestSSLContext_create() local
618 assertNotNull(testContext); in test_SSLContextTest_TestSSLContext_create()
619 assertNotNull(testContext.clientKeyStore); in test_SSLContextTest_TestSSLContext_create()
620 assertNull(testContext.clientStorePassword); in test_SSLContextTest_TestSSLContext_create()
621 assertNotNull(testContext.serverKeyStore); in test_SSLContextTest_TestSSLContext_create()
622 assertNotNull(testContext.clientKeyManagers); in test_SSLContextTest_TestSSLContext_create()
623 assertNotNull(testContext.serverKeyManagers); in test_SSLContextTest_TestSSLContext_create()
624 if (testContext.clientKeyManagers.length == 0) { in test_SSLContextTest_TestSSLContext_create()
627 if (testContext.serverKeyManagers.length == 0) { in test_SSLContextTest_TestSSLContext_create()
630 assertNotNull(testContext.clientKeyManagers[0]); in test_SSLContextTest_TestSSLContext_create()
[all …]
/external/skia/tests/
DGrContextFactoryTest.cpp84 REPORTER_ASSERT(reporter, info1.testContext()); in DEF_GPUTEST()
92 REPORTER_ASSERT(reporter, info2.testContext()); in DEF_GPUTEST()
132 REPORTER_ASSERT(reporter, info3.testContext() != info4.testContext()); in DEF_GPUTEST()
137 REPORTER_ASSERT(reporter, info5.testContext()); in DEF_GPUTEST()
139 REPORTER_ASSERT(reporter, info5.testContext() != info4.testContext()); in DEF_GPUTEST()
DImageTest.cpp384 sk_gpu_test::TestContext* testContext = contextInfo.testContext(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local
387 testContext->makeCurrent(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
399 auto restore = otherContextInfo.testContext()->makeCurrentAndAutoRestore(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
901 sk_gpu_test::TestContext* testContext = ctxInfo.testContext(); in test_cross_context_image() local
905 sk_gpu_test::TestContext* otherTestContext = otherContextInfo.testContext(); in test_cross_context_image()
917 testContext->makeCurrent(); in test_cross_context_image()
924 testContext->makeCurrent(); in test_cross_context_image()
930 testContext->makeCurrent(); in test_cross_context_image()
936 testContext->makeCurrent(); in test_cross_context_image()
953 testContext->makeCurrent(); in test_cross_context_image()
[all …]
/external/skqp/tests/
DGrContextFactoryTest.cpp84 REPORTER_ASSERT(reporter, info1.testContext()); in DEF_GPUTEST()
92 REPORTER_ASSERT(reporter, info2.testContext()); in DEF_GPUTEST()
132 REPORTER_ASSERT(reporter, info3.testContext() != info4.testContext()); in DEF_GPUTEST()
137 REPORTER_ASSERT(reporter, info5.testContext()); in DEF_GPUTEST()
139 REPORTER_ASSERT(reporter, info5.testContext() != info4.testContext()); in DEF_GPUTEST()
DImageTest.cpp383 sk_gpu_test::TestContext* testContext = contextInfo.testContext(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local
386 testContext->makeCurrent(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
398 auto restore = otherContextInfo.testContext()->makeCurrentAndAutoRestore(); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
821 sk_gpu_test::TestContext* testContext = ctxInfo.testContext(); in test_cross_context_image() local
825 sk_gpu_test::TestContext* otherTestContext = otherContextInfo.testContext(); in test_cross_context_image()
837 testContext->makeCurrent(); in test_cross_context_image()
844 testContext->makeCurrent(); in test_cross_context_image()
850 testContext->makeCurrent(); in test_cross_context_image()
856 testContext->makeCurrent(); in test_cross_context_image()
869 testContext->makeCurrent(); in test_cross_context_image()
[all …]
/external/deqp/external/openglcts/modules/gl/
Dgl4cSparseBufferTests.hpp178 …AtomicCounterBufferStorageTestCase(const glw::Functions& gl, tcu::TestContext& testContext, glw::G…
238 …ureStorageTestCase(const glw::Functions& gl, deqp::Context& context, tcu::TestContext& testContext,
289 …ClearOpsBufferStorageTestCase(const glw::Functions& gl, tcu::TestContext& testContext, glw::GLint …
348 …CopyOpsBufferStorageTestCase(const glw::Functions& gl, tcu::TestContext& testContext, glw::GLint p…
426 IndirectDispatchBufferStorageTestCase(const glw::Functions& gl, tcu::TestContext& testContext,
470 …InvalidateBufferStorageTestCase(const glw::Functions& gl, tcu::TestContext& testContext, glw::GLin…
515 …PixelPackBufferStorageTestCase(const glw::Functions& gl, tcu::TestContext& testContext, glw::GLint…
570 …PixelUnpackBufferStorageTestCase(const glw::Functions& gl, tcu::TestContext& testContext, glw::GLi…
672 …QuadsBufferStorageTestCase(const glw::Functions& gl, tcu::TestContext& testContext, glw::GLint pag…
752 …QueryBufferStorageTestCase(const glw::Functions& gl, tcu::TestContext& testContext, glw::GLint pag…
[all …]
/external/owasp/sanitizer/src/tests/org/owasp/html/
DHtmlChangeReporterTest.java43 final Context testContext = new Context(); in testChangeReporting() local
51 assertSame(testContext, context); in testChangeReporting()
57 assertSame(testContext, context); in testChangeReporting()
66 renderer, listener, testContext); in testChangeReporting()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineSamplerTests.cpp55 SamplerTest (tcu::TestContext& testContext,
86 SamplerMagFilterTest (tcu::TestContext& testContext,
102 SamplerMinFilterTest (tcu::TestContext& testContext,
118 SamplerLodTest (tcu::TestContext& testContext,
141 SamplerAddressModesTest (tcu::TestContext& testContext,
165 SamplerTest::SamplerTest (tcu::TestContext& testContext, in SamplerTest() argument
172 : vkt::TestCase (testContext, name, description) in SamplerTest()
409 SamplerMagFilterTest::SamplerMagFilterTest (tcu::TestContext& testContext, in SamplerMagFilterTest() argument
415 : SamplerTest (testContext, name, description, imageViewType, imageFormat, 8, 0.0f) in SamplerMagFilterTest()
431 SamplerMinFilterTest::SamplerMinFilterTest (tcu::TestContext& testContext, in SamplerMinFilterTest() argument
[all …]
DvktPipelineCacheTests.cpp428 vkt::TestCase* newTestCase (tcu::TestContext& testContext, in newTestCase() argument
431 return new Test(testContext, in newTestCase()
506 CacheTest(tcu::TestContext& testContext, in CacheTest() argument
510 : vkt::TestCase (testContext, name, description) in CacheTest()
612 GraphicsCacheTest (tcu::TestContext& testContext, in GraphicsCacheTest() argument
616 : CacheTest (testContext, name, description, param) in GraphicsCacheTest()
1169 ComputeCacheTest (tcu::TestContext& testContext, in ComputeCacheTest() argument
1173 : CacheTest (testContext, name, description, param) in ComputeCacheTest()
1449 …PipelineFromCacheTest (tcu::TestContext& testContext, const std::string& name, const std::string&…
1454 PipelineFromCacheTest::PipelineFromCacheTest (tcu::TestContext& testContext, const std::string& nam… in PipelineFromCacheTest() argument
[all …]
/external/testng/src/main/java/org/testng/internal/
DTestMethodWorker.java52 ITestContext testContext, in TestMethodWorker() argument
61 m_testContext = testContext; in TestMethodWorker()
121 ITestContext testContext) in invokeTestMethods() argument
134 testContext); in invokeTestMethods()
298 ITestContext testContext, in SingleTestMethodWorker() argument
307 testContext, in SingleTestMethodWorker()
DInvoker.java107 ITestContext testContext, in Invoker() argument
114 m_testContext= testContext; in Invoker()
120 …m_continueOnFailedConfiguration = XmlSuite.CONTINUE.equals(testContext.getSuite().getXmlSuite().ge… in Invoker()
950 ITestContext testContext, in retryFailed() argument
963 allParameters, suite, testContext, null /* fedInstance */); in retryFailed()
978 ITestContext testContext, in createParameters() argument
990 instance, allParameterNames, parameters, null, suite, testContext, fedInstance, null); in createParameters()
1017 ITestContext testContext) in invokeTestMethods() argument
1031 final String okToProceed = checkDependencies(testMethod, testContext.getAllTestMethods()); in invokeTestMethods()
1045 testMethod.findMethodParameters(testContext.getCurrentXmlTest()); in invokeTestMethods()
[all …]
/external/deqp/modules/glshared/
DglsShaderConstExprTests.cpp75 std::vector<tcu::TestNode*> createTests (tcu::TestContext& testContext, in createTests() argument
169 ret.push_back(new ShaderLibraryCase(testContext, in createTests()
190 ret.push_back(new ShaderLibraryCase(testContext, in createTests()
223 ret.push_back(new ShaderLibraryCase(testContext, in createTests()
244 ret.push_back(new ShaderLibraryCase(testContext, in createTests()
/external/skia/tools/gpu/
DGrContextFactory.h182 TestContext* testContext() const { return fTestContext; } in testContext() function
192 ContextInfo(GrContextFactory::ContextType type, TestContext* testContext, GrContext* grContext, in ContextInfo() argument
194 : fType(type), fTestContext(testContext), fGrContext(grContext), fOptions(options) {} in ContextInfo()
/external/skqp/tools/gpu/
DGrContextFactory.h182 TestContext* testContext() const { return fTestContext; } in testContext() function
192 ContextInfo(GrContextFactory::ContextType type, TestContext* testContext, GrContext* grContext, in ContextInfo() argument
194 : fType(type), fTestContext(testContext), fGrContext(grContext), fOptions(options) {} in ContextInfo()
/external/testng/src/main/java/org/testng/
DTestListenerAdapter.java68 public void onStart(ITestContext testContext) { in onStart() argument
69 m_testContexts.add(testContext); in onStart()
73 public void onFinish(ITestContext testContext) { in onFinish() argument
/external/deqp/modules/egl/
DteglThreadCleanUpTests.cpp71 void testContext (EGLContext context) in testContext() function in deqp::egl::__anon3bc9df260111::Thread
111 testContext(*context); in run()
115 testContext(m_context); in run()
/external/deqp/modules/gles31/functional/
Des31fCopyImageTests.cpp1222 void renderTexture2DView (tcu::TestContext& testContext, in renderTexture2DView() argument
1232 tcu::TestLog& log = testContext.getLog(); in renderTexture2DView()
1312 void renderTexture2D (tcu::TestContext& testContext, in renderTexture2D() argument
1332 …renderTexture2DView(testContext, renderContext, textureRenderer, results, rng, name, info, refText… in renderTexture2D()
1340 …renderTexture2DView(testContext, renderContext, textureRenderer, results, rng, name, info, refText… in renderTexture2D()
1344 void renderTexture3DView (tcu::TestContext& testContext, in renderTexture3DView() argument
1354 tcu::TestLog& log = testContext.getLog(); in renderTexture3DView()
1384 void renderTexture3D (tcu::TestContext& testContext, in renderTexture3D() argument
1404 …renderTexture3DView(testContext, renderContext, textureRenderer, results, rng, name, info, refText… in renderTexture3D()
1412 …renderTexture3DView(testContext, renderContext, textureRenderer, results, rng, name, info, refText… in renderTexture3D()
[all …]

123