Skip to content

Commit 096d620

Browse files
committed
Makefile: rename sanity to system test targets
Signed-off-by: Erik Hollensbe <[email protected]>
1 parent 66e6a84 commit 096d620

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ TAR_FILENAME := $(NAME)-$(VERSION).$(TAR_EXT)
1919
TAR_LOC := .
2020
TAR_FILE := $(TAR_LOC)/$(TAR_FILENAME)
2121

22-
all: build unit-test sanity-test centos-tests
22+
all: build unit-test system-test centos-tests
2323

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

29-
test: build unit-test sanity-test centos-tests
29+
test: build unit-test system-test centos-tests
3030

3131
default: build
3232

@@ -92,10 +92,10 @@ unit-test: stop clean build
9292
./scripts/unittests -vagrant
9393

9494
centos-tests:
95-
CONTIV_NODE_OS=centos make clean build unit-test sanity-test stop
95+
CONTIV_NODE_OS=centos make clean build unit-test system-test stop
9696

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

100100
host-build:
101101
@echo "dev: making binaries..."

0 commit comments

Comments
 (0)