Skip to content

Commit

Permalink
Makefile: rename sanity to system test targets
Browse files Browse the repository at this point in the history
Signed-off-by: Erik Hollensbe <erik+github@hollensbe.org>
  • Loading branch information
erikh committed Feb 24, 2016
1 parent 66e6a84 commit 096d620
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ TAR_FILENAME := $(NAME)-$(VERSION).$(TAR_EXT)
TAR_LOC := .
TAR_FILE := $(TAR_LOC)/$(TAR_FILENAME)

all: build unit-test sanity-test centos-tests
all: build unit-test system-test centos-tests

# 'all-CI' target is used by the scripts/CI.sh that passes appropriate set of
# ENV variables (from the jenkins job) to run OS (centos, ubuntu etc) and
# sandbox specific(vagrant, docker-in-docker)
all-CI: build unit-test sanity-test
all-CI: build unit-test system-test

test: build unit-test sanity-test centos-tests
test: build unit-test system-test centos-tests

default: build

Expand Down Expand Up @@ -92,10 +92,10 @@ unit-test: stop clean build
./scripts/unittests -vagrant

centos-tests:
CONTIV_NODE_OS=centos make clean build unit-test sanity-test stop
CONTIV_NODE_OS=centos make clean build unit-test system-test stop

system-test: start
godep go test -v -timeout 60m ./systemtests -check.v
godep go test -v -timeout 120m ./systemtests -check.v

host-build:
@echo "dev: making binaries..."
Expand Down

0 comments on commit 096d620

Please sign in to comment.