HomeSort by relevance Sort by last modified time
    Searched defs:test_result (Results 1 - 25 of 47) sorted by null

1 2

  /system/update_engine/
testrunner.cc 50 int test_result = RUN_ALL_TESTS(); local
51 LOG(INFO) << "unittest return value: " << test_result;
52 return test_result;
  /external/boringssl/src/crypto/test/
file_test_gtest.cc 84 const testing::TestResult *test_result = local
86 int before_part_count = test_result->total_part_count();
93 for (int i = before_part_count; i < test_result->total_part_count(); i++) {
94 if (test_result->GetTestPartResult(i).failed()) {
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
unit_test.h 28 struct test_result { struct
36 void (*test_func)(struct test_result * result);
37 struct test_result result;
42 void test_begin(struct test_result * result);
43 void test_check(struct test_result * result, int cond);
  /external/deqp/external/openglcts/modules/glesext/texture_buffer/
esextcTextureBufferAtomicFunctions.cpp 178 bool test_result = true; local
209 test_result = false;
216 if (test_result)
esextcTextureBufferOperations.cpp 344 glw::GLboolean test_result = true; local
358 test_result = false;
366 test_result = false;
369 if (test_result)
    [all...]
  /external/ltp/testcases/kernel/device-drivers/uaccess/
ltp_uaccess.c 40 static int test_result; variable
55 return scnprintf(buf, PAGE_SIZE, "%d\n", test_result);
69 test_result = 0;
75 test_result = strncmp(test_str, buffer, str_size) ? 1 : 0;
78 test_result |= ch != test_str[0];
83 test_result = 1;
88 test_result |= 1;
  /external/ltp/testcases/kernel/firmware/fw_load_kernel/
ltp_fw_load.c 53 static int test_result; variable
101 return scnprintf(buf, PAGE_SIZE, "%d\n", test_result);
123 test_result |= (err == 0) << fw;
  /external/deqp/external/openglcts/modules/gl/
gl4cMapBufferAlignmentTests.cpp 121 bool test_result = true; local
130 test_result = false;
134 if (true == test_result)
210 bool test_result = true; local
294 test_result = false;
317 test_result = false;
338 test_result = false;
344 test_result = false;
362 if (true == test_result)
gl3cGLSLnoperspectiveTests.cpp 382 bool test_result = true; local
546 test_result = false;
632 if (true == test_result)
gl4cStencilTexturingTests.cpp 605 bool test_result = true; local
612 test_result = false;
620 test_result = false;
628 test_result = false;
636 test_result = false;
640 if (true == test_result)
1220 bool test_result = true; local
    [all...]
gl4cBufferStorageTests.cpp 1657 bool test_result = true; local
2009 bool test_result = true; local
2183 bool test_result = true; local
2347 bool test_result = true; local
2554 bool test_result = true; local
2822 bool test_result = true; local
2998 bool test_result = true; local
3173 bool test_result = true; local
3440 bool test_result = true; local
    [all...]
  /external/libusb/tests/
testlib.c 175 libusb_testlib_result test_result; local
256 test_result = test->function(&ctx);
259 test_result_to_str(test_result), test_result);
260 switch (test_result) {
  /external/ltp/testcases/kernel/device-drivers/block/block_dev_kernel/
ltp_block_dev.c 75 static int test_result; variable
336 return scnprintf(buf, PAGE_SIZE, "%d\n", test_result);
353 test_result = 0;
356 test_result |= tc01();
359 test_result |= tc02();
362 test_result |= tc03();
365 test_result |= tc04();
368 test_result |= tc05();
371 test_result |= tc06();
374 test_result |= tc07()
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tst_bitmaps.c 295 int test_result, op_result; local
320 test_result = ext2fs_test_block_bitmap2(test_fs->block_map, block);
324 if (!test_result != !op_result)
325 com_err(argv[0], 0, "*ERROR* test_result different! (%d, %d)",
326 test_result, op_result);
333 int test_result, op_result; local
358 test_result = ext2fs_test_block_bitmap2(test_fs->block_map, block);
362 if (!test_result != !op_result)
363 com_err(argv[0], 0, "*ERROR* test_result different! (%d, %d)",
364 test_result, op_result)
371 int test_result; local
482 int test_result, op_result; local
511 int test_result, op_result; local
540 int test_result; local
    [all...]
  /external/ltp/pan/
tag_report.c 53 * format results are printed thru test_result.
55 int test_result(char *tag, char *tcid, char *tc, char *result, SYM tags) function
67 tag = "test_result: no tag";
186 test_result(tag, *tl, (char *)Key.data,
193 test_result(tag, "*", "*", result, keys);
196 test_result(tag, "-", "-", "TC count wrong", keys);
246 test_result(tag, NULL, NULL, "no init status", keys);
251 test_result(tag, NULL, NULL, is, keys);
257 test_result(tag, NULL, NULL, "coredump", keys);
262 test_result(tag, NULL, NULL, "no Term Type", keys)
    [all...]
  /external/ltp/testcases/kernel/device-drivers/acpi/
ltp_acpi_cmds.c 498 static int test_result; variable
514 return scnprintf(buf, PAGE_SIZE, "%d\n", test_result);
548 test_result = acpi_init();
551 test_result = acpi_traverse_from_root();
554 test_result = acpi_test_notify_handler();
557 test_result = acpi_test_event_handler();
560 test_result = acpi_global_lock();
563 test_result = acpi_test_bus();
566 test_result = acpi_test_resources();
569 test_result = acpi_sleep_test()
    [all...]
  /external/ltp/testcases/kernel/device-drivers/pci/tpci_kernel/
ltp_tpci.c 651 static int test_result; variable
667 return scnprintf(buf, PAGE_SIZE, "%d\n", test_result);
679 test_result = test_case(tc);
  /external/deqp/external/openglcts/modules/common/
glcRobustnessTests.cpp 283 bool test_result = true; local
329 test_result = test_result &&
331 test_result = test_result && verifyError(gl.getError(), GL_NO_ERROR, "getnUniformfv [false negative]");
334 test_result = test_result && verifyError(gl.getError(), GL_INVALID_OPERATION, "getnUniformfv [false positive]");
337 test_result = test_result &&
339 test_result = test_result && verifyError(gl.getError(), GL_NO_ERROR, "getnUniformiv [false negative]")
    [all...]
glcRobustBufferAccessBehaviorTests.cpp 1073 bool test_result = true; local
1129 test_result = false;
1145 test_result = false;
1149 if (true == test_result)
1320 bool test_result = true; local
2409 bool test_result = true; local
3324 bool test_result = true; local
3604 bool test_result = true; local
    [all...]
glcViewportArrayTests.cpp 971 void APIErrors::depthRangeArrayHelper(Utils::DepthFuncWrapper& depthFunc, GLint max_viewports, bool& test_result, T*)
983 checkGLError(GL_NO_ERROR, "depthRangeArray, correct parameters", test_result);
986 checkGLError(GL_INVALID_VALUE, "depthRangeArray, <first> == GL_MAX_VIEWPORTS", test_result);
989 checkGLError(GL_NO_ERROR, "depthRangeArray, <first> + <count> == GL_MAX_VIEWPORTS", test_result);
992 checkGLError(GL_INVALID_VALUE, "depthRangeArray, <first> + <count> > GL_MAX_VIEWPORTS", test_result);
996 void APIErrors::depthRangeIndexedHelper(Utils::DepthFuncWrapper& depthFunc, GLint max_viewports, bool& test_result, T*)
999 checkGLError(GL_NO_ERROR, "depthRangeIndexed, <index> == 0", test_result);
1002 checkGLError(GL_NO_ERROR, "depthRangeIndexed, <index> == GL_MAX_VIEWPORTS - 1", test_result);
1005 checkGLError(GL_INVALID_VALUE, "depthRangeIndexed, <index> == GL_MAX_VIEWPORTS", test_result);
1008 checkGLError(GL_INVALID_VALUE, "depthRangeIndexed, <index> > GL_MAX_VIEWPORTS", test_result);
1040 bool test_result = true; local
1468 bool test_result = true; local
1734 bool test_result = true; local
1938 bool test_result = true; local
2138 bool test_result; local
2172 bool test_result = true; local
2332 bool test_result = true; local
2532 bool test_result = true; local
    [all...]
  /external/deqp/external/openglcts/modules/glesext/tessellation_shader/
esextcTessellationShaderIsolines.cpp 64 * @param test_result Value of MAX_TESS_GEN_LEVEL token. For ES3.1 it will be equal to
68 void TessellationShadersIsolines::checkFirstOuterTessellationLevelEffect(_test_result& test_result,
71 glcts::Context& context = test_result.parent->parent->getContext();
76 if (test_result.n_vertices != 0)
88 TESSELLATION_SHADER_VERTEX_SPACING_EQUAL, test_result.parent->outer_tess_levels[0],
94 if (test_result.n_isolines != n_isolines_expected)
96 tcu::TestContext& test = test_result.parent->parent->getTestContext();
99 << "Tessellator generated an invalid amount of isolines:" << test_result.n_isolines
102 << " (" << test_result.parent->inner_tess_levels[0] << ", "
103 << test_result.parent->inner_tess_levels[1] << ")
164 _test_result test_result = *test_result_iterator; local
755 _test_result& test_result = *test_results_iterator; local
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_futures.py 158 def test_result(self): member in class:BaseFutureTests
  /external/deqp/external/openglcts/modules/gles32/
es32cRobustBufferAccessBehaviorTests.cpp 770 bool test_result = true; local
860 test_result = false;
868 if (true == test_result)
    [all...]
  /test/vts/runners/target/gtest/
gtest_main.cpp 791 TestResult test_result = TEST_SUCCESS; local
793 test_result = TEST_FAILED;
795 return test_result;
    [all...]
  /bionic/tests/
gtest_main.cpp 835 TestResult test_result = TEST_SUCCESS; local
837 test_result = TEST_FAILED;
839 return test_result;
    [all...]

Completed in 627 milliseconds

1 2