/external/chromium/testing/ |
multiprocess_func_list.cc | 25 AppendMultiProcessTest::AppendMultiProcessTest(std::string test_name, 27 GetMultiprocessFuncMap()[test_name] = func_ptr; 30 int InvokeChildProcessTest(std::string test_name) { 32 MultiProcessTestMap::iterator it = func_lookup_table.find(test_name);
|
multiprocess_func_list.h | 38 AppendMultiProcessTest(std::string test_name, ChildFunctionPtr func_ptr); 43 int InvokeChildProcessTest(std::string test_name);
|
/external/chromium_org/chrome/test/perf/ |
browser_perf_test.cc | 23 void BrowserPerfTest::PrintIOPerfInfo(const std::string& test_name) { 26 perf_test::PrintIOPerfInfo(test_name, chrome_processes, browser_pid); 29 void BrowserPerfTest::PrintMemoryUsageInfo(const std::string& test_name) { 32 perf_test::PrintMemoryUsageInfo(test_name, chrome_processes, browser_pid);
|
/external/chromium_org/content/test/plugin/ |
plugin_test_factory.h | 16 extern PluginTest* CreatePluginTest(const std::string& test_name,
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/ |
test_input.py | 34 def __init__(self, test_name, timeout=None, requires_lock=None, reference_files=None, should_run_pixel_tests=None, should_add_missing_baselines=True): 38 self.test_name = test_name 46 return "TestInput('%s', timeout=%s, requires_lock=%s, reference_files=%s, should_run_pixel_tests=%s, should_add_missing_baselines%s)" % (self.test_name, self.timeout, self.requires_lock, self.reference_files, self.should_run_pixel_tests, self.should_add_missing_baselines)
|
test_results.py | 41 def __init__(self, test_name, failures=None, test_run_time=None, has_stderr=False, reftest_type=None, pid=None, references=None): 42 self.test_name = test_name 60 return (self.test_name == other.test_name and
|
/external/chromium_org/sandbox/linux/tests/ |
unit_tests.h | 23 #define DISABLE_ON_TSAN(test_name) DISABLED_##test_name 25 #define DISABLE_ON_TSAN(test_name) test_name 49 #define SANDBOX_DEATH_TEST(test_case_name, test_name, death) \ 50 void TEST_##test_name(void *); \ 51 TEST(test_case_name, test_name) { \ 52 sandbox::UnitTests::RunTestInProcess(TEST_##test_name, NULL, death); \ 54 void TEST_##test_name(void *) 60 #define SANDBOX_TEST(test_case_name, test_name) \ [all...] |
/external/valgrind/unittest/ |
gtest_fixture_injection.h | 52 #define TEST(test_case_name, test_name)\ 53 GTEST_TEST_(test_case_name, test_name, \
|
/external/e2fsprogs/tests/defaults/ |
e_script | 11 class=`echo $test_name | sed -e 's/e_\([^_]*\)_\(.*\)/\1/'` 12 instance=`echo $test_name | sed -e 's/e_\([^_]*\)_\(.*\)/\2/'` 15 OUT=$test_name.log 37 rm -f $test_name.failed $test_name.ok 41 touch $test_name.ok 44 diff $DIFF_OPTS $EXPECT $OUT > $test_name.failed
|
/external/chromium_org/chrome/test/functional/ispy/ispy_core/tools/ |
rendering_test_manager.py | 52 def UploadTest(self, test_name, images): 59 test_name: the name of the test. 62 path = posixpath.join('tests', test_name) 67 def RunTest(self, test_name, run_name, actual): 71 test_name: the name of the test to run. 77 cloud_bucket.NotFoundError: if the given test_name is not found. 79 path = posixpath.join('failures', test_name, run_name) 80 test = self.GetTest(test_name) 84 def GetTest(self, test_name): 88 test_name: the name of the test to get from GCS [all...] |
/art/test/ |
run-all-tests | 98 for test_name in *; do 99 if [ -d "$test_name" -a -r "$test_name" -a -r "$test_name/info.txt" ]; then 100 ./run-test ${run_args} "$test_name" & 102 test_names[test_pids[i]]="$test_name"
|
/external/chromium/base/ |
perftimer.h | 29 void LogPerfResult(const char* test_name, double value, const char* units); 60 explicit PerfTimeLogger(const char* test_name) 62 test_name_(test_name) {
|
/external/chromium_org/base/ |
perftimer.h | 30 void LogPerfResult(const char* test_name, double value, const char* units); 61 explicit PerfTimeLogger(const char* test_name) 63 test_name_(test_name) {
|
/external/chromium_org/chrome/test/ui/ |
ui_perf_test.cc | 25 void UIPerfTest::PrintIOPerfInfo(const char* test_name) { 28 perf_test::PrintIOPerfInfo(test_name, chrome_processes, 32 void UIPerfTest::PrintMemoryUsageInfo(const char* test_name) { 35 perf_test::PrintMemoryUsageInfo(test_name, chrome_processes,
|
/external/chromium_org/testing/ |
multiprocess_func_list.cc | 36 std::string test_name, 39 GetMultiprocessFuncMap()[test_name] = 43 int InvokeChildProcessTest(std::string test_name) { 45 MultiProcessTestMap::iterator it = func_lookup_table.find(test_name);
|
multiprocess_func_list.h | 43 AppendMultiProcessTest(std::string test_name, 50 int InvokeChildProcessTest(std::string test_name);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/ |
runner.py | 55 pool.run(('test', test_name) for test_name in test_names) 57 def handle(self, message_name, source, test_name, delay=None, failures=None, errors=None): 59 self.printer.print_started_test(source, test_name) 64 self.failures.append((test_name, failures)) 66 self.errors.append((test_name, errors)) 67 self.printer.print_finished_test(source, test_name, delay, failures, errors) 81 def handle(self, message_name, source, test_name): 85 self._caller.post('started_test', test_name) 87 # We will need to rework this if a test_name results in multiple tests [all...] |
printer.py | 112 def print_started_test(self, source, test_name): 113 self.running_tests.append(test_name) 126 def print_finished_test(self, source, test_name, test_time, failures, errors): 148 if test_name == self.running_tests[0]: 149 self.completed_tests.insert(0, [test_name, suffix, lines]) 151 self.completed_tests.append([test_name, suffix, lines]) 152 self.running_tests.remove(test_name) 154 for test_name, msg, lines in self.completed_tests: 156 self.meter.writeln(self._test_line(test_name, msg)) 160 write(self._test_line(test_name, msg) [all...] |
/external/chromium/chrome/browser/autofill/ |
data_driven_test.h | 38 // ../autofill/|test_name|/input and ../autofill/|test_name|/output. 39 FilePath GetInputDirectory(const FilePath::StringType& test_name); 40 FilePath GetOutputDirectory(const FilePath::StringType& test_name);
|
/external/chromium_org/tools/json_comment_eater/ |
json_comment_eater_test.py | 10 def _Load(self, test_name): 11 '''Loads the input and expected output for |test_name| as given by reading 12 in |test_name|.json and |test_name|_expected.json, and returns the string 18 return [read(pattern % test_name)
|
/external/netperf/ |
netsh.c | 124 char test_name[BUFSIZ]; /* which test to run */ variable 395 strcpy(test_name,"TCP_STREAM"); /* which test to run */ 669 strcpy(test_name,optarg); 882 if ((strcasecmp(test_name,"TCP_STREAM") == 0) || 884 (strcasecmp(test_name,"EXS_TCP_STREAM") == 0) || 887 (strcasecmp(test_name,"TCP_SENDFILE") == 0) || 889 (strcasecmp(test_name,"TCP_MAERTS") == 0) || 890 (strcasecmp(test_name,"TCP_RR") == 0) || 891 (strcasecmp(test_name,"TCP_CRR") == 0) || 892 (strcasecmp(test_name,"TCP_CC") == 0) | [all...] |
/external/e2fsprogs/tests/ |
test_script.in | 44 test_name=`echo $test_dir | sed -e 's;.*/;;'` 49 echo "The test '$test_name' does not exist." 57 printf "%s: %s: " "$test_name" "$test_description" 59 printf "%s: " "$test_name" 64 test_base=`echo $test_name | sed -e 's/_.*//'`
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
profile_types.py | 31 for test_name, test_class in profile_creators_unfiltered.iteritems(): 32 assert test_name.endswith('_creator') 33 test_name = test_name[:-len('_creator')] 34 profile_creators[test_name] = test_class
|
/external/chromium_org/chrome/browser/nacl_host/test/ |
gdb_debug_stub_browsertest.cc | 24 std::string test_name, int debug_stub_port); 26 const std::string& test_name); 35 std::string test_name, 45 cmd.AppendArg(test_name); 51 const std::string& test_name) { 56 base::Unretained(this), &test_script, test_name));
|
/external/chromium/android/ |
prefix.h | 67 #define FRIEND_TEST(test_case_name, test_name)\ 68 friend class test_case_name##_##test_name##_Test
|