X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=scripts%2Flttng-tools%2Fbuild.sh;h=dded5f1efeda0b555474c8e6f92d3c6aa069103f;hb=aae4e17983454e0ecaafd78bc1cf9846a1bedf61;hp=de11e5c8d4b041ebafef930198983292d5dfc41c;hpb=995ac8f2eeb1bf3dd07e94bf91dcbbafb2b03b58;p=lttng-ci.git diff --git a/scripts/lttng-tools/build.sh b/scripts/lttng-tools/build.sh index de11e5c..dded5f1 100755 --- a/scripts/lttng-tools/build.sh +++ b/scripts/lttng-tools/build.sh @@ -73,6 +73,7 @@ verne() { arch=${arch:-} conf=${conf:-} build=${build:-} +test_type=${test_type:-} SRCDIR="$WORKSPACE/src/lttng-tools" #TMPDIR="$WORKSPACE/tmp" @@ -85,6 +86,7 @@ rm -rf "$PREFIX" "$TAPDIR" mkdir -p "$PREFIX" "$TAPDIR" #export TMPDIR +CFLAGS="-g -O2" # liburcu URCU_INCS="$WORKSPACE/deps/liburcu/build/include/" @@ -100,6 +102,8 @@ UST_JAVA="$WORKSPACE/deps/lttng-ust/build/share/java/" BABEL_LIBS="$WORKSPACE/deps/babeltrace/build/lib/" BABEL_BINS="$WORKSPACE/deps/babeltrace/build/bin/" +# pgrep +PGREP=pgrep # Set platform variables case "$arch" in @@ -109,7 +113,7 @@ sol10-i386) NPROC=gnproc BISON="bison" YACC="$BISON -y" - CFLAGS="-D_XOPEN_SOURCE=500" + CFLAGS="${CFLAGS:-} -D_XOPEN_SOURCE=500" RUN_TESTS="no" export PATH="/opt/csw/bin:/usr/ccs/bin:$PATH" @@ -119,12 +123,14 @@ sol11-i386) MAKE=gmake TAR=gtar NPROC=nproc - BISON="/opt/csw/bin/bison" + BISON="bison" YACC="$BISON -y" - CFLAGS="-D_XOPEN_SOURCE=500" + CFLAGS="${CFLAGS:-} -D_XOPEN_SOURCE=500" RUN_TESTS="no" export PATH="$PATH:/usr/perl5/bin" + CPPFLAGS="-I/opt/csw/include" + LDFLAGS="-L/opt/csw/lib" ;; macosx) @@ -136,7 +142,7 @@ macosx) RUN_TESTS="no" export PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" - CFLAGS="-I/opt/local/include" + CPPFLAGS="-I/opt/local/include" LDFLAGS="-L/opt/local/lib" ;; @@ -146,7 +152,7 @@ cygwin|cygwin64|msys32|msys64) NPROC=nproc BISON="bison" YACC="$BISON -y" - CFLAGS="" + #CFLAGS="" RUN_TESTS="no" ;; @@ -156,7 +162,7 @@ cygwin|cygwin64|msys32|msys64) NPROC=nproc BISON="bison" YACC="$BISON -y" - CFLAGS="" + #CFLAGS="" RUN_TESTS="yes" PYTHON2=python2 @@ -170,6 +176,17 @@ cygwin|cygwin64|msys32|msys64) ;; esac +case "$test_type" in +base) + RUN_TESTS_LONG_REGRESSION="no" + ;; +full) + RUN_TESTS_LONG_REGRESSION="yes" + ;; +*) + RUN_TESTS_LONG_REGRESSION="no" + ;; +esac # Enter the source directory cd "$SRCDIR" @@ -204,17 +221,21 @@ else NO_UST="--disable-lttng-ust" fi +# Most build configs require the python bindings +CONF_OPTS="--enable-python-bindings" +export PYTHON="python3" +export PYTHON_CONFIG="/usr/bin/python3-config" + # Set configure options for each build configuration -CONF_OPTS="" case "$conf" in static) echo "Static build" - CONF_OPTS="--enable-static --disable-shared" + CONF_OPTS+=" --enable-static --disable-shared" ;; no-ust) echo "Build without UST support" - CONF_OPTS="$NO_UST" + CONF_OPTS+=" $NO_UST" ;; agents) @@ -226,12 +247,6 @@ agents) echo "Enable Python agents" export PYTHONPATH="$UST_PYTHON2:$UST_PYTHON3" CONF_OPTS+=" --enable-test-python-agent-all" - - echo "Enable Python bindings" - # We only support bindings built with Python 3 - export PYTHON="python3" - export PYTHON_CONFIG="/usr/bin/python3-config" - CONF_OPTS+=" --enable-python-bindings" ;; relayd-only) @@ -246,7 +261,6 @@ debug-rcu) *) echo "Standard build" - CONF_OPTS="" ;; esac @@ -337,6 +351,9 @@ if [ "$RUN_TESTS" = "yes" ]; then mkdir -p "$TAPDIR/unit" mkdir -p "$TAPDIR/fast_regression" mkdir -p "$TAPDIR/with_bindings_regression" + if [ "$RUN_TESTS_LONG_REGRESSION" = "yes" ]; then + mkdir -p "$TAPDIR/long_regression" + fi # Force the lttng-sessiond path to /bin/true to prevent the spawing of a # lttng-sessiond --daemonize on "lttng create" @@ -346,22 +363,21 @@ if [ "$RUN_TESTS" = "yes" ]; then if [ "$conf" != "no-ust" ]; then # Run 'unit_tests', 2.8 and up has a new test suite if vergte "$PACKAGE_VERSION" "2.8"; then - make check + make --keep-going check rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*'" $BUILD_PATH/tests/" "$TAPDIR" else prove --merge -v --exec '' - < "$BUILD_PATH/tests/unit_tests" --archive "$TAPDIR/unit/" || true prove --merge -v --exec '' - < "$BUILD_PATH/tests/fast_regression" --archive "$TAPDIR/fast_regression/" || true + prove --merge -v --exec '' - < "$BUILD_PATH/tests/with_bindings_regression" --archive "$TAPDIR/with_bindings_regression/" || true + fi + if [ "$RUN_TESTS_LONG_REGRESSION" = "yes" ]; then + prove --merge -v --exec '' - < "$BUILD_PATH/tests/long_regression" --archive "$TAPDIR/long_regression/" || true fi else # Regression is disabled for now, we need to adjust the testsuite for no ust builds. echo "Tests disabled for 'no-ust'." fi - # Run 'with_bindings_regression' test suite for 'python-bindings' config - if [ "$conf" = "python-bindings" ]; then - prove --merge -v --exec '' - < "$BUILD_PATH/tests/with_bindings_regression" --archive "$TAPDIR/with_bindings_regression/" || true - fi - # TAP plugin is having a hard time with .yml files. find "$TAPDIR" -name "meta.yml" -exec rm -f {} \;