Searched refs:test_name (Results 1 - 25 of 1434) sorted by last modified time

1234567891011>>

/external/valgrind/main/none/tests/ppc32/
H A Dtest_isa_2_06_part1.c1592 char * test_name = (char *)malloc(20); local
1605 strcpy(test_name, "xscmp");
1608 strcat(test_name, "udp");
1616 strcpy(test_name, "xsmadd");
1618 strcpy(test_name, "xsmsub");
1620 strcpy(test_name, "xsnmadd");
1623 strcat(test_name, "adp");
1628 strcpy(test_name, test_group.name);
1655 printf("#%d: %s %016llx <=> %016llx ? %x (CRx)\n", i, test_name, *frap, *frbp, condreg);
1713 printf("#%d: %s %016llx %016llx = %016llx\n", i, test_name, *fra
[all...]
H A Dtest_isa_2_06_part2.c1288 char * test_name = (char *)malloc(20); local
1305 strcpy(test_name, test_group.name);
1311 strcat(test_name, "adp");
1387 test_name, test_group.op, vsr_XT[0], *frap, *frbp, *dst );
1396 strcpy(test_name, test_group.name);
1397 strcat(test_name, "mdp");
1405 free(test_name);
H A Dtest_isa_2_07_part2.c883 char * test_name = (char *)malloc(20); local
899 strcpy(test_name, "xsmadd");
901 strcpy(test_name, "xsmsub");
903 strcpy(test_name, "xsnmadd");
905 strcpy(test_name, "xsnmsub");
909 strcat(test_name, "asp");
914 strcpy(test_name, test_group.name);
980 printf("#%d: %s %016llx %016llx = %016llx\n", i, test_name,
984 test_name, vsr_XT, *frap, *frbp, *dst );
1002 strcat(test_name, "UNKNOW
[all...]
/external/valgrind/main/none/tests/ppc64/
H A Dtest_isa_2_06_part1.c1592 char * test_name = (char *)malloc(20); local
1605 strcpy(test_name, "xscmp");
1608 strcat(test_name, "udp");
1616 strcpy(test_name, "xsmadd");
1618 strcpy(test_name, "xsmsub");
1620 strcpy(test_name, "xsnmadd");
1623 strcat(test_name, "adp");
1628 strcpy(test_name, test_group.name);
1655 printf("#%d: %s %016llx <=> %016llx ? %x (CRx)\n", i, test_name, *frap, *frbp, condreg);
1713 printf("#%d: %s %016llx %016llx = %016llx\n", i, test_name, *fra
[all...]
H A Dtest_isa_2_06_part2.c1288 char * test_name = (char *)malloc(20); local
1305 strcpy(test_name, test_group.name);
1311 strcat(test_name, "adp");
1387 test_name, test_group.op, vsr_XT[0], *frap, *frbp, *dst );
1396 strcpy(test_name, test_group.name);
1397 strcat(test_name, "mdp");
1405 free(test_name);
H A Dtest_isa_2_07_part2.c883 char * test_name = (char *)malloc(20); local
899 strcpy(test_name, "xsmadd");
901 strcpy(test_name, "xsmsub");
903 strcpy(test_name, "xsnmadd");
905 strcpy(test_name, "xsnmsub");
909 strcat(test_name, "asp");
914 strcpy(test_name, test_group.name);
980 printf("#%d: %s %016llx %016llx = %016llx\n", i, test_name,
984 test_name, vsr_XT, *frap, *frbp, *dst );
1002 strcat(test_name, "UNKNOW
[all...]
/external/valgrind/
H A Druntest.sh29 test_name=$1
31 test_local=$product_out/data/nativetest/$test_name/$test_name
32 test_target=/data/nativetest/$test_name/$test_name
37 logfile_native=$test_name.stdout.log
38 logfile_valgrind=$test_name.stdout.vlog
48 diff $logfile_native $logfile_valgrind | grep -v "^> ==" | grep -v -e "^[0-9]" > $test_name.diff.log
50 if [ -s $test_name.diff.log ]; then
51 echo "Test $test_name FAILE
[all...]
/external/skia/tools/
H A Djsondiff.py89 for test_name in all_expectations.keys():
90 test_expectations = all_expectations[test_name]
98 test_name, num_allowed_digests))
103 test_name, digest_pair[0]))
104 result_dict[test_name] = digest_pair[1]
132 for test_name in results_of_this_type.keys():
133 digest_pair = results_of_this_type[test_name]
137 test_name, digest_pair[0]))
138 result_dict[test_name] = digest_pair[1]
H A Dsvndiff.py130 test_name=IMAGE_FILENAME_RE.match(imagename).group(1),
/external/skia/tools/skpdiff/
H A Dskpdiff_server.py111 test_name = image_match.group(1)
115 test_name, gm_json.JSONKEY_HASHTYPE_BITMAP_64BITMD5, hash_val)
/external/skia/dm/
H A DDMTestTask.cpp19 static SkString test_name(const char* name) { function in namespace:DM
30 , fName(test_name(fTest->getName())) {}
37 , fName(test_name(fTest->getName())) {}
/external/skia/gm/
H A Dgm_json.py111 GM_RELATIVE_URL_FORMATTER = '%s/%s/%s.png' # pass in (hash_type, test_name,
113 GM_RELATIVE_URL_PATTERN = '(.+)/(.+)/(.+).png' # matches (hash_type, test_name,
118 def CreateGmActualUrl(test_name, hash_type, hash_digest,
123 test_name: name of the test, e.g. 'perlinnoise'
131 test_name=test_name, hash_type=hash_type, hash_digest=hash_digest))
134 def CreateGmRelativeUrl(test_name, hash_type, hash_digest):
142 test_name: name of the test, e.g. 'perlinnoise'
147 return GM_RELATIVE_URL_FORMATTER % (hash_type, test_name, hash_digest)
151 """Splits the relative URL into (test_name, hash_typ
[all...]
/external/skia/gm/rebaseline_server/
H A Dcompare_configs.py123 test_name=test)
127 test_name=test)
H A Dcompare_to_expectations.py253 test_name=test))
271 test_name=test))
H A Ddownload_actuals.py80 test_name=test, hash_type=hash_type, hash_digest=hash_digest,
H A Dresults.py256 def _create_relative_url(hashtype_and_digest, test_name):
264 test_name: string; name of the GM test that created this image
269 test_name=test_name,
/external/protobuf/gtest/include/gtest/
H A Dgtest-param-test.h1345 #define TEST_P(test_case_name, test_name) \
1346 class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \
1349 GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {} \
1357 #test_name, \
1359 GTEST_TEST_CLASS_NAME_(test_case_name, test_name)>()); \
1364 GTEST_TEST_CLASS_NAME_(test_case_name, test_name)); \
1367 test_name)::gtest_registering_dummy_ = \
1368 GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::AddToRegistry(); \
1369 void GTEST_TEST_CLASS_NAME_(test_case_name, test_name)::TestBody()
H A Dgtest.h1912 #define TEST(test_case_name, test_name)\
1913 GTEST_TEST_(test_case_name, test_name, \
1943 #define TEST_F(test_fixture, test_name)\
1944 GTEST_TEST_(test_fixture, test_name, test_fixture, \
H A Dgtest_prod.h55 #define FRIEND_TEST(test_case_name, test_name)\
56 friend class test_case_name##_##test_name##_Test
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-internal.h613 const char* test_name) {
617 FormatFileLocation(file, line).c_str(), test_name, case_name);
621 defined_test_names_.insert(test_name);
884 #define GTEST_TEST_CLASS_NAME_(test_case_name, test_name) \
885 test_case_name##_##test_name##_Test
888 #define GTEST_TEST_(test_case_name, test_name, parent_class, parent_id)\
889 class GTEST_TEST_CLASS_NAME_(test_case_name, test_name) : public parent_class {\
891 GTEST_TEST_CLASS_NAME_(test_case_name, test_name)() {}\
896 GTEST_TEST_CLASS_NAME_(test_case_name, test_name));\
899 ::testing::TestInfo* const GTEST_TEST_CLASS_NAME_(test_case_name, test_name)\
612 AddTestName(const char* file, int line, const char* case_name, const char* test_name) argument
[all...]
/external/protobuf/gtest/scripts/
H A Dgen_gtest_pred_impl.py620 test_name = pred_format_type.title()
624 test_name += 'OnUserType'
631 test_name += 'OnBuiltInType'
640 test_name += 'Failure'
644 test_name += 'Success'
651 'test_name' : test_name,
663 TEST_F(%(assertion)sTest, %(test_name)s) {""" % defs
/external/protobuf/gtest/src/
H A Dgtest-internal-inl.h627 const String &test_name);
H A Dgtest.cc456 const String &test_name) {
459 test_name.c_str());
4154 const String test_name(test_info->name());
4160 internal::UnitTestOptions::MatchesFilter(test_name,
4166 test_name);
455 FilterMatchesTest(const String &test_case_name, const String &test_name) argument
/external/protobuf/gtest/test/
H A Dgtest-param-test_test.cc617 Message test_name; local
618 test_name << "TestsExpandedAndRun/" << i;
621 test_name.GetString())) {
H A Dgtest_unittest.cc5102 static const TestInfo* GetTestInfo(const char* test_name) { argument
5108 if (strcmp(test_name, test_info->name()) == 0)

Completed in 313 milliseconds

1234567891011>>