2019-08-10 23:57:26 +08:00
|
|
|
#!/usr/bin/env bash
|
2020-01-20 01:03:11 +08:00
|
|
|
# tools/testbuild.sh
|
2015-07-01 04:38:01 +08:00
|
|
|
#
|
2019-08-06 06:53:39 +08:00
|
|
|
# Copyright (C) 2016-2019 Gregory Nutt. All rights reserved.
|
2015-07-01 04:38:01 +08:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
|
|
|
|
WD=$PWD
|
|
|
|
nuttx=$WD/../nuttx
|
|
|
|
|
|
|
|
progname=$0
|
2016-06-06 02:14:18 +08:00
|
|
|
APPSDIR=../apps
|
2017-06-11 00:12:37 +08:00
|
|
|
MAKE_FLAGS=-i
|
|
|
|
MAKE=make
|
2015-07-01 04:38:01 +08:00
|
|
|
unset testfile
|
2020-01-20 01:29:34 +08:00
|
|
|
unset HOPTION
|
2019-10-03 21:52:16 +08:00
|
|
|
unset JOPTION
|
2015-07-01 04:38:01 +08:00
|
|
|
|
|
|
|
function showusage {
|
2020-01-06 00:29:59 +08:00
|
|
|
echo ""
|
2020-01-20 01:29:34 +08:00
|
|
|
echo "USAGE: $progname [-l|m|c|u|g|n] [-d] [-x] [-j <ncpus>] [-a <appsdir>] [-t <topdir>] <testlist-file>"
|
2020-01-06 00:29:59 +08:00
|
|
|
echo " $progname -h"
|
|
|
|
echo ""
|
|
|
|
echo "Where:"
|
2020-01-20 01:29:34 +08:00
|
|
|
echo " -l|m|c|u|g|n selects Linux (l), macOS (m), Cygwin (c),"
|
|
|
|
echo " Ubuntu under Windows 10 (u), MSYS/MSYS2 (g) or Windows native (n). Default Linux"
|
2020-01-06 00:29:59 +08:00
|
|
|
echo " -d enables script debug output"
|
|
|
|
echo " -x exit on build failures"
|
|
|
|
echo " -j <ncpus> passed on to make. Default: No -j make option."
|
|
|
|
echo " -a <appsdir> provides the relative path to the apps/ directory. Default ../apps"
|
|
|
|
echo " -t <topdir> provides the absolute path to top nuttx/ directory. Default $PWD/../nuttx"
|
|
|
|
echo " -h will show this help test and terminate"
|
|
|
|
echo " <testlist-file> selects the list of configurations to test. No default"
|
|
|
|
echo ""
|
|
|
|
echo "Your PATH variable must include the path to both the build tools and the"
|
|
|
|
echo "kconfig-frontends tools"
|
|
|
|
echo ""
|
|
|
|
exit 1
|
2015-07-01 04:38:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# Parse command line
|
|
|
|
|
|
|
|
while [ ! -z "$1" ]; do
|
2020-01-06 00:29:59 +08:00
|
|
|
case $1 in
|
2020-01-20 01:29:34 +08:00
|
|
|
-l | -m | -c | -u | -g | -n )
|
|
|
|
HOPTION+=" $1"
|
2015-07-01 04:38:01 +08:00
|
|
|
;;
|
2020-01-06 00:29:59 +08:00
|
|
|
-d )
|
2017-03-11 03:12:56 +08:00
|
|
|
set -x
|
|
|
|
;;
|
2020-01-06 00:29:59 +08:00
|
|
|
-x )
|
2017-06-11 00:12:37 +08:00
|
|
|
MAKE_FLAGS='--silent --no-print-directory'
|
|
|
|
set -e
|
|
|
|
;;
|
2020-01-06 00:29:59 +08:00
|
|
|
-a )
|
2016-06-06 02:14:18 +08:00
|
|
|
shift
|
|
|
|
APPSDIR="$1"
|
|
|
|
;;
|
2020-01-06 00:29:59 +08:00
|
|
|
-j )
|
2019-10-03 07:11:33 +08:00
|
|
|
shift
|
|
|
|
JOPTION="-j $1"
|
|
|
|
;;
|
2020-01-06 00:29:59 +08:00
|
|
|
-t )
|
2018-06-28 02:27:34 +08:00
|
|
|
shift
|
|
|
|
nuttx="$1"
|
|
|
|
;;
|
2020-01-06 00:29:59 +08:00
|
|
|
-h )
|
2015-07-01 04:38:01 +08:00
|
|
|
showusage
|
|
|
|
;;
|
2020-01-06 00:29:59 +08:00
|
|
|
* )
|
2015-07-01 04:38:01 +08:00
|
|
|
testfile="$1"
|
|
|
|
shift
|
|
|
|
break;
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ ! -z "$1" ]; then
|
2020-01-06 00:29:59 +08:00
|
|
|
echo "ERROR: Garbage at the end of line"
|
|
|
|
showusage
|
2015-07-01 04:38:01 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$testfile" ]; then
|
2020-01-06 00:29:59 +08:00
|
|
|
echo "ERROR: Missing test list file"
|
|
|
|
showusage
|
2015-07-01 04:38:01 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -r "$testfile" ]; then
|
2020-01-06 00:29:59 +08:00
|
|
|
echo "ERROR: No readable file exists at $testfile"
|
|
|
|
showusage
|
2015-07-01 04:38:01 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -d "$nuttx" ]; then
|
2020-01-06 00:29:59 +08:00
|
|
|
echo "ERROR: Expected to find nuttx/ at $nuttx"
|
|
|
|
showusage
|
2015-07-01 04:38:01 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Clean up after the last build
|
|
|
|
|
|
|
|
function distclean {
|
2020-01-06 00:29:59 +08:00
|
|
|
cd $nuttx || { echo "ERROR: failed to CD to $nuttx"; exit 1; }
|
|
|
|
if [ -f .config ]; then
|
|
|
|
echo " Cleaning..."
|
|
|
|
${MAKE} ${JOPTION} ${MAKE_FLAGS} distclean 1>/dev/null
|
|
|
|
fi
|
2015-07-01 04:38:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# Configure for the next build
|
|
|
|
|
|
|
|
function configure {
|
2020-01-06 00:29:59 +08:00
|
|
|
cd $nuttx/tools || { echo "ERROR: failed to CD to $nuttx/tools"; exit 1; }
|
|
|
|
echo " Configuring..."
|
2020-01-20 01:29:34 +08:00
|
|
|
./configure.sh ${HOPTION} $config
|
2020-01-06 00:29:59 +08:00
|
|
|
|
|
|
|
if [ "X$toolchain" != "X" ]; then
|
2020-01-20 01:29:34 +08:00
|
|
|
setting=`grep _TOOLCHAIN_ $nuttx/.config | grep -v CONFIG_ARCH_TOOLCHAIN_*=y | grep =y`
|
2020-01-06 00:29:59 +08:00
|
|
|
varname=`echo $setting | cut -d'=' -f1`
|
|
|
|
if [ ! -z "$varname" ]; then
|
|
|
|
echo " Disabling $varname"
|
2020-01-20 01:29:34 +08:00
|
|
|
sed -i -e "/$varname/d" $nuttx/.config
|
2015-07-02 04:32:59 +08:00
|
|
|
fi
|
2015-07-01 04:38:01 +08:00
|
|
|
|
2020-01-06 00:29:59 +08:00
|
|
|
echo " Enabling $toolchain"
|
2020-01-20 01:29:34 +08:00
|
|
|
echo "$toolchain=y" >> $nuttx/.config
|
2020-01-06 00:29:59 +08:00
|
|
|
fi
|
2015-07-01 04:38:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# Perform the next build
|
|
|
|
|
|
|
|
function build {
|
2020-01-06 00:29:59 +08:00
|
|
|
cd $nuttx || { echo "ERROR: failed to CD to $nuttx"; exit 1; }
|
|
|
|
echo " Building NuttX..."
|
|
|
|
echo "------------------------------------------------------------------------------------"
|
|
|
|
${MAKE} ${JOPTION} ${MAKE_FLAGS} 1>/dev/null
|
2015-07-01 04:38:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# Coordinate the steps for the next build test
|
|
|
|
|
|
|
|
function dotest {
|
2020-01-06 00:29:59 +08:00
|
|
|
echo "------------------------------------------------------------------------------------"
|
|
|
|
distclean
|
|
|
|
configure
|
|
|
|
build
|
2015-07-01 04:38:01 +08:00
|
|
|
}
|
|
|
|
|
2015-07-04 04:38:16 +08:00
|
|
|
# Perform the build test for each entry in the test list file
|
2015-07-01 04:38:01 +08:00
|
|
|
|
2016-06-06 02:14:18 +08:00
|
|
|
if [ ! -d $APPSDIR ]; then
|
2020-01-20 01:22:36 +08:00
|
|
|
echo "ERROR: No directory found at $APPSDIR"
|
2016-06-06 02:14:18 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
export APPSDIR
|
|
|
|
|
2015-07-01 04:38:01 +08:00
|
|
|
# Shouldn't have to do this
|
|
|
|
|
|
|
|
testlist=`cat $testfile`
|
|
|
|
|
|
|
|
#while read -r line || [[ -n $line ]]; do
|
|
|
|
for line in $testlist; do
|
2020-01-06 00:29:59 +08:00
|
|
|
echo "===================================================================================="
|
|
|
|
firstch=${line:0:1}
|
|
|
|
if [ "X$firstch" == "X#" ]; then
|
|
|
|
echo "Skipping: $line"
|
|
|
|
else
|
|
|
|
echo "Configuration/Tool: $line"
|
|
|
|
|
|
|
|
# Parse the next line
|
|
|
|
|
|
|
|
config=`echo $line | cut -d',' -f1`
|
|
|
|
configdir=`echo $config | cut -s -d':' -f2`
|
|
|
|
if [ -z "${configdir}" ]; then
|
|
|
|
configdir=`echo $config | cut -s -d'/' -f2`
|
2019-08-06 06:53:39 +08:00
|
|
|
if [ -z "${configdir}" ]; then
|
2020-01-06 00:29:59 +08:00
|
|
|
echo "ERROR: Malformed configuration: ${config}"
|
|
|
|
showusage
|
2019-08-06 06:53:39 +08:00
|
|
|
else
|
2020-01-06 00:29:59 +08:00
|
|
|
boarddir=`echo $config | cut -d'/' -f1`
|
2019-08-06 06:53:39 +08:00
|
|
|
fi
|
2020-01-06 00:29:59 +08:00
|
|
|
else
|
|
|
|
boarddir=`echo $config | cut -d':' -f1`
|
|
|
|
fi
|
2015-07-01 04:38:01 +08:00
|
|
|
|
2020-01-16 09:16:14 +08:00
|
|
|
path=$nuttx/boards/*/*/$boarddir/configs/$configdir
|
|
|
|
if [ ! -r $path/defconfig ]; then
|
2020-01-06 00:29:59 +08:00
|
|
|
echo "ERROR: no configuration found at $path"
|
|
|
|
showusage
|
|
|
|
fi
|
2015-07-01 04:38:01 +08:00
|
|
|
|
2020-01-06 00:29:59 +08:00
|
|
|
unset toolchain;
|
|
|
|
if [ "X$config" != "X$line" ]; then
|
|
|
|
toolchain=`echo $line | cut -d',' -f2`
|
|
|
|
if [ -z "$toolchain" ]; then
|
|
|
|
echo " Warning: no tool configuration"
|
2015-07-23 03:20:35 +08:00
|
|
|
fi
|
2020-01-06 00:29:59 +08:00
|
|
|
fi
|
2015-07-01 04:38:01 +08:00
|
|
|
|
2020-01-06 00:29:59 +08:00
|
|
|
# Perform the build test
|
2015-07-01 04:38:01 +08:00
|
|
|
|
2020-01-06 00:29:59 +08:00
|
|
|
dotest
|
|
|
|
fi
|
|
|
|
cd $WD || { echo "ERROR: Failed to CD to $WD"; exit 1; }
|
2015-07-01 04:38:01 +08:00
|
|
|
done # < $testfile
|
|
|
|
|
|
|
|
echo "===================================================================================="
|