forked from agx/eigenvalue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.in
executable file
·34 lines (30 loc) · 1.03 KB
/
run.in
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/sh
set -e
ABS_BUILDDIR='@ABS_BUILDDIR@'
ABS_SRCDIR='@ABS_SRCDIR@'
if [ "${EV_VALGRIND}" = 1 ]; then
echo "Running ev under valgrind"
WRAPPER="valgrind -v \
--tool=memcheck \
--leak-check=full \
--leak-resolution=high \
--num-callers=40 \
--log-file=vgdump \
--suppressions=${ABS_SRCDIR}/data/valgrind.suppressions \
--suppressions=/usr/share/glib-2.0/valgrind/glib.supp \
"
elif [ "${EV_GDB}" = 1 ]; then
echo "Running ev under gdb"
WRAPPER="gdb --args"
elif [ "${EV_AUTO_GDB}" = 1 ]; then
echo "Running ev under gdb"
WRAPPER="gdb -batch -ex run -ex bt --args"
fi
GSETTINGS_SCHEMA_DIR="${ABS_BUILDDIR}/data:${ABS_BUILDDIR}/plugins/ticket-box:${GSETTINGS_SCHEMA_DIR}"
export GSETTINGS_SCHEMA_DIR
if [ -z "${GSETTINGS_BACKEND}" ]; then
# Make sure we don't mess with the systems gsettings:
export GSETTINGS_BACKEND=memory
fi
set -x
exec ${WRAPPER} "${ABS_BUILDDIR}/src/eigenvalue" $@