Home | History | Annotate | Download | only in tko

Lines Matching refs:keyval

31         Read job keyval files.
33 @param dir: String name of directory containing job keyval files.
44 # Pull in and merge all the keyval files, with higher-level
46 keyval = {}
52 if 'hostname' in upper_keyval and 'hostname' in keyval:
54 keyval.update(upper_keyval)
56 pass # If the keyval can't be read just move on to the next.
62 return keyval
111 """Abstract method to load a list of iterations from a keyval file.
113 @param keyval_path: String path to a keyval file.
140 extracted from the status logs, parse the test result files (keyval
160 # Grab iterations from the results keyval.
162 'results', 'keyval')
170 # Grab test attributes from the subdir keyval.
171 test_keyval = os.path.join(job.dir, subdir, 'keyval')
178 # Grab test+host attributes from the host keyval.
226 Load test attributes from a test keyval path.
229 keyval path. Does not assume that the path actually exists.
231 @param keyval_path: The string path to a keyval file.
257 # The keyval is <job_dir>/host_keyvals/<hostname> if it exists.
286 Abstract method to parse a keyval line and insert it into a dictionary.
299 Load a list of iterations from an iteration keyval file.
301 Keyval data from separate iterations is separated by blank
305 @param keyval_path: The string path to a keyval file.