blob: fa5237e5f2bc6c7dbe9fac19aa86c32079769383 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#!/usr/bin/env bash
#
# SPDX-FileCopyrightText: 2021 René de Hesselle <dehesselle@web.de>
#
# SPDX-License-Identifier: GPL-2.0-or-later
### description ################################################################
# Build and run the test suite.
### shellcheck #################################################################
# Nothing here.
### dependencies ###############################################################
source "$(dirname "${BASH_SOURCE[0]}")"/jhb/etc/jhb.conf.sh
source "$(dirname "${BASH_SOURCE[0]}")"/src/ink.sh
bash_d_include error
### variables ##################################################################
# Nothing here.
### functions ##################################################################
# Nothing here.
### main #######################################################################
error_trace_enable
#----------------------------------------------------------- (re-) configure jhb
# Rerun configuration to adapt to the current system. This will
# - allow Inkscape to be build against a different SDK than the toolset has
# been built with
# - setup ccache
jhb configure
#----------------------------------------------- install additional dependencies
jhb run pip3 install "$PKG_DIR"/lxml*.whl
#--------------------------------------------------------------------- run tests
cd "$INK_BLD_DIR" || exit 1
ninja tests # build tests
ctest -V # run tests
|