view smoketest.sh @ 832:fc498452494a

Add missing chunk too make distcc work again.
author Rob Landley <rob@landley.net>
date Fri, 02 Oct 2009 00:56:05 -0500
parents 6caf372a8b12
children 2ca7ea5d3ec1
line wrap: on
line source

#!/bin/bash

. sources/functions.sh || exit 1

# This script compiles stuff under the final system, using distcc to call out
# to the cross compiler.

# Set up a timeout.  If it doesn't complete in 60 seconds, it failed.

timeout()
{
  sleep 60
  kill $1
}

timeout $$ &
trap "killtree $$" EXIT

# Call run-from-build with a here document to do stuff.

# Note that the first line of the script is a few spaces followed by a comment
# character.  This gives some harmless data for the linux boot process to
# consume and discard before it gets to the command prompt.  I don't know why
# it does this, but it does.  The comment character is so you can see how
# much got eaten, generally about 3 characters.

# If you cat your own script into emulator-build.sh, you probably also need
# to start with a line of spaces like that.  Just FYI.

SKIP_HOME=1 ./run-from-build.sh $1 << 'EOF'
          #
# Show free space
df
# Smoke test for the compiler
gcc -s /usr/src/thread-hello2.c -lpthread -o /tmp/hello &&
/tmp/hello
sync
exit
EOF