aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorMission Liao <mission.liao@dexon.org>2018-11-11 13:13:40 +0800
committerGitHub <noreply@github.com>2018-11-11 13:13:40 +0800
commit795b8b5309ed94858f3bd56e42093d65dcdd0870 (patch)
tree3618a5afe6fb3b486614bd164071b2c02eed18c8 /GNUmakefile
parent81372e5746fedf0ad691ab628096b7caefbe3008 (diff)
downloaddexon-consensus-795b8b5309ed94858f3bd56e42093d65dcdd0870.tar
dexon-consensus-795b8b5309ed94858f3bd56e42093d65dcdd0870.tar.gz
dexon-consensus-795b8b5309ed94858f3bd56e42093d65dcdd0870.tar.bz2
dexon-consensus-795b8b5309ed94858f3bd56e42093d65dcdd0870.tar.lz
dexon-consensus-795b8b5309ed94858f3bd56e42093d65dcdd0870.tar.xz
dexon-consensus-795b8b5309ed94858f3bd56e42093d65dcdd0870.tar.zst
dexon-consensus-795b8b5309ed94858f3bd56e42093d65dcdd0870.zip
test: add integration test (#315)
* Rename NonByzantineTestSuite to WithSchedulerTestsuite * Add a method to query the latest position delivered * Add integration test for core.Consensus * Show detailed list for test cases in CI
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 4988fa3..51c6b34 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -85,7 +85,7 @@ vet:
test-short:
@for pkg in `go list ./... | grep -v 'vendor'`; do \
- if ! go test -race -short $$pkg; then \
+ if ! go test -race -short -v $$pkg; then \
echo 'Some test failed, abort'; \
exit 1; \
fi; \
@@ -93,7 +93,7 @@ test-short:
test:
@for pkg in `go list ./... | grep -v 'vendor'`; do \
- if ! go test -timeout 15m -race $$pkg; then \
+ if ! go test -timeout 15m -race -v $$pkg; then \
echo 'Some test failed, abort'; \
exit 1; \
fi; \