blob: d82f1d0853b0938feec24f731e33091c825002c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/bash
set +x
set +e
srcdir=$( pwd )
builddir=$1
# Ignore memory leaks lower in dependencies
export LSAN_OPTIONS=suppressions=$srcdir/lsan.supp:print_suppressions=0
# Check leaks of slices
export G_SLICE=always-malloc
meson test -C ${builddir} \
--print-errorlogs \
--suite=pango
# Store the exit code for the CI run, but always
# generate the reports
exit_code=$?
cd ${builddir}
./utils/pango-list --verbose > fontlist.txt
./tests/test-font -p /pango/font/metrics --verbose
./utils/pango-view --no-display --output hello.png ${srcdir}/utils/HELLO.txt
$srcdir/.gitlab-ci/meson-junit-report.py \
--project-name=pango \
--job-id="${CI_JOB_NAME}" \
--output=report.xml \
meson-logs/testlog.json
exit $exit_code
|