Home | History | Annotate | Download | only in tests

Lines Matching refs:params

6 def run_multi_disk(test, params, env):
17 @param params: Dictionary with the test parameters
20 vm = env.get_vm(params["main_vm"])
22 session = vm.wait_for_login(timeout=int(params.get("login_timeout", 360)))
24 images = params.get("images").split()
25 n_repeat = int(params.get("n_repeat", "1"))
28 file_system = params.get("file_system").split()
30 cmd_timeout = float(params.get("cmd_timeout", 360))
31 re_str = params.get("re_str")
32 block_list = params.get("block_list").split()
35 if params.get("clean_cmd"):
36 cmd = params.get("clean_cmd")
38 if params.get("pre_cmd"):
39 cmd = params.get("pre_cmd")
42 cmd = params.get("list_volume_command")
68 cmd = params.get("format_command") % (fs, disk)
71 if params.get("mount_command"):
72 cmd = params.get("mount_command") % (disk, disk, disk)
79 cmd_list = params.get("cmd_list").split()
81 if params.get(cmd_l):
82 cmd = params.get(cmd_l) % disk
85 cmd = params.get("compare_command")
87 key_word = params.get("check_result_key_word")
97 if params.get("umount_command"):
98 cmd = params.get("show_mount_cmd")
104 cmd = params.get("umount_command") % (disk, disk)
108 if params.get("post_cmd"):
109 cmd = params.get("post_cmd")