Lines Matching refs:cmd
45 cmd = f"head -{count} {disp_crc_path}"
49 cmd += " | tr -d '\\000'"
53 cmd += " | cut -f 2 -d ' '"
55 return cmd
59 cmd = self.gen_read_disp_crcs_cmd(count)
61 cmd += " | uniq | wc -l"
62 return cmd
67 cmd = "weston"
68 cmd += " --config=/etc/weston.ini"
69 cmd += " --continue-without-input"
70 cmd += " --log=/tmp/weston.log"
71 cmd += " &> /dev/null &"
72 self.assertRunOk(cmd)
79 cmd = f"while [ ! -e \"{wayland_socket}\" ] ; do sleep 1 ; done"
80 self.assertRunOk(cmd, timeout=10)
84 cmd = "killall weston && sleep 3"
85 self.assertRunOk(cmd)
117 cmd = self.gen_count_unique_disp_crcs_cmd()
118 output, exit_code = self.emulator.run(cmd)
124 cmd = self.gen_read_disp_crcs_cmd()
125 output, exit_code = self.emulator.run(cmd)
141 cmd = self.gen_read_disp_crcs_cmd()
142 output, exit_code = self.emulator.run(cmd)
155 cmd = self.gen_count_unique_disp_crcs_cmd(300)
156 output, exit_code = self.emulator.run(cmd, timeout=10)
168 cmd = self.gen_read_disp_crcs_cmd()
169 output, exit_code = self.emulator.run(cmd)