1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #5639 from gebart/pr/docker-make-unittests

docker: allow make unittest goals to pass on to container
This commit is contained in:
Joakim Nohlgård 2016-07-14 12:54:53 +02:00 committed by GitHub
commit e78e39d479

View File

@ -7,8 +7,9 @@ export DOCKER_MAKECMDGOALS_POSSIBLE = \
buildtest \
scan-build \
scan-build-analyze \
tests-% \
#
export DOCKER_MAKECMDGOALS = $(filter $(MAKECMDGOALS),$(DOCKER_MAKECMDGOALS_POSSIBLE))
export DOCKER_MAKECMDGOALS = $(filter $(DOCKER_MAKECMDGOALS_POSSIBLE),$(MAKECMDGOALS))
# Docker creates the files .dockerinit and .dockerenv in the root directory of
# the container, we check for the files to determine if we are inside a container.