Displaying 7 results from an estimated 7 matches for "xmtestlib".
Did you mean:
testlib
2013 Sep 30
1
[PATCH] xm-test: fix the ip allocation function
__findFirstOctetIP() is expecting min and max available octets according to
its code, however the caller getFreeIP() gives it the min octet and (max - min + 1),
which is the length instead.
Signed-off-by: Zhu Yanhai <gaoyang.zyh@taobao.com>
---
tools/xm-test/lib/XmTestLib/NetConfig.py | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/tools/xm-test/lib/XmTestLib/NetConfig.py b/tools/xm-test/lib/XmTestLib/NetConfig.py
index 1f834cc..5013bef 100644
--- a/tools/xm-test/lib/XmTestLib/NetConfig.py
+++ b/tools/xm-test/lib/XmTestLib/NetConfig.py
@@...
2006 Jun 16
5
[PATCH][XM-TEST] Fix bugzilla # 674 by changing the xm-test Console.py to wait for the command prompt.
Lots of xm-test tests are failing with console timeouts on some machines
at the moment. I reproduced the problem and found it was due to some
probing activity in the boot process of the -xen kernel. The behaviour
of the current xm-test code is to assume that the boot process has
finished after performing three one-second waits for input---when the
probing activity introduces more than three
2007 Feb 28
4
[PATCH] [Xm-Test] A test case doing local migration 3 times in a loop
The following test case does local migration 3 times in a loop. I
currently see the following error output on x86-64 (only!) inside the
guest (change debugMe in line 68 of xm-test/lib/XmTestLib/Console.py to
True):
@%@%> XENBUS error -12 while reading message
XENBUS error -12 while reading message
XENBUS unexpected type [1325400064], expected [4]
XENBUS error -12 while reading message
XENBUS error -12 while reading message
XENBUS unexpected type [809580087], expected [4]
XENBUS unexpe...
2007 Oct 19
4
[PATCH] nr_cpus calculation problem due to incorrect sockets_per_node
Testing on an 8-node 128-way NUMA machine has exposed a problem with
Xen''s nr_cpus calculation. In this case, since Xen cuts off recognized
CPUs at 32, the machine appears to have 16 CPUs on the first and second
nodes and none on the remaining nodes. Given this asymmetry, the
calculation of sockets_per_node (which is later used to calculate
nr_cpus) is incorrect:
2006 Mar 07
8
[PATCH] xm,xend: flesh out xm sched-sedf
...23:09:23 2006
+++ b/tools/xm-test/tests/sedf/01_sedf_period_slice_pos.py Tue Mar 7 17:18:16 2006
@@ -0,0 +1,62 @@
+#!/usr/bin/python
+
+# Copyright (C) International Business Machines Corp., 2005
+# Author: Dan Smith <danms@us.ibm.com>
+# Author: Ryan Harper <ryanh@us.ibm.com>
+
+from XmTestLib import *
+
+def get_sedf_params(domain):
+ status, output = traceCommand("xm sched-sedf %s" %(domain.getName()))
+ return (status, output.split(''\n'')[1].split())
+
+
+domain = XmTestDomain(extraConfig = {"sched":"sedf"})
+
+try:
+ domain.star...
2012 Jan 16
13
[PATCH v10 0/7] build upstream qemu and seabios by default
Hi all,
this is the tenth version of the patch series to introduce upstream qemu
and seabios in the xen-unstable build system.
Changes to v9:
- rename QEMU_UPSTREAM_TAG to QEMU_UPSTREAM_REVISION: we are going to
use it with a branch name by default;
- set QEMU_UPSTREAM_REVISION to "master" by default;
- set SEABIOS_UPSTREAM_URL to git://xenbits.xen.org/seabios.git by
default;
- add
2013 Sep 12
10
[PATCH] xen/build: Remove hacked up version of figlet
...ools/figlet/Makefile
delete mode 100644 xen/tools/figlet/README
delete mode 100644 xen/tools/figlet/figlet.c
rename xen/tools/{figlet => }/xen.flf (100%)
diff --git a/.gitignore b/.gitignore
index c82a372..02f9e27 100644
--- a/.gitignore
+++ b/.gitignore
@@ -291,7 +291,6 @@ tools/xm-test/lib/XmTestLib/config.py
tools/xm-test/lib/XmTestReport/xmtest.py
tools/xm-test/tests/*.test
tools/ocaml-xenstored*
-xen/.banner*
xen/System.map
xen/arch/arm/asm-offsets.s
xen/arch/arm/xen.lds
@@ -314,9 +313,7 @@ xen/include/linux
xen/include/public/public
xen/include/xen/*.new
xen/include/xen/acm_policy...