Searched defs:test_name (Results 1 - 25 of 58) sorted by relevance

123

/external/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/
H A DOneTest21 test_name = sys.argv[1].split('=',1)[1] variable
22 if test_name == 'FirstTest.subTestA':
26 elif test_name == 'FirstTest.subTestB':
30 elif test_name in ('ParameterizedTest/0.subTest',
36 raise SystemExit("error: invalid test name: %r" % (test_name,))
/external/clang/bindings/python/tests/cindex/
H A Dtest_cursor_kind.py3 def test_name(): function
/external/autotest/client/tests/compilebench/
H A Dcompilebench.py5 test_name = 'compilebench' variable
22 os.path.join(self.srcdir, test_name),
/external/selinux/libsepol/cil/test/unit/
H A Dtest_cil_symtab.c41 char* test_name = "test"; local
59 int rc = cil_symtab_insert(test_symtab, (hashtab_key_t)test_name, (struct cil_symtab_datum*)test_block, test_ast_node);
/external/dbus/dbus/
H A Ddbus-test.c57 run_test (const char *test_name, argument
61 if (!specific_test || strcmp (specific_test, test_name) == 0)
63 printf ("%s: running %s tests\n", "dbus-test", test_name);
65 die (test_name);
72 run_data_test (const char *test_name, argument
77 if (!specific_test || strcmp (specific_test, test_name) == 0)
79 printf ("%s: running %s tests\n", "dbus-test", test_name);
81 die (test_name);
/external/jemalloc/
H A DAndroid.test.mk19 LOCAL_MODULE := $(test_name)
48 test_name := macro
/external/libchrome/testing/
H A Dmultiprocess_func_list.cc36 std::string test_name,
39 GetMultiprocessFuncMap()[test_name] =
43 int InvokeChildProcessTest(std::string test_name) { argument
45 MultiProcessTestMap::iterator it = func_lookup_table.find(test_name);
35 AppendMultiProcessTest( std::string test_name, TestMainFunctionPtr main_func_ptr, SetupFunctionPtr setup_func_ptr) argument
/external/selinux/libsepol/tests/
H A Dhelpers.c35 int test_load_policy(policydb_t * p, int policy_type, int mls, const char *test_name, const char *policy_name) argument
40 if (snprintf(filename, PATH_MAX, "policies/%s/%s.mls", test_name, policy_name) < 0) {
44 if (snprintf(filename, PATH_MAX, "policies/%s/%s.std", test_name, policy_name) < 0) {
57 if (read_source_policy(p, filename, test_name)) {
/external/v8/test/mjsunit/bugs/harmony/
H A Ddebug-blockscopes.js36 var test_name; variable
65 test_name = name;
75 assertTrue(listener_called, "listerner not called for " + test_name);
76 assertNull(exception, test_name);
/external/v8/test/mjsunit/
H A Ddebug-receiver.js32 var test_name; variable
62 test_name = name;
71 assertTrue(listener_called, "listerner not called for " + test_name);
72 assertNull(exception, test_name);
H A Ddebug-scopes.js35 var test_name; variable
63 test_name = name;
73 assertTrue(listener_called, "listerner not called for " + test_name);
74 assertNull(exception, test_name + " / " + exception);
/external/jemalloc/test/src/
H A Dtest.c6 static const char * test_name = ""; variable
52 test_name = name;
60 malloc_printf("%s: %s\n", test_name, test_status_string(test_status));
/external/autotest/client/bin/
H A Dfio_util.py66 test_name = '' variable in class:fio_graph_generator
173 def _write_option(cls, f, test_name, test_type, percentile):
178 @param test_name: name of current workload. i.e. randwrite
185 (cls.graph_title[test_type], test_name))
188 (cls.graph_title[test_type], test_name))
198 def _write_graph(cls, test_name, test_type, pass_list, percentile=False):
202 @param test_name: name of current workload. i.e. randwrite
208 test_name, test_type, str(pass_list))
212 out_file_name = '%s_%s_percentile.html' % (test_name, test_type)
214 out_file_name = '%s_%s.html' % (test_name, test_typ
[all...]
/external/autotest/client/deps/glbench/src/
H A Dmain.cc47 const char* test_name = test->Name(); local
52 if (strstr(test_name, i->c_str()))
64 const char* test_name = test->Name(); local
69 if (strstr(test_name, i->c_str()))
/external/libmicrohttpd/src/testcurl/
H A Dtest_options.c50 test_wrap (char *test_name, int (*test) (void)) argument
54 fprintf (stdout, "running test: %s ", test_name);
/external/v8/test/mjsunit/es6/
H A Ddebug-blockscopes.js37 var test_name; variable
66 test_name = name;
76 assertTrue(listener_called, "listerner not called for " + test_name);
77 assertNull(exception, test_name, exception);
/external/webrtc/webrtc/test/testsupport/
H A Dperf_test.cc152 void PrintSystemCommitCharge(const std::string& test_name, argument
155 PrintSystemCommitCharge(stdout, test_name, charge, important);
159 const std::string& test_name,
162 fprintf(target, "%s", SystemCommitChargeToString(test_name, charge,
166 std::string SystemCommitChargeToString(const std::string& test_name, argument
169 std::string trace_name(test_name);
158 PrintSystemCommitCharge(FILE* target, const std::string& test_name, size_t charge, bool important) argument
/external/autotest/server/cros/dynamic_suite/
H A Djob_status.py27 return not view['test_name'].startswith('CLIENT_JOB')
37 return view['test_name'] == 'SERVER_JOB'
48 return view['test_name'].endswith('SERVER_JOB')
59 return view_is_for_infrastructure_fail({'test_name': status.test_name})
308 return not (status.test_name.startswith('SERVER_JOB') or
309 status.test_name.startswith('CLIENT_JOB'))
345 # (test_name, subdir). In dynamic suite, we need to emit
346 # a subdir for each status and make sure (test_name, subdir)
354 yield Status(s.status, s.test_name,
706 def test_name(self): member in class:Status
712 def test_name(self, value): member in class:Status
[all...]
/external/chromium-trace/catapult/dashboard/dashboard/models/
H A Dgraph_data.py198 def test_name(self): member in class:TestMetadata
/external/libmicrohttpd/src/testcurl/https/
H A Dtls_test_common.c139 print_test_result (int test_outcome, char *test_name) argument
143 fprintf (stderr, "running test: %s [fail]\n", test_name);
145 fprintf (stdout, "running test: %s [pass]\n", test_name);
451 test_wrap (const char *test_name, int argument
464 fprintf (stderr, "Failed to setup testcase %s\n", test_name);
468 fprintf (stdout, "running test: %s ", test_name);
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-param-test_test.cc650 Message test_name; local
651 test_name << "TestsExpandedAndRun/" << i;
654 test_name.GetString())) {
/external/gtest/test/
H A Dgtest-param-test_test.cc650 Message test_name; local
651 test_name << "TestsExpandedAndRun/" << i;
654 test_name.GetString())) {
/external/protobuf/gtest/test/
H A Dgtest-param-test_test.cc649 Message test_name; local
650 test_name << "TestsExpandedAndRun/" << i;
653 test_name.GetString())) {
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest-param-test_test.cc650 Message test_name; local
651 test_name << "TestsExpandedAndRun/" << i;
654 test_name.GetString())) {
/external/netperf/src/
H A Dnetsh.c106 test_name[BUFSIZ] = "TCP_STREAM", /* which test to run */ variable
846 strncpy(test_name,optarg,sizeof(test_name)-1);
847 convert_to_upper(test_name);
1177 (strcasecmp(test_name,"TCP_STREAM") == 0) ||
1178 (strcasecmp(test_name,"TCP_MAERTS") == 0) ||
1179 (strcasecmp(test_name,"TCP_RR") == 0) ||
1180 (strcasecmp(test_name,"TCP_CRR") == 0) ||
1181 (strcasecmp(test_name,"UDP_STREAM") == 0) ||
1182 (strcasecmp(test_name,"UDP_R
[all...]

Completed in 640 milliseconds

123