Add cmake test for apidsl.

This commit is contained in:
iphydf 2016-08-19 19:31:08 +01:00
parent 503d198741
commit 7075c3648a
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9
3 changed files with 29 additions and 3 deletions

View File

@ -223,6 +223,9 @@ target_link_libraries(toxencryptsave toxcore)
#
################################################################################
add_test(format_test
${CMAKE_SOURCE_DIR}/other/astyle/format-source "${CMAKE_SOURCE_DIR}")
function(auto_test target)
if(CHECK_FOUND)
add_executable(auto_${target} auto_tests/${target}.c)

View File

@ -1,9 +1,35 @@
#!/bin/sh
set -e
SOURCE_DIR="$1"
# Go to the source root.
if [ -z "$SOURCE_DIR" ]; then
SOURCE_DIR=.
fi
cd "$SOURCE_DIR"
if [ -z "$ASTYLE" ]; then
ASTYLE=astyle
fi
if [ -f ../apidsl/_build/apigen.native ]; then
APIDSL=../apidsl/_build/apigen.native
else
APIDSL=apidsl_curl
fi
apidsl_curl() {
curl -X POST --data-binary @"$1" https://apidsl.herokuapp.com/apidsl
}
# Check if toxcore.h and toxav.h match apidsl tox.in.h and toxav.in.h.
$APIDSL other/apidsl/tox.in.h > toxcore/tox.h
$APIDSL other/apidsl/toxav.in.h > toxav/toxav.h
SOURCES=`find . -name "*.[ch]" -and -not -name "*.in.*" -and -not -wholename "*crypto_pwhash*" -and -not -wholename "./super_donators/*"`
$ASTYLE -n --options=other/astyle/astylerc $SOURCES
git diff --exit-code

View File

@ -3,9 +3,6 @@
set -e -u -x
. other/travis/env-$ENV.sh
# Check if toxcore.h and toxav.h match apidsl tox.in.h and toxav.in.h.
../apidsl/_build/apigen.native other/apidsl/tox.in.h > toxcore/tox.h
../apidsl/_build/apigen.native other/apidsl/toxav.in.h > toxav/toxav.h
# Check if the code is formatted according to the astyle configuration.
other/astyle/format-source
git diff --exit-code