rpms/libguestfs/devel test-bootbootboot.sh, NONE, 1.1 libguestfs.spec, 1.21, 1.22

Richard W.M. Jones rjones at fedoraproject.org
Thu May 21 16:20:19 UTC 2009


Author: rjones

Update of /cvs/pkgs/rpms/libguestfs/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv28449

Modified Files:
	libguestfs.spec 
Added Files:
	test-bootbootboot.sh 
Log Message:
Added test-bootbootboot.sh script which was missed from 1.0.29 tarball.


--- NEW FILE test-bootbootboot.sh ---
#!/bin/sh -
# libguestfs
# Copyright (C) 2009 Red Hat Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

# Some versions of qemu can be flakey and can hang occasionally
# during boot (particularly KVM if the BIOS is the qemu version
# which doesn't have the required KVM patches).  Test repeatedly
# booting.

set -e

rm -f test1.img
dd if=/dev/zero of=test1.img bs=1024k count=500

n=20
if [ -n "$1" ]; then n=$1; fi

export LIBGUESTFS_DEBUG=1

for i in $(seq 1 $n); do
  echo Test boot $i of $n ...
  ./fish/guestfish -a test1.img run
done

rm test1.img

echo Test boot completed after $n iterations.


Index: libguestfs.spec
===================================================================
RCS file: /cvs/pkgs/rpms/libguestfs/devel/libguestfs.spec,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -p -r1.21 -r1.22
--- libguestfs.spec	21 May 2009 15:33:21 -0000	1.21
+++ libguestfs.spec	21 May 2009 16:19:49 -0000	1.22
@@ -4,13 +4,16 @@
 Summary:     Access and modify virtual machine disk images
 Name:        libguestfs
 Version:     1.0.29
-Release:     1%{?dist}
+Release:     2%{?dist}
 License:     LGPLv2+
 Group:       Development/Libraries
 URL:         http://et.redhat.com/~rjones/libguestfs/
 Source0:     http://et.redhat.com/~rjones/libguestfs/files/%{name}-%{version}.tar.gz
 BuildRoot:   %{_tmppath}/%{name}-%{version}-%{release}-root
 
+# Can be removed in 1.0.30:
+Source1:     test-bootbootboot.sh
+
 # Basic build requirements:
 BuildRequires: /usr/bin/pod2man
 BuildRequires: /usr/bin/pod2text
@@ -237,6 +240,9 @@ Requires:    jpackage-utils
 %prep
 %setup -q
 
+# Can be removed in 1.0.30:
+cp -n %{SOURCE1} .
+
 mkdir -p daemon/m4
 
 
@@ -458,9 +464,10 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
-* Thu May 21 2009 Richard Jones <rjones at redhat.com> - 1.0.29-1
+* Thu May 21 2009 Richard Jones <rjones at redhat.com> - 1.0.29-2
 - New upstream version 1.0.29 (fixes RHBZ#502007 RHBZ#502018).
 - This should allow us to enable tests for i386 and x86-64.
+- Added test-bootbootboot.sh script which was missed from 1.0.29 tarball.
 
 * Thu May 21 2009 Richard Jones <rjones at redhat.com> - 1.0.28-1
 - New upstream version 1.0.28.  Nothing has visibly changed, but




More information about the scm-commits mailing list