Displaying 3 results from an estimated 3 matches for "target_cmd_root".
2013 Dec 11
29
[PATCH RFC V2 0/6] OSSTest: OVMF test job
RFC v2 of this series
This series implements a basic test job for OVMF guest. The test case will
install an OVMF guest and try to boot it.
It is also possible to derive a debian HVM installation test case from
ts-ovmf-debian-install - the only difference should be the BIOS option. I
tested running the test script without specifying BIOS, it worked fine. I just
didn''t figure out a
2013 Nov 30
7
[xen-unstable test] 22184: regressions - trouble: broken/fail/pass
flight 22184 xen-unstable real [real]
http://www.chiark.greenend.org.uk/~xensrcts/logs/22184/
Regressions :-(
Tests which did not succeed and are blocking,
including tests which could not be run:
test-amd64-amd64-xl-qemuu-winxpsp3 7 windows-install fail REGR. vs. 22106
test-amd64-i386-xl-win7-amd64 9 guest-localmigrate fail REGR. vs. 22106
Regressions which are regarded as
2013 Nov 25
6
[PATCH/RFC OSSTEST] Debian PV netboot guest test
...$disk_mb= 10000;
+
+our $guesthost= "$gn.guest.osstest";
+our $gho;
+
+sub prep () {
+ target_install_packages_norec($ho, qw(lvm2));
+
+ $gho= prepareguest($ho, $gn, $guesthost, 22,
+ $disk_mb, 40);
+
+ prepareguest_part_lvmdisk($ho, $gho, $disk_mb);
+
+ target_cmd_root($ho, "umount $gho->{Lvdev} ||:");
+}
+
+sub ginstall () {
+ my $arch= $r{"$gho->{Guest}_arch"};
+ my $gsuite= guest_var($gho,''suite'',$c{GuestDebianSuite});
+ my $di_ver= guest_var($gho,''diversion'',''current'');
+...