Mercurial > hg > aboriginal
view more/smoketest-all.sh @ 1391:42ec661e3916
Fix BINARY_PACKAGE_TARBALLS generation: some packages produce no output (zlib used to build dropbear for example), and thus check for an empty list before trying to make a tarball.
author | Rob Landley <rob@landley.net> |
---|---|
date | Fri, 17 Jun 2011 13:00:17 -0500 |
parents | ce5212c0fc05 |
children | 8d0567d46cd7 |
line wrap: on
line source
#!/bin/bash # Run smoketest script on every build/system-image-* architecture. # If $FORK is set, run them in parallel. . sources/utility_functions.sh || exit 1 if [ "$1" == "--logs" ] then for i in build/logs/smoketest-*.txt do NAME="$(echo $i | sed 's/.*smoketest-\(.*\)\.txt/\1/')" echo -n "Testing $NAME:" RESULT="$(grep 'Hello world!' "$i")" [ -z "$RESULT" ] && echo "FAIL" || echo "PASS" done exit fi function dotest() { [ -z "$FORK" ] && echo -n "Testing $1:" [ ! -z "$VERBOSE" ] && VERBOSITY="tee >(cat >&2) |" RESULT="$(more/smoketest.sh "$1" 2>&1 | eval "$VERBOSITY grep 'Hello world!'")" [ -z "$RESULT" ] && RESULT="FAIL" || RESULT="PASS" [ -z "$FORK" ] && echo "$RESULT" || echo "Testing $1:$RESULT" rm -f build/system-image-"$1"/hdb.img 2>/dev/null } # Test all non-hw targets to see whether or not they can compile and run # the included "hello world" program. for i in $(ls -d sources/targets/* | sed 's@.*/@@' | grep -v "^hw-") do if [ -e "build/system-image-$i" ] then maybe_fork "dotest $i" else echo "Testing $i:NONE" fi done wait