Lines Matching refs:cmd
37 cmd = self.gen_gnuplot_cmd(f'print "{string}"')
38 out, ret = self.emulator.run(cmd)
46 cmd = self.gen_gnuplot_cmd(f"print {op1} * {op2}")
47 out, ret = self.emulator.run(cmd)
53 cmd = self.gen_gnuplot_cmd(f"exit status {exit_code}")
54 _, ret = self.emulator.run(cmd)
59 cmd = self.gen_gnuplot_cmd(gpcmd)
60 self.assertRunOk(cmd)
63 cmd = "gnuplot /root/gnuplot-test.plot"
64 self.assertRunOk(cmd)
70 cmd = f"grep -Fo '{exp_str}' /root/gnuplot-test.txt"
71 out, ret = self.emulator.run(cmd)