Home
last modified time | relevance | path

Searched refs:test_idx (Results 1 – 17 of 17) sorted by relevance

/external/lisa/libs/utils/
Dreport.py122 for test_idx in sorted(_results[tid].keys()):
123 if test_idx == base_idx:
130 if test_rexp.match(test_idx) == None:
132 self.__rtapp_compare(tid, base_idx, test_idx, formats)
173 def __rtapp_compare(self, tid, base_idx, test_idx, formats): argument
177 tid, base_idx, test_idx)
178 res_line = '{0:12s}: {1:20s} | '.format(tid, test_idx)
183 res_test = _results[tid][test_idx]['energy'][cpus]['avg']
204 res_test = _results[tid][test_idx]['performance'][pidx]['avg']
283 for test_idx in sorted(_results[tid].keys()):
[all …]
Dresults.py54 for test_idx in sorted(os.listdir(self.results_dir)):
56 test_dir = self.results_dir + '/' + test_idx
60 test = TestFactory.get(test_idx, test_dir, self.results)
75 def __init__(self, test_idx, test_dir, res): argument
76 self.test_idx = test_idx
145 def get(test_idx, test_dir, res): argument
158 return RTAppTest(test_idx, test_dir, res)
161 return DefaultTest(test_idx, test_dir, res)
254 def __init__(self, test_idx, test_dir, res): argument
255 super(RTAppTest, self).__init__(test_idx, test_dir, res)
[all …]
/external/autotest/tko/
Ddb.py424 for test_idx in self.find_tests(job_idx):
425 where = {'test_idx' : test_idx}
430 self.delete('tko_test_labels_tests', {'test_id': test_idx})
521 test_idx = test.test_idx
523 {'test_idx': test_idx}, commit=commit)
524 where = {'test_idx': test_idx}
532 test_idx = test.test_idx = self.get_last_autonumber_value()
533 data = {'test_idx': test_idx}
551 data = {'test_idx': test_idx}
554 data = {'test_idx': test_idx, 'attribute': key,
[all …]
Dparse.py268 old_tests = dict(((test, subdir), test_idx)
269 for test_idx, subdir, test in raw_old_tests)
304 test_idx = old_tests.pop((test.testname, test.subdir), None)
305 if test_idx is not None:
306 test.test_idx = test_idx
312 for test_idx in old_tests.itervalues():
313 where = {'test_idx' : test_idx}
318 db.delete('tko_test_labels_tests', {'test_id': test_idx})
Djob_serializer_unittest.py55 tko_test.test_idx = 3
203 self.assertEqual(test.test_idx, newtest.test_idx)
Djob_serializer.py265 pb_test.test_idx = tko_test.test_idx
Dtko.proto34 optional int64 test_idx = 12; field
Dfrontend.py222 def __init__(self, db, test_idx, job_idx, testname, subdir, kernel_idx, argument
224 self.idx = test_idx
/external/autotest/database/
Dschema_051.sql803 …NSTRAINT `test_runs_tko_test_id_fk` FOREIGN KEY (`tko_test_id`) REFERENCES `tko_tests` (`test_idx`)
835 `test_idx` int(10) unsigned NOT NULL,
839 KEY `test_idx` (`test_idx`),
840 …RAINT `tko_iteration_attributes_ibfk_1` FOREIGN KEY (`test_idx`) REFERENCES `tko_tests` (`test_idx
852 `test_idx` int(10) unsigned NOT NULL,
856 KEY `test_idx` (`test_idx`),
859 …ONSTRAINT `tko_iteration_result_ibfk_1` FOREIGN KEY (`test_idx`) REFERENCES `tko_tests` (`test_idx
1095 `test_idx` int(10) unsigned NOT NULL,
1101 KEY `test_idx` (`test_idx`),
1104 …CONSTRAINT `tko_test_attributes_ibfk_1` FOREIGN KEY (`test_idx`) REFERENCES `tko_tests` (`test_idx
[all …]
/external/autotest/contrib/
Dremove_old_tests_in_tko.sql11 WHILE EXISTS (SELECT test_idx FROM tko_tests WHERE started_time < @cutoff_date LIMIT 1) DO
22 …WHILE EXISTS (SELECT test_idx FROM tko_tests where started_time IS NULL and finished_time < @cutof…
/external/lisa/tools/
Dplots.py88 for test_idx in sorted(os.listdir(args.results)):
90 match = TEST_DIR_RE.search(test_idx)
106 test_dir = os.path.join(args.results, test_idx)
/external/autotest/frontend/tko/
Drpc_interface.py120 test_idx = group_dict.pop('latest_test_idx')
121 group_dict['test_idx'] = test_idx
122 test_view = test_views[test_idx]
Dmodels.py203 test_idx = dbmodels.AutoField(primary_key=True) variable in Test
231 'immutable' % (attribute, self.test_idx))
699 test_idx = dbmodels.IntegerField('test index', primary_key=True) variable in TestView
Drpc_interface_unittest_fixme.py213 (test.test_idx, iteration, attribute, value))
/external/autotest/site_utils/
Dperf_csv_uploader.py168 test_idx=attribute.test_id)
Drun_suite_unittest.py30 def _build_view(self, test_idx, test_name, subdir, status, afe_job_id, argument
59 return {'test_idx': test_idx, 'test_name': test_name, 'subdir':subdir,
/external/lisa/ipynb/profiling/
Dkernel_functions_profiling.ipynb653 " for test_idx in sorted(os.listdir(res_dir)):\n",
654 " test_dir = os.path.join(res_dir, test_idx)\n",