From edaebb65d92a48d7075c8c1f64c5ffd87054827b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:07:31 +0200 Subject: Adding debian version 4:7.4.7-1+deb12u1. Signed-off-by: Daniel Baumann --- debian/tests/slowcheck | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100755 debian/tests/slowcheck (limited to 'debian/tests/slowcheck') diff --git a/debian/tests/slowcheck b/debian/tests/slowcheck new file mode 100755 index 000000000..04e8573ef --- /dev/null +++ b/debian/tests/slowcheck @@ -0,0 +1,60 @@ +#!/bin/bash +# autopkgtest check: Run junit base tests against an installed version of LibreOffice +# (c) 2021 Software in the Public Interest, Inc. +# Authors: Rene Engelhard + +set -e +set -E + +SRCDIR=`pwd` +CHECK_PARALLELISM=1 +if [ -n "$AUTOPKGTEST_TMP" ]; then + WORKDIR=`mktemp -q -d -p $AUTOPKGTEST_TMP` +else + WORKDIR=`mktemp -q -d` +fi + +function unapply() { + cd $SRCDIR + echo + echo "====== Unapplying the patches ======" + patch -p1 -R < ./debian/tests/patches/cppunit-standalone.diff +} + +trap "unapply" ERR + +echo +echo "====== Patching the tree to only build the unittests against an existing installation ======" +patch -p1 < ./debian/tests/patches/cppunit-standalone.diff + +echo +echo "====== Enabling core dumps ======" +# yes, we want core dumps and stack traces +ulimit -c unlimited || true + +echo +echo "====== Starting slowcheck with ${CHECK_PARALLELISM} job ======" + +# hack, otherwise it fails +mkdir -p $SRCDIR/instdir/program/.dir +mkdir -p $SRCDIR/instdir/share/config/soffice.cfg/simpress/.dir +mkdir -p $SRCDIR/instdir/share/config/soffice.cfg/modules/simpress/popupmenu/.dir +mkdir -p $SRCDIR/instdir/share/config/soffice.cfg/modules/simpress/statusbar/.dir +mkdir -p $SRCDIR/instdir/share/config/soffice.cfg/modules/simpress/toolbar/.dir +mkdir -p $SRCDIR/instdir/share/config/soffice.cfg/modules/simpress/ui/.dir +mkdir -p $SRCDIR/instdir/share/config/soffice.cfg/modules/simpress/menubar/.dir + +# all modules containing slowcheck +export PARALLELISM=$CHECK_PARALLELISM +for i in `grep slowcheck */*.mk | cut -d"/" -f1 | sort | uniq | xargs`; do + echo + echo "====== Running slowcheck in module $i ======"; \ + cd $i && \ + make -rk slowcheck \ + INSTDIR=/usr/lib/libreoffice \ + verbose=t; \ + cd ..;\ +done + +unapply + -- cgit v1.2.3