* Now available: xm-test-0.4.0
@ 2005-10-31 16:13 Dan Smith
0 siblings, 0 replies; 4+ messages in thread
From: Dan Smith @ 2005-10-31 16:13 UTC (permalink / raw)
To: Xen Developers
I have just posted version 0.4.0 of xm-test here:
http://sourceforge.net/project/showfiles.php?group_id=3382&package_id=167975
Online reports can be viewed here:
http://xmtest.dague.org/
Major changes in this version:
- More machine information in submitted reports
- Fixes to some tests
- VMX compatibility mode, which uses a block device instead of a
ramdisk
We are starting to get some really good data on the reporting site.
However, we need more people to submit tests, and from varying
platforms. If you can run Xen on it, please run xm-test on it at
least occasionally.
* For those who are not familiar with xm-test:
Several of us here at IBM have been working on a framework for testing
the xen tools, specifically xm. Our goal is to provide a way for
developers to _easily_ write tests for new and existing xm commands.
We believe that such a test suite will help reduce breakages in the
user-facing tools when developers modify xm and/or xend.
We would like some feedback from the community on the usefulness of
our framework, in hopes that it might be hosted by xensource so that
everyone can contribute tests to help harden xm and xend.
* Details:
The framework tests (as well as the support libraries) are written in
python, which are executed by the standard automake "make check"
facilities. We build a standardized ramdisk that can be used for
portable test writing, therefore reducing dependencies on the test
host machine.
The framework library provides several abstractions to make common and
complex tasks easier for the test writer. For example, we provide a
domain and console abstraction that allows a test writer to start a
domU and execute arbitrary commands, retrieving the status and output
of each. This allows a decent amount of automation for verifying that
(for example) "xm sysrq mydomain s" actually sent the sysrq.
--
Dan Smith
IBM Linux Technology Center
Open Hypervisor Team
email: danms@us.ibm.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: Now available: xm-test-0.4.0
@ 2005-11-04 6:57 Yu, Ping Y
2005-11-04 15:26 ` Dan Smith
0 siblings, 1 reply; 4+ messages in thread
From: Yu, Ping Y @ 2005-11-04 6:57 UTC (permalink / raw)
To: Dan Smith, Xen Developers
Smith,
I have tried your latest xm-test-0.4. To enable VMX, I have done the following
(1) modify RD_PATH="a specific directory" in configuration
(2) put VMX initrd.img in RD_PATH
(3) run ./configure
(4) then run a specific test suite by "make check" in this directory
I notice that /tmp/xm-test.conf has been generated as the following content.
disk = ['file:/var/vmmtest/ia32/initrd.img,hdd1,w']
When running test case in "create", I found the following domain has been created.
[root@localhost xm-test-0.4.0]# xm list
Name ID Mem(MiB) CPU VCPUs State Time(s)
Domain-0 0 251 - 2 r----- 89.5
14_create_blockroot 14 64 0 1 r----- 53.3
It seems that block device has been working!
But the test result is failure in "xm create", and reason is "REASON: Failed to read from console (fd=3)"
I suppose that there some reason for that for your reference.
(1) To create a VMX, we should use the following disk item as /etc/xen/xmexample.vmx stated
disk = [ 'file:/var/images/min-el3-i386.img,ioemu:hda,w' ]
keyword "ioemu" is necessary.
(2)"xm console" does not support VMX now. We could not get console information.
(3)maybe we should let user configure the image name, for sometimes, we need to test multiple VMX.
Any comment is welcome. :-)
-----Original Message-----
From: xen-devel-bounces@lists.xensource.com [mailto:xen-devel-bounces@lists.xensource.com] On Behalf Of Dan Smith
Sent: 2005年11月1日 0:13
To: Xen Developers
Subject: [Xen-devel] Now available: xm-test-0.4.0
I have just posted version 0.4.0 of xm-test here:
http://sourceforge.net/project/showfiles.php?group_id=3382&package_id=167975
Online reports can be viewed here:
http://xmtest.dague.org/
Major changes in this version:
- More machine information in submitted reports
- Fixes to some tests
- VMX compatibility mode, which uses a block device instead of a
ramdisk
We are starting to get some really good data on the reporting site.
However, we need more people to submit tests, and from varying
platforms. If you can run Xen on it, please run xm-test on it at
least occasionally.
* For those who are not familiar with xm-test:
Several of us here at IBM have been working on a framework for testing
the xen tools, specifically xm. Our goal is to provide a way for
developers to _easily_ write tests for new and existing xm commands.
We believe that such a test suite will help reduce breakages in the
user-facing tools when developers modify xm and/or xend.
We would like some feedback from the community on the usefulness of
our framework, in hopes that it might be hosted by xensource so that
everyone can contribute tests to help harden xm and xend.
* Details:
The framework tests (as well as the support libraries) are written in
python, which are executed by the standard automake "make check"
facilities. We build a standardized ramdisk that can be used for
portable test writing, therefore reducing dependencies on the test
host machine.
The framework library provides several abstractions to make common and
complex tasks easier for the test writer. For example, we provide a
domain and console abstraction that allows a test writer to start a
domU and execute arbitrary commands, retrieving the status and output
of each. This allows a decent amount of automation for verifying that
(for example) "xm sysrq mydomain s" actually sent the sysrq.
--
Dan Smith
IBM Linux Technology Center
Open Hypervisor Team
email: danms@us.ibm.com
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Now available: xm-test-0.4.0
2005-11-04 6:57 Yu, Ping Y
@ 2005-11-04 15:26 ` Dan Smith
0 siblings, 0 replies; 4+ messages in thread
From: Dan Smith @ 2005-11-04 15:26 UTC (permalink / raw)
To: Yu, Ping Y; +Cc: Xen Developers
PY> (1) modify RD_PATH="a specific directory" in configuration
PY> (2) put VMX initrd.img in RD_PATH
This is not needed.
PY> I notice that /tmp/xm-test.conf has been generated as the
PY> following content.
PY>
PY> disk = ['file:/var/vmmtest/ia32/initrd.img,hdd1,w']
Right, this is the workaround to get the root on hdd1 instead of
/dev/ram0, which you said doesn't work for vmx.
PY> 14_create_blockroot 14 64 0 1 r----- 53.3
PY> It seems that block device has been working!
Actually, this is a test that tests using a block device for root, not
related to vmx compatibility :)
PY> But the test result is failure in "xm create", and reason is
PY> "REASON: Failed to read from console (fd=3)"
Have you tried restarting your system? There is a bit of a problem
with the console driver that causes this to happen sometimes.
You should do this:
# TEST_VERBOSE=1 make check
and then grab the "xm create" line and try to run it manually with
"-c" to see if it's booting the domain properly.
PY> (2)"xm console" does not support VMX now. We could not get console
PY> information.
If this is the case, then a lot of work will need to be done to get
xm-test working for VMX testing :)
--
Dan Smith
IBM Linux Technology Center
Open Hypervisor Team
email: danms@us.ibm.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: Now available: xm-test-0.4.0
@ 2005-11-07 3:00 Yu, Ping Y
0 siblings, 0 replies; 4+ messages in thread
From: Yu, Ping Y @ 2005-11-07 3:00 UTC (permalink / raw)
To: Dan Smith; +Cc: Xen Developers
-----Original Message-----
From: Dan Smith [mailto:danms@us.ibm.com]
Sent: 2005年11月4日 23:26
To: Yu, Ping Y
Cc: Xen Developers
Subject: Re: [Xen-devel] Now available: xm-test-0.4.0
PY> (1) modify RD_PATH="a specific directory" in configuration
PY> (2) put VMX initrd.img in RD_PATH
This is not needed.
PY> I notice that /tmp/xm-test.conf has been generated as the
PY> following content.
PY>
PY> disk = ['file:/var/vmmtest/ia32/initrd.img,hdd1,w']
Right, this is the workaround to get the root on hdd1 instead of
/dev/ram0, which you said doesn't work for vmx.
PY> 14_create_blockroot 14 64 0 1 r----- 53.3
PY> It seems that block device has been working!
Actually, this is a test that tests using a block device for root, not
related to vmx compatibility :)
PY> But the test result is failure in "xm create", and reason is
PY> "REASON: Failed to read from console (fd=3)"
Have you tried restarting your system? There is a bit of a problem
with the console driver that causes this to happen sometimes.
You should do this:
# TEST_VERBOSE=1 make check
and then grab the "xm create" line and try to run it manually with
"-c" to see if it's booting the domain properly.
PY> (2)"xm console" does not support VMX now. We could not get console
PY> information.
If this is the case, then a lot of work will need to be done to get
xm-test working for VMX testing :)
Yes, this is the problem. Luckily, Xiaofeng has just sent out a patch to enable "xm console" for VMX :-)
--
Dan Smith
IBM Linux Technology Center
Open Hypervisor Team
email: danms@us.ibm.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2005-11-07 3:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-31 16:13 Now available: xm-test-0.4.0 Dan Smith
-- strict thread matches above, loose matches on Subject: below --
2005-11-04 6:57 Yu, Ping Y
2005-11-04 15:26 ` Dan Smith
2005-11-07 3:00 Yu, Ping Y
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.