2017-03-31 06:02:53 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
|
|
|
|
source "${CI_DIR}/common/build.sh"
|
|
|
|
source "${CI_DIR}/common/suite.sh"
|
|
|
|
|
2017-04-30 20:45:24 -07:00
|
|
|
enter_suite 'clint'
|
2017-03-31 06:02:53 -07:00
|
|
|
|
2017-04-30 20:45:24 -07:00
|
|
|
run_test 'top_make clint-full' clint
|
2017-03-31 09:42:18 -07:00
|
|
|
|
2017-04-30 20:45:24 -07:00
|
|
|
exit_suite --continue
|
|
|
|
|
|
|
|
enter_suite 'testlint'
|
2017-04-03 17:58:10 -07:00
|
|
|
|
2017-03-31 06:02:53 -07:00
|
|
|
run_test 'top_make testlint' testlint
|
2017-04-30 20:45:24 -07:00
|
|
|
|
|
|
|
exit_suite --continue
|
|
|
|
|
2017-05-25 06:50:06 -07:00
|
|
|
enter_suite 'lualint'
|
|
|
|
|
|
|
|
run_test 'top_make lualint' lualint
|
|
|
|
|
|
|
|
exit_suite --continue
|
|
|
|
|
2017-04-30 20:45:24 -07:00
|
|
|
enter_suite single-includes
|
|
|
|
|
2017-04-03 18:02:54 -07:00
|
|
|
CLICOLOR_FORCE=1 run_test_wd \
|
2017-04-07 14:46:32 -07:00
|
|
|
--allow-hang \
|
2017-04-07 14:47:33 -07:00
|
|
|
10s \
|
2017-04-03 18:02:54 -07:00
|
|
|
'top_make check-single-includes' \
|
|
|
|
'csi_clean' \
|
|
|
|
single-includes
|
2017-03-31 06:02:53 -07:00
|
|
|
|
2017-04-30 20:45:24 -07:00
|
|
|
exit_suite --continue
|
|
|
|
|
2017-04-04 10:15:30 -07:00
|
|
|
end_tests
|