test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [next]virt: fix attribute and argument error
@ 2016-08-09  7:43 Lijuan Tu
  2016-08-10  2:12 ` Liu, Yong
  0 siblings, 1 reply; 2+ messages in thread
From: Lijuan Tu @ 2016-08-09  7:43 UTC (permalink / raw)
  To: dts; +Cc: Lijuan Tu

Signed-off-by: Lijuan Tu <lijuanx.a.tu@intel.com>
---
 framework/virt_base.py | 7 ++++---
 framework/virt_dut.py  | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/framework/virt_base.py b/framework/virt_base.py
index e6a6d08..78e3334 100644
--- a/framework/virt_base.py
+++ b/framework/virt_base.py
@@ -364,9 +364,10 @@ class VirtBase(object):
         skip_setup = self.host_dut.skip_setup
         base_dir = self.host_dut.base_dir
         vm_dut.set_speedup_options(read_cache, skip_setup)
-        func_only = self.host_dut.want_func_tests
-        perf_only = self.host_dut.want_perf_tests
-        vm_dut.set_test_types(func_tests=func_only, perf_tests=perf_only)
+
+        # package and patch should be set before prerequisites
+        vm_dut.set_package(self.host_dut.package, self.host_dut.patches)
+
         # base_dir should be set before prerequisites
         vm_dut.set_directory(base_dir)
 
diff --git a/framework/virt_dut.py b/framework/virt_dut.py
index e13c48c..348279d 100644
--- a/framework/virt_dut.py
+++ b/framework/virt_dut.py
@@ -150,7 +150,7 @@ class VirtDut(DPDKdut):
         At last setup DUT' environment for validation.
         """
         if not self.skip_setup:
-            self.prepare_package(pkgName, patch)
+            self.prepare_package()
 
         self.send_expect("cd %s" % self.base_dir, "# ")
         self.send_expect("alias ls='ls --color=none'", "#")
-- 
1.9.3

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [dts] [next]virt: fix attribute and argument error
  2016-08-09  7:43 [dts] [next]virt: fix attribute and argument error Lijuan Tu
@ 2016-08-10  2:12 ` Liu, Yong
  0 siblings, 0 replies; 2+ messages in thread
From: Liu, Yong @ 2016-08-10  2:12 UTC (permalink / raw)
  To: Lijuan Tu, dts

Thanks, applied into next branch.

On 08/09/2016 03:43 PM, Lijuan Tu wrote:
> Signed-off-by: Lijuan Tu <lijuanx.a.tu@intel.com>
> ---
>   framework/virt_base.py | 7 ++++---
>   framework/virt_dut.py  | 2 +-
>   2 files changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/framework/virt_base.py b/framework/virt_base.py
> index e6a6d08..78e3334 100644
> --- a/framework/virt_base.py
> +++ b/framework/virt_base.py
> @@ -364,9 +364,10 @@ class VirtBase(object):
>           skip_setup = self.host_dut.skip_setup
>           base_dir = self.host_dut.base_dir
>           vm_dut.set_speedup_options(read_cache, skip_setup)
> -        func_only = self.host_dut.want_func_tests
> -        perf_only = self.host_dut.want_perf_tests
> -        vm_dut.set_test_types(func_tests=func_only, perf_tests=perf_only)
> +
> +        # package and patch should be set before prerequisites
> +        vm_dut.set_package(self.host_dut.package, self.host_dut.patches)
> +
>           # base_dir should be set before prerequisites
>           vm_dut.set_directory(base_dir)
>   
> diff --git a/framework/virt_dut.py b/framework/virt_dut.py
> index e13c48c..348279d 100644
> --- a/framework/virt_dut.py
> +++ b/framework/virt_dut.py
> @@ -150,7 +150,7 @@ class VirtDut(DPDKdut):
>           At last setup DUT' environment for validation.
>           """
>           if not self.skip_setup:
> -            self.prepare_package(pkgName, patch)
> +            self.prepare_package()
>   
>           self.send_expect("cd %s" % self.base_dir, "# ")
>           self.send_expect("alias ls='ls --color=none'", "#")

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-08-10  2:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-09  7:43 [dts] [next]virt: fix attribute and argument error Lijuan Tu
2016-08-10  2:12 ` Liu, Yong

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).