Lines Matching defs:test_name
66 test_name = ''
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_type)
219 cls._write_option(f, test_name, test_type, percentile)
222 def __init__(self, test_name, test_type, pass_list):
224 @param test_name: name of current workload. i.e. randwrite
228 self.test_name = test_name
236 self._write_graph(self.test_name, self.test_type, self.pass_list, False)
237 self._write_graph(self.test_name, self.test_type, self.pass_list, True)