From ed4d70888caef77a9b1d875be70e3e61d3374552 Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Tue, 5 Dec 2017 17:03:32 -0800 Subject: [PATCH] semaphore.sh: do not fail on "Too many goroutines" To not fail on "pkg/testutil" unit tests. Signed-off-by: Gyuho Lee --- .semaphore.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.semaphore.sh b/.semaphore.sh index d44abeeb1..c9af1edbd 100755 --- a/.semaphore.sh +++ b/.semaphore.sh @@ -13,4 +13,4 @@ docker run \ gcr.io/etcd-development/etcd-test:go1.8.5 \ /bin/bash -c "${TEST_OPTS} ./test 2>&1 | tee test-${TEST_SUFFIX}.log" -! egrep "(--- FAIL:|panic: test timed out|appears to have leaked|Too many goroutines)" -B50 -A10 test-${TEST_SUFFIX}.log +! egrep "(--- FAIL:|panic: test timed out|appears to have leaked)" -B50 -A10 test-${TEST_SUFFIX}.log