2015-12-17 14:10-0600, Andrew Jones: > Signed-off-by: Andrew Jones <drjones@xxxxxxxxxx> > --- > diff --git a/arm/run b/arm/run > @@ -75,10 +75,14 @@ chr_testdev+=' -device virtconsole,chardev=ctd -chardev testdev,id=ctd' > M+=",accel=$ACCEL" > command="$qemu $M -cpu $processor $chr_testdev" > command+=" -display none -serial stdio -kernel" > -echo $command "$@" > + > +if [ "$TIMEOUT" ]; then > + timeout_cmd="timeout --foreground $TIMEOUT" (command="timeout --foreground $TIMEOUT $command" # to keep the clutter down.) > +fi (We paste it three times, so I'd rather see this abstracted in a "scripts/" library.) > diff --git a/run_tests.sh b/run_tests.sh > @@ -21,6 +21,7 @@ function run() > + local timeout="${9:-$TIMEOUT}" > diff --git a/scripts/mkstandalone.sh b/scripts/mkstandalone.sh > @@ -97,8 +98,12 @@ if [ "\$QEMU" ]; then > +if [ "$timeout" ]; then > + timeout_cmd='timeout --foreground $timeout' Both would be nicer if they took the TIMEOUT variable as an override. We already don't do that for accel and the patch seems ok in other regards, Reviewed-by: Radim Krčmář <rkrcmar@xxxxxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html