2006-12-03 12:16:44 by radu
Fixed test errors.
This commit is contained in:
10
Makefile
10
Makefile
@@ -7,7 +7,7 @@
|
||||
# --
|
||||
# http://www.steve.org.uk/
|
||||
#
|
||||
# $Id: Makefile,v 1.87 2006-12-02 15:30:12 steve Exp $
|
||||
# $Id: Makefile,v 1.88 2006-12-03 12:16:44 radu Exp $
|
||||
|
||||
|
||||
#
|
||||
@@ -138,10 +138,10 @@ install-hooks:
|
||||
-cd ${prefix}/usr/lib/xen-tools/ && ln -s fedora.d stentz.d
|
||||
mkdir -p ${prefix}/usr/lib/xen-tools/gentoo.d/
|
||||
cp -R hooks/gentoo/*-* ${prefix}/usr/lib/xen-tools/gentoo.d
|
||||
mkdir -p ${prefix}/usr/lib/xen-tools/edgy.d/
|
||||
cp -R hooks/edgy/*-* ${prefix}/usr/lib/xen-tools/edgy.d/
|
||||
mkdir -p ${prefix}/usr/lib/xen-tools/dapper.d/
|
||||
cp -R hooks/dapper/*-* ${prefix}/usr/lib/xen-tools/dapper.d/
|
||||
mkdir -p ${prefix}/usr/lib/xen-tools/edgy.d/
|
||||
cp -R hooks/edgy/*-* ${prefix}/usr/lib/xen-tools/edgy.d/
|
||||
mkdir -p ${prefix}/usr/lib/xen-tools/dapper.d/
|
||||
cp -R hooks/dapper/*-* ${prefix}/usr/lib/xen-tools/dapper.d/
|
||||
mkdir -p ${prefix}/usr/lib/xen-tools/edgy.d/
|
||||
cp -R hooks/edgy/*-* ${prefix}/usr/lib/xen-tools/edgy.d/
|
||||
mkdir -p ${prefix}/usr/lib/xen-tools/dapper.d/
|
||||
|
||||
@@ -96,7 +96,7 @@ xt-create-config - Create a Xen configuration file for a new guest
|
||||
--
|
||||
http://www.steve.org.uk/
|
||||
|
||||
$Id: xt-create-xen-config,v 1.26 2006-12-01 12:57:55 steve Exp $
|
||||
$Id: xt-create-xen-config,v 1.27 2006-12-03 12:16:44 radu Exp $
|
||||
|
||||
=cut
|
||||
|
||||
@@ -203,7 +203,7 @@ sub parseCommandLineArguments
|
||||
|
||||
if ( $VERSION )
|
||||
{
|
||||
my $REVISION = '$Revision: 1.26 $';
|
||||
my $REVISION = '$Revision: 1.27 $';
|
||||
if ( $REVISION =~ /1.([0-9.]+) / )
|
||||
{
|
||||
$REVISION = $1;
|
||||
@@ -304,7 +304,7 @@ sub createXenConfig
|
||||
#
|
||||
# The memory size: Convert Gb -> Mb.
|
||||
#
|
||||
if ( $EMV{'memory'} =~ /^(\d+)Gb*$/i )
|
||||
if ( $ENV{'memory'} =~ /^(\d+)Gb*$/i )
|
||||
{
|
||||
$ENV{'memory'} = $1 * 1024;
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
# Steve
|
||||
# --
|
||||
# $Id: hook-inittab.t,v 1.8 2006-11-29 11:57:47 steve Exp $
|
||||
# $Id: hook-inittab.t,v 1.9 2006-12-03 12:16:45 radu Exp $
|
||||
#
|
||||
|
||||
use strict;
|
||||
@@ -34,7 +34,7 @@ foreach my $dir ( glob( "hooks/*" ) )
|
||||
{
|
||||
my $dist = $1;
|
||||
|
||||
next if ( $dist =~ /(edgy|dapper)/i );
|
||||
next if ( $dist =~ /(edgy|dapper|ubuntu)/i );
|
||||
|
||||
testHook( $dist );
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
# Steve
|
||||
# --
|
||||
# $Id: hook-tls.t,v 1.7 2006-11-29 18:01:55 steve Exp $
|
||||
# $Id: hook-tls.t,v 1.8 2006-12-03 12:16:45 radu Exp $
|
||||
#
|
||||
|
||||
use strict;
|
||||
@@ -28,7 +28,7 @@ foreach my $dir ( glob( "hooks/*" ) )
|
||||
{
|
||||
my $dist = $1;
|
||||
|
||||
testTLSDisabling( $dist ) unless ( $dist =~ /(dapper|edgy|debian)/i );
|
||||
testTLSDisabling( $dist ) unless ( $dist =~ /(dapper|edgy|ubuntu|debian)/i );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user