1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

colored coredumps

This commit is contained in:
Leonid Fedorov
2025-07-16 13:02:22 +00:00
committed by Leonid Fedorov
parent 84e2dde865
commit bbff8b89a8
3 changed files with 3 additions and 8 deletions

View File

@@ -45,16 +45,11 @@ local customBootstrapParamsForExisitingPipelines(envkey) =
local customBootstrapParamsForAdditionalPipelinesMap = {
ASan: "--asan",
<<<<<<< HEAD
TSAN: "--tsan",
UBSan: "--ubsan",
MSan: "--msan",
"libcpp": "--libcpp",
"gcc-toolset": "--gcc-toolset-for-rocky-8"
=======
//TSAN: "--tsan",
UBSan: "--ubsan",
>>>>>>> a25d751cb (Add flag key prefix to $result)
};
local customBuildFlags(buildKey) =

View File

@@ -46,7 +46,7 @@ if [[ $(compgen -G "$COLUMNSTORE_RPM_PACKAGES_PATH") ]]; then
mv -v $COLUMNSTORE_RPM_PACKAGES_PATH "./${RESULT}/"
elif [[ $(compgen -G "$COLUMNSTORE_DEB_PACKAGES_PATH") ]]; then
mv -v $COLUMNSTORE_DEB_PACKAGES_PATH "./${RESULT}/"
mv -v $COLUMNSTORE_DEBUG_DEB_PACKAGES_PATH "./${RESULT}/"
mv -v $COLUMNSTORE_DEBUG_DEB_PACKAGES_PATH "./${RESULT}/" || true
else
echo "Columnstore packages are not found!"
fi

View File

@@ -12,10 +12,10 @@ STEP_NAME=$5
save_ansi_to_html() {
echo "<h2> $1 </h2>" >>"${FILENAME}"
cat "$DUMPNAME" | bash "${SCRIPT_LOCATION}"/ansi2html.sh --palette=solarized >>"${FILENAME}"
cat "$DUMPNAME" | bash "${SCRIPT_LOCATION}"/ansi2html.sh --bg=dark --palette=tango >>"${FILENAME}"
}
invoke_gdb_command() {
gdb -x "${SCRIPT_LOCATION}"/gdbinit -q ${BINARY} --core ${COREDUMP} -ex "$1" -ex quit >>"$DUMPNAME"
script -q -c "gdb -x \"${SCRIPT_LOCATION}\"/gdbinit -q ${BINARY} --core ${COREDUMP} -ex \"$1\" -ex \"quit\"" $DUMPNAME
}
echo "<h1> Step: ${STEP_NAME}<br> Binary name: ${BINARY}<br> </h1>" >>"${FILENAME}"