if network interfaces are not not configured,

urge the user to configure them [RT #1757]
This commit is contained in:
Andreas Gustafsson
2001-09-22 01:10:41 +00:00
parent 589a8a85b3
commit f8d86ef2f6

View File

@@ -15,7 +15,7 @@
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# $Id: runall.sh,v 1.4 2001/01/09 21:42:22 bwelling Exp $
# $Id: runall.sh,v 1.5 2001/09/22 01:10:41 gson Exp $
#
# Run all the system tests.
@@ -31,4 +31,16 @@ do
sh run.sh $d || status=1
done
$PERL testsock.pl || {
cat <<EOF >&2
I:
I:NOTE: Many of the tests were skipped because they require that
I: the IP addresses 10.53.0.1 through 10.53.0.5 are configured
I: as alias addresses on the loopback interface. Please run
I: "bin/tests/system/ifconfig.sh up" as root to configure them
I: and rerun the tests.
EOF
exit 0;
}
exit $status