view run-from-build.sh @ 751:d0157468f73d

Prevent smoketest-all.sh from hanging if an individual smoketest.sh doesn't exit properly.
author Rob Landley <rob@landley.net>
date Thu, 18 Jun 2009 04:31:44 -0500
parents 93f2e856357e
children e373d2b6d0b8
line wrap: on
line source

#!/bin/bash

source sources/include.sh || exit 1

read_arch_dir "$1"

SYSDIR="${BUILD}/system-image-$ARCH_NAME"

if [ ! -f "$SYSDIR/run-emulator.sh" ]
then
  [ -z "$FAIL_QUIET" ] && echo "No $SYSDIR/run-emulator.sh" >&2
  exit 1
fi

cd "$SYSDIR" || exit 1

# A little paranoia.
[ -f "image-${ARCH}.ext2" ] && fsck.ext2 -y "image-${ARCH}.ext2" </dev/null

# And run it, using the distccd we built (if necessary) and the cross-compiler.

trap "pkill -P$$" EXIT

./run-emulator.sh --make-hdb 2048 --memory 256 --with-distcc \
	"${BUILD}/cross-compiler-${ARCH}"