diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-10-25 17:38:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-25 17:38:47 +0800 |
commit | 1e84ff2da76534b7b2412d2f4e862090dc31192c (patch) | |
tree | 02661cf8351be4944386352831ad4d8924ee9655 /GNUmakefile | |
parent | 04eeac10e6c690e62ae57ef0e2bdf4618b8782d1 (diff) | |
download | dexon-consensus-1e84ff2da76534b7b2412d2f4e862090dc31192c.tar dexon-consensus-1e84ff2da76534b7b2412d2f4e862090dc31192c.tar.gz dexon-consensus-1e84ff2da76534b7b2412d2f4e862090dc31192c.tar.bz2 dexon-consensus-1e84ff2da76534b7b2412d2f4e862090dc31192c.tar.lz dexon-consensus-1e84ff2da76534b7b2412d2f4e862090dc31192c.tar.xz dexon-consensus-1e84ff2da76534b7b2412d2f4e862090dc31192c.tar.zst dexon-consensus-1e84ff2da76534b7b2412d2f4e862090dc31192c.zip |
misc: Add longer timeout for test in master (#258)
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 819519e..92c8f57 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -93,7 +93,7 @@ test-short: test: @for pkg in `go list ./... | grep -v 'vendor'`; do \ - if ! go test -race $$pkg; then \ + if ! go test -timeout 15m -race $$pkg; then \ echo 'Some test failed, abort'; \ exit 1; \ fi; \ |