Home
last modified time | relevance | path

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

/external/antlr/runtime/Python/tests/
Dt018llstar.py25 testOutput = open(outputPath).read()
27 success = (output == testOutput)
30 r = d.compare(output.splitlines(1), testOutput.splitlines(1))
Dt020fuzzy.py28 testOutput = open(outputPath).read()
30 success = (output == testOutput)
33 r = d.compare(output.splitlines(1), testOutput.splitlines(1))
Dt012lexerXML.py42 testOutput = unicode(open(outputPath).read(), 'utf-8')
44 success = (output == testOutput)
47 r = d.compare(output.splitlines(1), testOutput.splitlines(1))
/external/skqp/infra/pathkit/gold/
Dwasm_gold_aggregator.go113 testOutput := reportBody{}
114 if err := json.Unmarshal(body, &testOutput); err != nil {
121 if hash, err = writeBase64EncodedPNG(testOutput.Data); err != nil {
135 "name": testOutput.TestName,
136 "config": testOutput.OutputType,
/external/skia/infra/wasm-common/gold/
Dwasm_gold_aggregator.go115 testOutput := reportBody{}
116 if err := json.Unmarshal(body, &testOutput); err != nil {
123 if hash, err = writeBase64EncodedPNG(testOutput.Data); err != nil {
139 "name": testOutput.TestName,
140 "config": testOutput.OutputType,
/external/skia/infra/lottiecap/gold/
Dlottie-web-aggregator.go106 testOutput := reportBody{}
107 if err := json.Unmarshal(body, &testOutput); err != nil {
114 if hash, err = writeBase64EncodedPNG(testOutput.Data); err != nil {
128 "name": testOutput.TestName,
/external/skqp/infra/lottiecap/gold/
Dlottie-web-aggregator.go107 testOutput := reportBody{}
108 if err := json.Unmarshal(body, &testOutput); err != nil {
115 if hash, err = writeBase64EncodedPNG(testOutput.Data); err != nil {
129 "name": testOutput.TestName,
/external/antlr/runtime/Python3/tests/
Dt020fuzzy.py29 testOutput = f.read()
31 self.assertEqual(output, testOutput)
Dt018llstar.py26 testOutput = f.read()
28 self.assertEqual(output, testOutput)
Dt012lexerXML.py45 testOutput = f.read()
47 self.assertEqual(output, testOutput)
/external/boringssl/src/util/
Dall_tests.go458 testOutput := testresult.NewResults()
468 testOutput.AddSkip(test.longName())
473 testOutput.AddResult(test.longName(), "CRASH")
478 testOutput.AddResult(test.longName(), "FAIL")
481 testOutput.AddResult(test.longName(), "PASS")
486 if err := testOutput.WriteToFile(*jsonOutput); err != nil {
/external/libcxx/utils/google-benchmark/tools/gbench/
Dreport.py281 testOutput = os.path.join(testInputs, 'test3_run0.json')
282 with open(testOutput, 'r') as f:
355 testOutput = os.path.join(testInputs, 'test2_run.json')
356 with open(testOutput, 'r') as f:
/external/google-benchmark/tools/gbench/
Dreport.py300 testOutput = os.path.join(testInputs, 'test3_run0.json')
301 with open(testOutput, 'r') as f:
374 testOutput = os.path.join(testInputs, 'test2_run.json')
375 with open(testOutput, 'r') as f:
/external/openssh/
Dlogintest.c240 testOutput() in testOutput() function
297 if (be_verbose && !testOutput()) in main()
/external/angle/src/tests/gl_tests/
DCopyTextureTest.cpp1689 auto testOutput = [this](GLuint texture, const GLColor &expectedColor) { in TEST_P() local
1733 auto testCopyCombination = [testOutput](GLenum sourceInternalFormat, GLenum sourceFormat, in TEST_P()
1750 testOutput(destTexture, expectedColor); in TEST_P()
1753 auto testSubCopyCombination = [testOutput](GLenum sourceInternalFormat, GLenum sourceFormat, in TEST_P()
1771 testOutput(destTexture, expectedColor); in TEST_P()
1828 auto testOutput = [this](GLuint texture, const GLColor32F &expectedColor) { in TEST_P() local
1872 auto testCopyCombination = [testOutput](GLenum sourceInternalFormat, GLenum sourceFormat, in TEST_P()
1889 testOutput(destTexture, expectedColor); in TEST_P()
1952 auto testOutput = [this](GLuint texture, const GLColor32U &expectedColor) { in TEST_P() local
2004 auto testCopyCombination = [testOutput](GLenum sourceInternalFormat, GLenum sourceFormat, in TEST_P()
[all …]
/external/vogar/src/vogar/
DClassFileIndex.java89 public Set<File> suggestClasspaths(String testOutput) { in suggestClasspaths() argument
93 Matcher matcher = pattern.matcher(testOutput); in suggestClasspaths()
/external/google-breakpad/src/testing/test/
Dgmock_output_test.py157 def testOutput(self): member in GMockOutputTest
/external/googletest/googlemock/test/
Dgmock_output_test.py157 def testOutput(self): member in GMockOutputTest
/external/google-breakpad/src/testing/gtest/test/
Dgtest_output_test.py278 def testOutput(self): member in GTestOutputTest
/external/googletest/googletest/test/
Dgoogletest-output-test.py281 def testOutput(self): member in GTestOutputTest
/external/tensorflow/tensorflow/python/ops/
Dnn_xent_test.py144 def testOutput(self): member in WeightedCrossEntropyTest
/external/u-boot/tools/buildman/
Dtest.py175 def testOutput(self): member in TestBuild
/external/toolchain-utils/crosperf/
Dresults_report_unittest.py180 def testOutput(self, mock_getcooldown): member in TextResultsReportTest
/external/boringssl/src/ssl/test/runner/
Drunner.go15302 testOutput := testresult.NewResults()
15326 testOutput.AddSkip(msg.test.name)
15328 testOutput.AddResult(msg.test.name, "SKIP")
15333 testOutput.AddResult(msg.test.name, "FAIL")
15340 testOutput.AddResult(msg.test.name, "PASS")
15352 doneChan <- testOutput
15477 testOutput := <-doneChan
15482 if err := testOutput.WriteToFile(*jsonOutput); err != nil {
15487 if !testOutput.HasUnexpectedResults() {
/external/tensorflow/tensorflow/python/eager/
Dbackprop_test.py1121 def testOutput(self): member in BackpropTest