Merge pull request #296 from libexpat/fix-qa-sh-integration

Fix qa.sh integration
This commit is contained in:
Sebastian Pipping 2019-07-29 20:11:13 +02:00 committed by GitHub
commit e10fb3a65c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -59,5 +59,5 @@ elif [[ ${MODE} = cmake-oos ]]; then
elif [[ ${MODE} = cppcheck ]]; then
cppcheck --quiet --error-exitcode=1 .
else
./qa.sh
./qa.sh ${CONFIGURE_ARGS}
fi

View File

@ -152,7 +152,7 @@ run() {
populate_environment
dump_config
run_configure
run_configure "$@"
run_compile
run_tests
run_processor
@ -231,7 +231,7 @@ main() {
process_config
run
run "$@"
}