From: Tony Breeds <tony@bakeyournoodle.com>
To: Xen-Devel <xen-devel@lists.xensource.com>
Cc: XenPPC-devel <xen-ppc-devel@lists.xensource.com>
Subject: [PATCH 9/10][TOOLS][XM-TEST] Default to appending to "extra" in XenConfig
Date: Fri, 20 Oct 2006 13:22:14 +1000 [thread overview]
Message-ID: <20061020032207.GP27551@bakeyournoodle.com> (raw)
In-Reply-To: <patchbomb.1161308910@localhost.localdomain>
Default to appending to "extra" in XenConfig.
PowerPC needs console information from the command line. Resetting the whole
command line causes false failures.
Signed-off-by: Tony Breeds <tony@bakeyournoodle.com>
---
tools/xm-test/lib/XmTestLib/XenDomain.py | 3 +++
1 file changed, 3 insertions(+)
--- a/tools/xm-test/lib/XmTestLib/XenDomain.py Thu Oct 19 12:14:50 2006 +1000
+++ b/tools/xm-test/lib/XmTestLib/XenDomain.py Thu Oct 19 17:01:02 2006 +1000
@@ -97,6 +97,9 @@ class XenConfig:
if name in self.opts.keys() and isinstance(self.opts[name] ,
list) and not isinstance(value, list):
self.opts[name] = [value]
+ # "extra" is special so append to it.
+ elif name == "extra" and name in self.opts.keys():
+ self.opts[name] += " %s" % (value)
else:
self.opts[name] = value
next prev parent reply other threads:[~2006-10-20 3:22 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <patchbomb.1161308910@localhost.localdomain>
2006-10-20 3:20 ` [PATCH 1/10][TOOLS][XM-TEST] Update to use uClibc buildroot-snapshot Tony Breeds
2006-10-20 3:20 ` [PATCH 2/10][TOOLS][XM-TEST] Remove hard coded reference to i386 Tony Breeds
2006-10-20 3:20 ` [PATCH 3/10][TOOLS][XM-TEST] Rename buildroot -> buildroot-i386 Tony Breeds
2006-10-20 3:21 ` [PATCH 4/10][TOOLS][XM-TEST] Update .hgignore to remove artifacts of ramdisk build Tony Breeds
2006-10-20 3:21 ` [PATCH 5/10][TOOLS][XM-TEST] Refactor code to encapsulate architecture decisions in one place Tony Breeds
2006-10-20 3:21 ` [PATCH 6/10][TOOLS][XM-TEST] Add configuration data for powerpc Tony Breeds
2006-10-20 3:21 ` [PATCH 7/10][TOOLS][XM-TEST] Add ability to inspect messages from domain for arbitrary strings Tony Breeds
2006-10-20 3:21 ` [PATCH 8/10][TOOLS][XM-TEST] Ignore generated .test files Tony Breeds
2006-10-20 3:22 ` Tony Breeds [this message]
2006-10-20 3:22 ` [PATCH 10/10][TOOLS][XM-TEST] Fix Memory assumptions in the create tests Tony Breeds
2006-10-23 10:55 ` Ewan Mellor
2006-10-23 23:45 ` Tony Breeds
2006-10-24 13:54 ` [Xen-devel] " Ewan Mellor
2006-10-24 23:50 ` Tony Breeds
2006-10-25 1:16 ` Tony Breeds
2006-10-31 2:16 ` Tony Breeds
2006-11-01 15:54 ` Ewan Mellor
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=20061020032207.GP27551@bakeyournoodle.com \
--to=tony@bakeyournoodle.com \
--cc=xen-devel@lists.xensource.com \
--cc=xen-ppc-devel@lists.xensource.com \
/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 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.