* [Qemu-devel] [Autotest PATCH 1/2] virt run: fix typo in help message
@ 2012-12-30 1:02 Amos Kong
2012-12-30 1:02 ` [Qemu-devel] [Autotest PATCH 2/2] virt run: add three logical case filters Amos Kong
2012-12-31 19:52 ` [Qemu-devel] [Virt-test-devel] [Autotest PATCH 1/2] virt run: fix typo in help message Lucas Meneghel Rodrigues
0 siblings, 2 replies; 11+ messages in thread
From: Amos Kong @ 2012-12-30 1:02 UTC (permalink / raw)
To: autotest-kernel; +Cc: lmr, Amos Kong, qemu-devel, virt-test-devel
type 'kvm' already been changed to 'qemu'
Signed-off-by: Amos Kong <akong@redhat.com>
---
run | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/run b/run
index 97dcdad..aac332a 100755
--- a/run
+++ b/run
@@ -145,7 +145,7 @@ class VirtTestRunParser(optparse.OptionParser):
general.add_option("-v", "--verbose", action="store_true",
dest="verbose", help="Exhibit debug messages")
general.add_option("-t", "--type", action="store", dest="type",
- help="Choose test type (kvm, libvirt, v2v)")
+ help="Choose test type (qemu, libvirt, v2v)")
general.add_option("-c", "--config", action="store", dest="config",
help="Explicitly choose a cartesian config")
general.add_option("-r", "--restore-image", action="store_true",
@@ -174,7 +174,7 @@ class VirtTestRunParser(optparse.OptionParser):
"%default"))
self.add_option_group(general)
- qemu = optparse.OptionGroup(self, 'Options specific to the kvm test')
+ qemu = optparse.OptionGroup(self, 'Options specific to the qemu test')
qemu.add_option("--qemu-bin", action="store", dest="qemu",
help=("Path to a custom qemu binary to be tested. "
"Default path: %s" % qemu_bin_path))
--
1.7.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [Qemu-devel] [Autotest PATCH 2/2] virt run: add three logical case filters
2012-12-30 1:02 [Qemu-devel] [Autotest PATCH 1/2] virt run: fix typo in help message Amos Kong
@ 2012-12-30 1:02 ` Amos Kong
2012-12-30 1:10 ` Amos Kong
2012-12-31 19:52 ` [Qemu-devel] [Virt-test-devel] [Autotest PATCH 1/2] virt run: fix typo in help message Lucas Meneghel Rodrigues
1 sibling, 1 reply; 11+ messages in thread
From: Amos Kong @ 2012-12-30 1:02 UTC (permalink / raw)
To: autotest-kernel; +Cc: lmr, Amos Kong, qemu-devel, virt-test-devel
This patch added there options for filtering cases by logics,
For example:
./run -t qemu -c tests.cfg --oronly="WinXP Win7" --andonly="boot 64" --not="sp1"
(following cases will be executed)
Test 1: virtio_blk.smp2.virtio_net.WinXP.64.boot
Test 2: virtio_blk.smp2.virtio_net.Win7.64.boot
Current '--tests' option will actually added OR case filter.
I would like to reserve '--tests', because it's easy to be
understood. eg:
--tests="Win7 WinXP":
cases of those two guests will be filtered.
Signed-off-by: Amos Kong <akong@redhat.com>
---
run | 21 +++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/run b/run
index aac332a..da02ced 100755
--- a/run
+++ b/run
@@ -158,6 +158,15 @@ class VirtTestRunParser(optparse.OptionParser):
general.add_option("--tests", action="store", dest="tests",
help=('List of space separated tests to be executed'
' - example: --tests "boot reboot shutdown"'))
+ general.add_option("--and", action="store", dest="andstr",
+ help=('Add AND case filter'
+ ' - example: --and "RHEL boot"'))
+ general.add_option("--or", action="store", dest="orstr",
+ help=('Add OR case filter'
+ ' - example: --tests "boot shutdown"'))
+ general.add_option("--not", action="store", dest="nostr",
+ help=('Add NOT case filter'
+ ' - example: --not "netperf_win"'))
general.add_option("--list-tests", action="store_true", dest="list",
help="List tests available")
general.add_option("--data-dir", action="store", dest="datadir",
@@ -310,6 +319,18 @@ class VirtTestApp(object):
tests = self.options.tests.split(" ")
self.cartesian_parser.parse_string("only %s" % ", ".join(tests))
+ if self.options.type and self.options.andstr:
+ for i in self.options.andstr.split(" "):
+ self.cartesian_parser.parse_string("only %s" % i)
+
+ if self.options.type and self.options.orstr:
+ tests = self.options.orstr.split(" ")
+ self.cartesian_parser.parse_string("only %s" % ", ".join(tests))
+
+ if self.options.type and self.options.nostr:
+ for i in self.options.nostr.split(" "):
+ self.cartesian_parser.parse_string("no %s" % i)
+
elif (self.options.type and not self.options.tests
and not self.options.config):
if self.options.type == 'qemu':
--
1.7.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [Qemu-devel] [Autotest PATCH 2/2] virt run: add three logical case filters
2012-12-30 1:02 ` [Qemu-devel] [Autotest PATCH 2/2] virt run: add three logical case filters Amos Kong
@ 2012-12-30 1:10 ` Amos Kong
2012-12-31 19:55 ` Lucas Meneghel Rodrigues
0 siblings, 1 reply; 11+ messages in thread
From: Amos Kong @ 2012-12-30 1:10 UTC (permalink / raw)
To: autotest-kernel; +Cc: lmr, qemu-devel, virt-test-devel
On Sun, Dec 30, 2012 at 09:02:09AM +0800, Amos Kong wrote:
> This patch added there options for filtering cases by logics,
>
> For example:
> ./run -t qemu -c tests.cfg --oronly="WinXP Win7" --andonly="boot 64" --not="sp1"
Oh! a typo in commitlog
./run -t qemu -c tests.cfg --or="WinXP Win7" --and="boot 64" --not="sp1"
> (following cases will be executed)
>
> Test 1: virtio_blk.smp2.virtio_net.WinXP.64.boot
> Test 2: virtio_blk.smp2.virtio_net.Win7.64.boot
...
Amos
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Qemu-devel] [Autotest PATCH 2/2] virt run: add three logical case filters
2012-12-30 1:10 ` Amos Kong
@ 2012-12-31 19:55 ` Lucas Meneghel Rodrigues
2013-01-04 13:13 ` Andreas Färber
2013-01-05 8:52 ` [Qemu-devel] [Virt-test-devel] " Qingtang Zhou
0 siblings, 2 replies; 11+ messages in thread
From: Lucas Meneghel Rodrigues @ 2012-12-31 19:55 UTC (permalink / raw)
To: Amos Kong; +Cc: autotest-kernel, qemu-devel, virt-test-devel
Hmmm, about this one, I'm worried about making things more complex...
The way I see the problem at hand, I'd say if people want to customize
things, they'd be better of creating their own, specialized config
files rather than adding command line flags to manipulate the test
sets.
So my initial stand on this particular patch is NACK, but you might
convince me otherwise :)
On Sat, Dec 29, 2012 at 11:10 PM, Amos Kong <akong@redhat.com> wrote:
> On Sun, Dec 30, 2012 at 09:02:09AM +0800, Amos Kong wrote:
>> This patch added there options for filtering cases by logics,
>>
>> For example:
>> ./run -t qemu -c tests.cfg --oronly="WinXP Win7" --andonly="boot 64" --not="sp1"
>
> Oh! a typo in commitlog
>
> ./run -t qemu -c tests.cfg --or="WinXP Win7" --and="boot 64" --not="sp1"
>
>> (following cases will be executed)
>>
>> Test 1: virtio_blk.smp2.virtio_net.WinXP.64.boot
>> Test 2: virtio_blk.smp2.virtio_net.Win7.64.boot
> ...
>
> Amos
>
--
Lucas
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Qemu-devel] [Autotest PATCH 2/2] virt run: add three logical case filters
2012-12-31 19:55 ` Lucas Meneghel Rodrigues
@ 2013-01-04 13:13 ` Andreas Färber
2013-01-04 14:21 ` [Qemu-devel] [Autotest] " Lucas Meneghel Rodrigues
2013-01-04 15:06 ` [Qemu-devel] " Gerd Hoffmann
2013-01-05 8:52 ` [Qemu-devel] [Virt-test-devel] " Qingtang Zhou
1 sibling, 2 replies; 11+ messages in thread
From: Andreas Färber @ 2013-01-04 13:13 UTC (permalink / raw)
To: Lucas Meneghel Rodrigues
Cc: Yuri Tsarev, Amos Kong, autotest-kernel, qemu-devel,
virt-test-devel
Am 31.12.2012 20:55, schrieb Lucas Meneghel Rodrigues:
> Hmmm, about this one, I'm worried about making things more complex...
>
> The way I see the problem at hand, I'd say if people want to customize
> things, they'd be better of creating their own, specialized config
> files rather than adding command line flags to manipulate the test
> sets.
>
> So my initial stand on this particular patch is NACK, but you might
> convince me otherwise :)
Lucas, following your nice presentation at KVM Forum I have set up
virt-test for local testing of my core CPU refactorings.
When run using
./run -t kvm --qemu-bin=/.../x86_64-softmmu/qemu-system-x86_64
it runs only 13 migration tests:
(1/13) migrate.default.tcp: PASS (41.04 s)
(2/13) migrate.default.unix: PASS (21.88 s)
(3/13) migrate.default.exec: PASS (20.84 s)
(4/13) migrate.default.fd: PASS (23.04 s)
(5/13) migrate.default.mig_cancel: PASS (18.66 s)
(6/13) migrate.with_set_speed.tcp: PASS (19.22 s)
(7/13) migrate.with_set_speed.unix: PASS (19.07 s)
(8/13) migrate.with_set_speed.exec: PASS (19.03 s)
(9/13) migrate.with_set_speed.fd: PASS (18.93 s)
(10/13) migrate.with_reboot.tcp: PASS (40.97 s)
(11/13) migrate.with_reboot.unix: PASS (42.90 s)
(12/13) migrate.with_reboot.exec: PASS (47.04 s)
(13/13) migrate.with_reboot.fd: PASS (47.95 s)
Whereas --list-tests shows 274 tests.
So while I am impartial to this specific patch, some easy way to run a
comprehensive test coverage without having to manually name each test
using --tests= would be very handy! Something like --all-tests maybe?
If there is such a thing already, it is not obvious to the novice user
and --help output may need to be extended.
Regards,
Andreas
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Qemu-devel] [Autotest] [Autotest PATCH 2/2] virt run: add three logical case filters
2013-01-04 13:13 ` Andreas Färber
@ 2013-01-04 14:21 ` Lucas Meneghel Rodrigues
2013-01-04 15:06 ` [Qemu-devel] " Gerd Hoffmann
1 sibling, 0 replies; 11+ messages in thread
From: Lucas Meneghel Rodrigues @ 2013-01-04 14:21 UTC (permalink / raw)
To: Andreas Färber
Cc: virt-test-devel, Yuri Tsarev, autotest-kernel, qemu-devel,
Lucas Meneghel Rodrigues
On 01/04/2013 11:13 AM, Andreas Färber wrote:
> Am 31.12.2012 20:55, schrieb Lucas Meneghel Rodrigues:
>> Hmmm, about this one, I'm worried about making things more complex...
>>
>> The way I see the problem at hand, I'd say if people want to customize
>> things, they'd be better of creating their own, specialized config
>> files rather than adding command line flags to manipulate the test
>> sets.
>>
>> So my initial stand on this particular patch is NACK, but you might
>> convince me otherwise :)
>
> Lucas, following your nice presentation at KVM Forum I have set up
> virt-test for local testing of my core CPU refactorings.
> When run using
> ./run -t kvm --qemu-bin=/.../x86_64-softmmu/qemu-system-x86_64
> it runs only 13 migration tests:
>
> (1/13) migrate.default.tcp: PASS (41.04 s)
> (2/13) migrate.default.unix: PASS (21.88 s)
> (3/13) migrate.default.exec: PASS (20.84 s)
> (4/13) migrate.default.fd: PASS (23.04 s)
> (5/13) migrate.default.mig_cancel: PASS (18.66 s)
> (6/13) migrate.with_set_speed.tcp: PASS (19.22 s)
> (7/13) migrate.with_set_speed.unix: PASS (19.07 s)
> (8/13) migrate.with_set_speed.exec: PASS (19.03 s)
> (9/13) migrate.with_set_speed.fd: PASS (18.93 s)
> (10/13) migrate.with_reboot.tcp: PASS (40.97 s)
> (11/13) migrate.with_reboot.unix: PASS (42.90 s)
> (12/13) migrate.with_reboot.exec: PASS (47.04 s)
> (13/13) migrate.with_reboot.fd: PASS (47.95 s)
>
> Whereas --list-tests shows 274 tests.
>
> So while I am impartial to this specific patch, some easy way to run a
> comprehensive test coverage without having to manually name each test
> using --tests= would be very handy! Something like --all-tests maybe?
Hmm, could be. Due to the long time it'd be needed to run --all-tests, I
thought it wouldn't be necessary.
> If there is such a thing already, it is not obvious to the novice user
> and --help output may need to be extended.
One thing that does help here is to know that you can specify only the
first component of the test name displayed on --help, and it'll run all
derivated tests. For example, if you want to run all virtio_console
tests, you can just specify:
./run -t kvm --qemu-bin=/path/to/qemu --tests virtio_console
SETUP: PASS (1.60 s)
DATA DIR: /home/area/virt_test/
DEBUG LOG:
/home/lmr/Code/virt-test.git/logs/run-2013-01-04-12.20.20/debug.log
TESTS: 118
(1/118)
virtio_console.spread_linear.specifiable.virtserialport.with_vm.open:
I need to think of a good way of exposing this information on help output...
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Qemu-devel] [Autotest PATCH 2/2] virt run: add three logical case filters
2013-01-04 13:13 ` Andreas Färber
2013-01-04 14:21 ` [Qemu-devel] [Autotest] " Lucas Meneghel Rodrigues
@ 2013-01-04 15:06 ` Gerd Hoffmann
2013-01-04 17:35 ` Lucas Meneghel Rodrigues
1 sibling, 1 reply; 11+ messages in thread
From: Gerd Hoffmann @ 2013-01-04 15:06 UTC (permalink / raw)
To: Andreas Färber
Cc: Lucas Meneghel Rodrigues, autotest-kernel, qemu-devel,
Yuri Tsarev, virt-test-devel, Amos Kong
Hi,
> So while I am impartial to this specific patch, some easy way to run a
> comprehensive test coverage without having to manually name each test
> using --tests= would be very handy! Something like --all-tests maybe?
Hint from the dirty tricks department:
--tests=JeOS will do (for --type=kvm).
Not sure how useful that actually is though, not all tests are in a good
and tested state.
HTH,
Gerd
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Qemu-devel] [Autotest PATCH 2/2] virt run: add three logical case filters
2013-01-04 15:06 ` [Qemu-devel] " Gerd Hoffmann
@ 2013-01-04 17:35 ` Lucas Meneghel Rodrigues
0 siblings, 0 replies; 11+ messages in thread
From: Lucas Meneghel Rodrigues @ 2013-01-04 17:35 UTC (permalink / raw)
To: Gerd Hoffmann
Cc: autotest-kernel, qemu-devel, Yuri Tsarev, virt-test-devel,
Amos Kong, Andreas Färber
On Fri, Jan 4, 2013 at 1:06 PM, Gerd Hoffmann <kraxel@redhat.com> wrote:
> Hi,
>
>> So while I am impartial to this specific patch, some easy way to run a
>> comprehensive test coverage without having to manually name each test
>> using --tests= would be very handy! Something like --all-tests maybe?
>
> Hint from the dirty tricks department:
> --tests=JeOS will do (for --type=kvm).
>
> Not sure how useful that actually is though, not all tests are in a good
> and tested state.
Yep, there's that as well. I've fixed a lot of tests during the last
weeks, but indeed some tests might be broken.
> HTH,
> Gerd
>
--
Lucas
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Qemu-devel] [Virt-test-devel] [Autotest PATCH 2/2] virt run: add three logical case filters
2012-12-31 19:55 ` Lucas Meneghel Rodrigues
2013-01-04 13:13 ` Andreas Färber
@ 2013-01-05 8:52 ` Qingtang Zhou
2013-01-05 15:29 ` Lucas Meneghel Rodrigues
1 sibling, 1 reply; 11+ messages in thread
From: Qingtang Zhou @ 2013-01-05 8:52 UTC (permalink / raw)
To: Lucas Meneghel Rodrigues
Cc: Amos Kong, autotest-kernel, qemu-devel, virt-test-devel
* On 2012-12-31 17:55:24 -0200, Lucas Meneghel Rodrigues (lookkas@gmail.com) wrote:
> Hmmm, about this one, I'm worried about making things more complex...
>
> The way I see the problem at hand, I'd say if people want to customize
> things, they'd be better of creating their own, specialized config
> files rather than adding command line flags to manipulate the test
> sets.
Which kind of user interface do you want to provide to us (autotest user)?
A cli? But why does it can't specify more parameters or filters?
A config file? Why don't allow us to update tests.cfg?
I'm totally confused.
And why must I download that JeOS image?
I've setup my own image, why can't I use it directly?
Well, I prefer the old autotest style more now.
>
> So my initial stand on this particular patch is NACK, but you might
> convince me otherwise :)
>
> On Sat, Dec 29, 2012 at 11:10 PM, Amos Kong <akong@redhat.com> wrote:
> > On Sun, Dec 30, 2012 at 09:02:09AM +0800, Amos Kong wrote:
> >> This patch added there options for filtering cases by logics,
> >>
> >> For example:
> >> ./run -t qemu -c tests.cfg --oronly="WinXP Win7" --andonly="boot 64" --not="sp1"
> >
> > Oh! a typo in commitlog
> >
> > ./run -t qemu -c tests.cfg --or="WinXP Win7" --and="boot 64" --not="sp1"
> >
> >> (following cases will be executed)
> >>
> >> Test 1: virtio_blk.smp2.virtio_net.WinXP.64.boot
> >> Test 2: virtio_blk.smp2.virtio_net.Win7.64.boot
> > ...
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Qemu-devel] [Virt-test-devel] [Autotest PATCH 2/2] virt run: add three logical case filters
2013-01-05 8:52 ` [Qemu-devel] [Virt-test-devel] " Qingtang Zhou
@ 2013-01-05 15:29 ` Lucas Meneghel Rodrigues
0 siblings, 0 replies; 11+ messages in thread
From: Lucas Meneghel Rodrigues @ 2013-01-05 15:29 UTC (permalink / raw)
To: Qingtang Zhou; +Cc: Amos Kong, autotest-kernel, qemu-devel, virt-test-devel
On Sat, Jan 5, 2013 at 6:52 AM, Qingtang Zhou <qzhou@redhat.com> wrote:
> * On 2012-12-31 17:55:24 -0200, Lucas Meneghel Rodrigues (lookkas@gmail.com) wrote:
>> Hmmm, about this one, I'm worried about making things more complex...
>>
>> The way I see the problem at hand, I'd say if people want to customize
>> things, they'd be better of creating their own, specialized config
>> files rather than adding command line flags to manipulate the test
>> sets.
> Which kind of user interface do you want to provide to us (autotest user)?
> A cli?
"Old autotest" users know and care more about using the cartesian
config, and therefore they can make their own .cfg file. The old
tests.cfg was saved as tests-example.cfg, so one could use that and
build on top of it. If the person wants to run virt-tests using
autotest, that's fine, and we'll always support it.
> But why does it can't specify more parameters or filters?
> A config file? Why don't allow us to update tests.cfg?
See, you can always specify a config file:
./run -t qemu -c qemu/cfg/my-custom-file.cfg
The idea behind tests.cfg is that it's reserved for the test runner.
It's not a lot to ask I think, given that you can use a custom file
with -c.
> I'm totally confused.
I understand. You could be more willing to understand that we're doing
the possible to accomodate users that:
a) Don't care about 'autotest'. They just want a simple way to get to
test execution.
b) Don't care about 'cartesian files'. It's always been a point of
endless complaint, and I hope eventually we can get rid of it. While
we can't figure out how to do it, I'm trying to at least mitigate the
situation by making it *as transparent as possible* to users that fit
into a) and b).
I said I'm in principle against Amos' patch, but if you guys can
enlighten me as of why it's beneficial, I can change my mind.
> And why must I download that JeOS image?
You don't. There's always the option of doing things the 'old' way,
running the tests under autotest, etc. If you want a tutorial on how
to do that, I could write one.
> I've setup my own image, why can't I use it directly?
I'm working on a way of doing it from the test runner.
> Well, I prefer the old autotest style more now.
I won't say I liked the tone of your message, but let me try to be
objective and constructive:
1) It's not our intention to piss off the people who have been using
and developing our tests over the last 4 years.
2) It helps a lot opening issues and stating clearly what are the
problems you are seeing with the recent changes, remarks, and how you
see it could be solved. I think we can work this out together.
Thanks,
Lucas
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [Qemu-devel] [Virt-test-devel] [Autotest PATCH 1/2] virt run: fix typo in help message
2012-12-30 1:02 [Qemu-devel] [Autotest PATCH 1/2] virt run: fix typo in help message Amos Kong
2012-12-30 1:02 ` [Qemu-devel] [Autotest PATCH 2/2] virt run: add three logical case filters Amos Kong
@ 2012-12-31 19:52 ` Lucas Meneghel Rodrigues
1 sibling, 0 replies; 11+ messages in thread
From: Lucas Meneghel Rodrigues @ 2012-12-31 19:52 UTC (permalink / raw)
To: Amos Kong; +Cc: autotest-kernel, qemu-devel, virt-test-devel
Ok, this looks good, applied, thanks!
On Sat, Dec 29, 2012 at 11:02 PM, Amos Kong <akong@redhat.com> wrote:
> type 'kvm' already been changed to 'qemu'
>
> Signed-off-by: Amos Kong <akong@redhat.com>
> ---
> run | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/run b/run
> index 97dcdad..aac332a 100755
> --- a/run
> +++ b/run
> @@ -145,7 +145,7 @@ class VirtTestRunParser(optparse.OptionParser):
> general.add_option("-v", "--verbose", action="store_true",
> dest="verbose", help="Exhibit debug messages")
> general.add_option("-t", "--type", action="store", dest="type",
> - help="Choose test type (kvm, libvirt, v2v)")
> + help="Choose test type (qemu, libvirt, v2v)")
> general.add_option("-c", "--config", action="store", dest="config",
> help="Explicitly choose a cartesian config")
> general.add_option("-r", "--restore-image", action="store_true",
> @@ -174,7 +174,7 @@ class VirtTestRunParser(optparse.OptionParser):
> "%default"))
> self.add_option_group(general)
>
> - qemu = optparse.OptionGroup(self, 'Options specific to the kvm test')
> + qemu = optparse.OptionGroup(self, 'Options specific to the qemu test')
> qemu.add_option("--qemu-bin", action="store", dest="qemu",
> help=("Path to a custom qemu binary to be tested. "
> "Default path: %s" % qemu_bin_path))
> --
> 1.7.1
>
> _______________________________________________
> Virt-test-devel mailing list
> Virt-test-devel@redhat.com
> https://www.redhat.com/mailman/listinfo/virt-test-devel
--
Lucas
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2013-01-05 15:29 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-30 1:02 [Qemu-devel] [Autotest PATCH 1/2] virt run: fix typo in help message Amos Kong
2012-12-30 1:02 ` [Qemu-devel] [Autotest PATCH 2/2] virt run: add three logical case filters Amos Kong
2012-12-30 1:10 ` Amos Kong
2012-12-31 19:55 ` Lucas Meneghel Rodrigues
2013-01-04 13:13 ` Andreas Färber
2013-01-04 14:21 ` [Qemu-devel] [Autotest] " Lucas Meneghel Rodrigues
2013-01-04 15:06 ` [Qemu-devel] " Gerd Hoffmann
2013-01-04 17:35 ` Lucas Meneghel Rodrigues
2013-01-05 8:52 ` [Qemu-devel] [Virt-test-devel] " Qingtang Zhou
2013-01-05 15:29 ` Lucas Meneghel Rodrigues
2012-12-31 19:52 ` [Qemu-devel] [Virt-test-devel] [Autotest PATCH 1/2] virt run: fix typo in help message Lucas Meneghel Rodrigues
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).