mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-09 23:34:38 +01:00
- Transaction APIs removed - Use different save dirs per proto - In process instance update notifier - Use event based refresh timer - Commit changes from main daemon for default proto - For add request commit changes without reload for default proto - extend bbf.config to monitor based on input - extend bbf.config to reload/commit based on input - extend bb.config to provide list of service changes based on proto
24 lines
451 B
Bash
Executable file
24 lines
451 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Functional Tests"
|
|
pwd
|
|
source ./gitlab-ci/shared.sh
|
|
|
|
supervisorctl status all
|
|
|
|
echo "Running the functional test cases"
|
|
make clean -C test/cmocka/
|
|
make functional-test -C test/cmocka/
|
|
check_ret $?
|
|
|
|
sleep 10
|
|
supervisorctl stop all
|
|
supervisorctl status
|
|
|
|
#report part
|
|
#GitLab-CI output
|
|
gcovr -r . 2> /dev/null #throw away stderr
|
|
# Artefact
|
|
gcovr -r . 2> /dev/null --xml -o ./functional-test-coverage.xml
|
|
|
|
echo "Functional Test :: PASS"
|