mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
22 lines
343 B
Bash
Executable file
22 lines
343 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "preparation script"
|
|
pwd
|
|
source ./gitlab-ci/shared.sh
|
|
|
|
trap cleanup EXIT
|
|
trap cleanup SIGINT
|
|
|
|
echo "Running the unit test cases"
|
|
make clean
|
|
make unit-test -C ./src/
|
|
check_ret $?
|
|
|
|
#report part
|
|
#GitLab-CI output
|
|
gcovr -r .
|
|
# Artefact
|
|
gcovr -r . --xml -o ./unit-test-coverage.xml
|
|
date +%s > timestamp.log
|
|
|
|
echo "Unit test PASS"
|