X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=.ci%2Flinux-build.sh;h=91e43a975b8193489a3b46e1f1be5dcb7ca10256;hb=92ed77dce68d45e7a343163cdc41ac9bdd099eec;hp=afa3689a09b31941a5d630238ee165341c43440e;hpb=5d0b4ffa6964bc1484cf61f373511eabf7925b5c;p=dpdk.git diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh index afa3689a09..91e43a975b 100755 --- a/.ci/linux-build.sh +++ b/.ci/linux-build.sh @@ -4,7 +4,10 @@ on_error() { if [ $? = 0 ]; then exit fi - FILES_TO_PRINT="build/meson-logs/testlog.txt build/.ninja_log build/meson-logs/meson-log.txt" + FILES_TO_PRINT="build/meson-logs/testlog.txt" + FILES_TO_PRINT="$FILES_TO_PRINT build/.ninja_log" + FILES_TO_PRINT="$FILES_TO_PRINT build/meson-logs/meson-log.txt" + FILES_TO_PRINT="$FILES_TO_PRINT build/gdb.log" for pr_file in $FILES_TO_PRINT; do if [ -e "$pr_file" ]; then @@ -30,6 +33,26 @@ install_libabigail() { rm ${version}.tar.gz } +configure_coredump() { + # No point in configuring coredump without gdb + which gdb >/dev/null || return 0 + ulimit -c unlimited + sudo sysctl -w kernel.core_pattern=/tmp/dpdk-core.%e.%p +} + +catch_coredump() { + ls /tmp/dpdk-core.*.* 2>/dev/null || return 0 + for core in /tmp/dpdk-core.*.*; do + binary=$(sudo readelf -n $core |grep $(pwd)/build/ 2>/dev/null |head -n1) + [ -x $binary ] || binary= + sudo gdb $binary -c $core \ + -ex 'info threads' \ + -ex 'thread apply all bt full' \ + -ex 'quit' + done |tee -a build/gdb.log + return 1 +} + if [ "$AARCH64" = "true" ]; then # convert the arch specifier if [ "$CC_FOR_BUILD" = "gcc" ]; then @@ -57,11 +80,16 @@ fi OPTS="$OPTS -Dmachine=default" OPTS="$OPTS --default-library=$DEF_LIB" OPTS="$OPTS --buildtype=debugoptimized" +OPTS="$OPTS -Dcheck_includes=true" meson build --werror $OPTS ninja -C build if [ "$AARCH64" != "true" ]; then - devtools/test-null.sh + failed= + configure_coredump + devtools/test-null.sh || failed="true" + catch_coredump + [ "$failed" != "true" ] fi if [ "$ABI_CHECKS" = "true" ]; then @@ -106,5 +134,9 @@ if [ "$ABI_CHECKS" = "true" ]; then fi if [ "$RUN_TESTS" = "true" ]; then - sudo meson test -C build --suite fast-tests -t 3 + failed= + configure_coredump + sudo meson test -C build --suite fast-tests -t 3 || failed="true" + catch_coredump + [ "$failed" != "true" ] fi