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

1 2 3 4 5 6

  /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);
radeon_compiler_optimize_tests.c 35 struct test_result * result,
52 static void test_runner_rc_optimize(struct test_result * result)
radeon_compiler_regalloc_tests.c 46 struct test_result *result,
82 static void tex_1d_swizzle(struct test_result *result)
  /tools/test/connectivity/acts/tests/google/bt/test_tools/
ToolsTest.py 43 :return: boolean test_result
47 test_result = True
51 test_result = reset_bluetooth([self.android_devices[0]])
63 test_result_list.append(test_result)
67 return test_result
77 :return: boolean test_result
81 test_result = True
99 test_result_list.append(test_result)
103 return test_result
BtReconnectTest.py 45 test_result = True
53 test_result = True
73 test_result_list.append(test_result)
77 return test_result
  /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/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;
  /tools/test/connectivity/acts/tests/google/ble/system_tests/
BleStressTest.py 52 test_result = True
55 return test_result
91 test_result = True
98 return test_result
164 test_result = True
180 test_result = False
186 test_result = False
188 return test_result
216 test_result = True
231 test_result = Fals
    [all...]
  /external/toolchain-utils/deprecated/
summarize_results.py 46 test_result = 'pass'
48 test_result = 'fail'
49 result += '%s\t%s\t%s\n' % (test_name, test_result, filename)
100 test_result = 'pass'
102 test_result = 'fail'
103 result += '%s\t%s\t%s\n' % (test_name, test_result, filename)
  /cts/tests/tests/alarmclock/common/src/android/alarmclock/common/
Utils.java 34 public static final String TEST_RESULT = "test_result";
  /external/autotest/server/site_tests/brillo_HWRandom/
brillo_HWRandom.py 117 for test_result in results:
118 logging.info('%s: %s', test_result.test_name,
119 test_result.assessment)
120 full_output += ' %s: %s\n' % test_result
121 if test_result.assessment == 'WEAK':
123 elif test_result.assessment == 'FAILED':
125 elif test_result.assessment != 'PASSED':
  /tools/test/connectivity/acts/tests/google/ble/filtering/
UniqueFilteringTest.py 55 test_result = True
63 test_result = False
64 return test_result
71 test_result = True
83 test_result = False
84 return test_result
111 test_result = True
130 test_result = False
133 test_result = False
137 return test_result
    [all...]
  /system/update_engine/
testrunner.cc 61 int test_result = RUN_ALL_TESTS(); local
62 LOG(INFO) << "unittest return value: " << test_result;
63 return test_result;
  /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/testng/src/main/java/org/testng/remote/strprotocol/
MessageHelper.java 32 public static final int TEST_RESULT = 1000;
33 public static final int PASSED_TEST = TEST_RESULT + ITestResult.SUCCESS;
34 public static final int FAILED_TEST = TEST_RESULT + ITestResult.FAILURE;
35 public static final int SKIPPED_TEST = TEST_RESULT + ITestResult.SKIP;
36 public static final int FAILED_ON_PERCENTAGE_TEST = TEST_RESULT + ITestResult.SUCCESS_PERCENTAGE_FAILURE;
37 public static final int TEST_STARTED = TEST_RESULT + ITestResult.STARTED;
  /external/autotest/client/site_tests/video_YouTubeMseEme/files/
video_YouTubeMseEme.js 221 var test_result = isNaN(temp_video.duration);
222 test_result &= temp_video.videoWidth === 0;
223 test_result &= temp_video.videoHeight === 0;
224 test_result &= temp_video.readyState === HTMLMediaElement.HAVE_NOTHING;
225 test_result &= temp_video.src === '';
226 test_result &= temp_video.currentSrc === '';
228 window.__testState['initialVideoState'] = !!test_result;
234 var test_result = true;
235 test_result = test_result && isNaN(vm.ms.duration)
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/
Test.pm 76 my $test_result;
98 $test_result = run_program([ get_perl(), '-Mblib', "-I$tmpdir", $test_program_file ]);
99 if ($test_result->{exit_code} >> 8 != 0) {
100 croak $test_result->{err};
106 my $actual = $test_result->{out};
  /external/llvm/test/CodeGen/PowerPC/
ppcf128-endian.ll 65 %call = tail call ppc_fp128 @test_result() #3
70 ; CHECK: bl test_result
76 declare ppc_fp128 @test_result()
80 %call = tail call ppc_fp128 @test_result()
85 ; CHECK: bl test_result
  /external/ltp/testcases/kernel/syscalls/symlink/
symlink01.c 497 int TEST_RESULT;
655 TEST_RESULT = TBROK;
682 TEST_RESULT = TBROK;
695 TEST_RESULT = TBROK;
737 TEST_RESULT = TBROK;
743 TEST_RESULT = TBROK;
766 TEST_RESULT = TBROK;
772 TEST_RESULT = TBROK;
778 TEST_RESULT = TBROK;
802 TEST_RESULT = TBROK
    [all...]
  /tools/test/connectivity/acts/tests/google/ble/concurrency/
ConcurrentBleAdvertisingTest.py 254 test_result = True
413 test_result = True
433 test_result = False
441 return test_result
469 test_result = True
499 test_result = reset_bluetooth([self.android_devices[1]])
502 if not test_result:
543 test_result = True
553 test_result = False
558 test_result = reset_bluetooth([self.android_devices[1]]
    [all...]
ConcurrentBleScanningTest.py 83 test_result = True
102 test_result = False
107 test_result = False
108 if not test_result:
109 return test_result
130 test_result = False
135 if not test_result:
136 return test_result
141 return test_result
246 test_result = Tru
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResult.java 38 private static final String TEST_RESULT = "result";
81 intent.putExtra(TEST_RESULT, testResult);
92 int result = data.getIntExtra(TEST_RESULT, TEST_RESULT_NOT_EXECUTED);
  /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/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...]
  /tools/test/connectivity/acts/tests/google/bt/car_bt/
BtCarBasicFunctionalityTest.py 54 :return: test_result: bool
71 :return: test_result: bool
88 :return: test_result: bool

Completed in 617 milliseconds

1 2 3 4 5 6