Home
last modified time | relevance | path

Searched refs:testDescription (Results 1 – 12 of 12) sorted by relevance

/third_party/libxml2/
Dregressions.py102 def runOneTest(testDescription, filename, inbase, errbase): argument
103 if 'execpath' in testDescription:
104 dir = testDescription['execpath'] + '/'
107 cmd = os.path.abspath(dir + testDescription['testprog'])
108 if 'flag' in testDescription:
109 for f in string.split(testDescription['flag']):
111 if 'stdin' not in testDescription:
113 if 'extarg' in testDescription:
114 cmd += ' ' + testDescription['extarg']
118 if 'resext' in testDescription:
[all …]
/third_party/flutter/flutter/packages/flutter_test/lib/src/
Dtest_exception_reporter.dart10 typedef TestExceptionReporter = void Function(FlutterErrorDetails details, String testDescription);
29 void _defaultTestExceptionReporter(FlutterErrorDetails errorDetails, String testDescription) {
37 if (testDescription.isNotEmpty)
38 additional = '\nThe test description was: $testDescription';
Dbinding.dart488 VoidCallback _createTestCompletionHandler(String testDescription, Completer<void> completer) {
495 reportTestException(_pendingExceptionDetails, testDescription);
/third_party/flutter/flutter/packages/flutter_test/test/custom_exception_reporter/
Dflutter_test_config.dart11 reportTestException = (FlutterErrorDetails details, String testDescription) {
14 expect(testDescription, 'custom exception reporter');
/third_party/flutter/flutter/dev/automated_tests/test_smoke_test/
Ddisallow_error_reporter_modification_test.dart11 reportTestException = (FlutterErrorDetails details, String testDescription) {};
/third_party/flutter/flutter/dev/devicelab/test/
Dmanifest_test.dart32 String testDescription,
36 test(testDescription, () {
/third_party/skia/third_party/externals/tint/tools/src/cmd/get-test-plan/
Dmain.go852 testDescription := "`WGSL Section " + sectionStr + " Test Plan`"
853 sb.WriteString(fmt.Sprintf(validationTestHeader, testDescription))
909 testDescription := fmt.Sprintf("`WGSL section %v.%v execution test`", section, y)
910 sb.WriteString(fmt.Sprintf(executionTestHeader, testDescription))
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
DvktApiBufferViewCreateTests.cpp427 const std::string testDescription = "vkBufferView test " + testName; in createBufferViewCreateTests() local
441 …usageGroup->addChild(new BufferViewTestCase(testCtx, testName.c_str(), testDescription.c_str(), te… in createBufferViewCreateTests()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderFConvertTests.cpp908 …std::string testDescription = std::string("Conversion from ") + kFloatNames[i] + " to " + kFloatNa… in createPrecisionFconvertGroup() local
910 newGroup->addChild(new FConvertTestCase(testCtx, testName, testDescription, params)); in createPrecisionFconvertGroup()
/third_party/protobuf/objectivec/Tests/
DGPBMessageTests.m434 - (void)testDescription { method
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmInstructionTests.cpp1127 std::string testDescription = "Unused variable test with " + location.toDescription(); in createUnusedVariableComputeTests() local
1129 …group->addChild(new SpvAsmComputeShaderCase(testCtx, testName.c_str(), testDescription.c_str(), sp… in createUnusedVariableComputeTests()
1177 std::string testDescription = "Unused function test with " + location.toDescription(); in createUnusedVariableComputeTests() local
1179 …group->addChild(new SpvAsmComputeShaderCase(testCtx, testName.c_str(), testDescription.c_str(), sp… in createUnusedVariableComputeTests()
/third_party/chromium/patch/
D0001-cve.patch124530 -def runOneTest(testDescription, filename, inbase, errbase):
124531 - if 'execpath' in testDescription:
124532 - dir = testDescription['execpath'] + '/'
124535 - cmd = os.path.abspath(dir + testDescription['testprog'])
124536 - if 'flag' in testDescription:
124537 - for f in string.split(testDescription['flag']):
124539 - if 'stdin' not in testDescription:
124541 - if 'extarg' in testDescription:
124542 - cmd += ' ' + testDescription['extarg']
124546 - if 'resext' in testDescription:
[all …]