test suite reviews and discussions
 help / color / mirror / Atom feed
From: "zhao,meijuan" <meijuanx.zhao@intel.com>
To: dts@dpdk.org
Cc: "zhao,meijuan" <meijuanx.zhao@intel.com>
Subject: [dts] [PATCH V1] tests/vm power: change guest vm power mgr option
Date: Fri, 27 Jul 2018 09:25:15 +0800	[thread overview]
Message-ID: <1532654715-100434-1-git-send-email-meijuanx.zhao@intel.com> (raw)

host core number is three at least,guest option have vm-name
and vcpu-list at least, you chan refer to dpdk 59287933

Signed-off-by: zhao,meijuan <meijuanx.zhao@intel.com>
---
 tests/TestSuite_vm_power_manager.py | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/tests/TestSuite_vm_power_manager.py b/tests/TestSuite_vm_power_manager.py
index 5e273f4..1e72b19 100644
--- a/tests/TestSuite_vm_power_manager.py
+++ b/tests/TestSuite_vm_power_manager.py
@@ -90,9 +90,8 @@ class TestVmPowerManager(TestCase, IxiaPacketGenerator):
             "examples/vm_power_manager/guest_cli")
         self.verify("Error" not in out, "Compilation error")
         self.verify("No such" not in out, "Compilation error")
-
         self.vm_power_dir = "./examples/vm_power_manager/"
-        mgr_cmd = self.vm_power_dir + "build/vm_power_mgr -c 0x3 -n 4"
+        mgr_cmd = self.vm_power_dir + "build/vm_power_mgr -c 0x7 -n 4"
         out = self.dut.send_expect(mgr_cmd, "vmpower>", 120)
         self.dut.send_expect("add_vm %s" % self.vm_name, "vmpower>")
         self.dut.send_expect("add_channels %s all" % self.vm_name, "vmpower>")
@@ -115,7 +114,7 @@ class TestVmPowerManager(TestCase, IxiaPacketGenerator):
         """
         # check Channels and vcpus
         guest_cmd = self.vm_power_dir + \
-            "guest_cli/build/guest_vm_power_mgr -c 0xf -n 4 -- -i"
+            "guest_cli/build/guest_vm_power_mgr -c 0xf -n 4 -- --vm-name=vm0 --vcpu-list=0,1,2,3"
         out = self.vm_dut.send_expect(guest_cmd, "vmpower\(guest\)>", 120)
         self.vm_dut.send_expect("quit", "# ")
 
@@ -134,7 +133,7 @@ class TestVmPowerManager(TestCase, IxiaPacketGenerator):
         Check host cpu frequency can scale down in VM
         """
         guest_cmd = self.vm_power_dir + \
-            "guest_cli/build/guest_vm_power_mgr -c 0xf -n 4 -- -i"
+            "guest_cli/build/guest_vm_power_mgr -c 0xf -n 4 -- --vm-name=vm0 --vcpu-list=0,1,2,3"
         out = self.vm_dut.send_expect(guest_cmd, "vmpower\(guest\)>", 120)
 
         for vcpu in range(self.core_num):
@@ -164,7 +163,7 @@ class TestVmPowerManager(TestCase, IxiaPacketGenerator):
         Check host cpu frequency can scale up in VM
         """
         guest_cmd = self.vm_power_dir + \
-            "guest_cli/build/guest_vm_power_mgr -c 0xf -n 4 -- -i"
+            "guest_cli/build/guest_vm_power_mgr -c 0xf -n 4 -- --vm-name=vm0 --vcpu-list=0,1,2,3"
         out = self.vm_dut.send_expect(guest_cmd, "vmpower\(guest\)>", 120)
 
         for vcpu in range(self.core_num):
@@ -191,7 +190,7 @@ class TestVmPowerManager(TestCase, IxiaPacketGenerator):
         Check host cpu frequency can scale to max in VM
         """
         guest_cmd = self.vm_power_dir + \
-            "guest_cli/build/guest_vm_power_mgr -c 0xf -n 4 -- -i"
+            "guest_cli/build/guest_vm_power_mgr -c 0xf -n 4 -- --vm-name=vm0 --vcpu-list=0,1,2,3"
         out = self.vm_dut.send_expect(guest_cmd, "vmpower\(guest\)>", 120)
 
         max_freq_path = "cat /sys/devices/system/cpu/cpu%s/cpufreq/" + \
@@ -214,7 +213,7 @@ class TestVmPowerManager(TestCase, IxiaPacketGenerator):
         Check host cpu frequency can scale to min in VM
         """
         guest_cmd = self.vm_power_dir + \
-            "guest_cli/build/guest_vm_power_mgr -c 0xf -n 4 -- -i"
+            "guest_cli/build/guest_vm_power_mgr -c 0xf -n 4 -- --vm-name=vm0 --vcpu-list=0,1,2,3"
         out = self.vm_dut.send_expect(guest_cmd, "vmpower\(guest\)>", 120)
 
         min_freq_path = "cat /sys/devices/system/cpu/cpu%s/cpufreq/" + \
@@ -279,7 +278,7 @@ class TestVmPowerManager(TestCase, IxiaPacketGenerator):
         self.verify("No such" not in out, "Compilation error")
 
         guest_cmd = self.vm_power_dir + \
-            "guest_cli/build/guest_vm_power_mgr -c 0xf -n 4 -- -i"
+            "guest_cli/build/guest_vm_power_mgr -c 0xf -n 4 -- --vm-name=vm0 --vcpu-list=0,1,2,3"
         out = vm2_dut.send_expect(guest_cmd, "vmpower\(guest\)>", 120)
         vm2_dut.send_expect("quit", "# ")
         vm2.stop()
@@ -432,4 +431,5 @@ class TestVmPowerManager(TestCase, IxiaPacketGenerator):
         self.dut.send_expect("quit", "# ")
         self.vm.stop()
         self.dut.virt_exit()
+        self.dut.send_expect("kill -9 $(pidof qemu-system-x86_64)", "# ")
         pass
-- 
1.9.3

             reply	other threads:[~2018-07-27  1:24 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-27  1:25 zhao,meijuan [this message]
2018-07-27  3:01 ` Tu, Lijuan
  -- strict thread matches above, loose matches on Subject: below --
2018-07-27  5:08 zhao,meijuan
2018-07-27 17:08 ` Lijuan Tu
2018-07-24  1:44 zhao,meijuan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1532654715-100434-1-git-send-email-meijuanx.zhao@intel.com \
    --to=meijuanx.zhao@intel.com \
    --cc=dts@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).