Skip to content

Commit a23ef85

Browse files
GODRIVER-3448 Limit GOMAXPROCS for fuzz tests (#1939)
(cherry picked from commit 7825d6d)
1 parent e796c82 commit a23ef85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/run-fuzz.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ do
3535
done
3636
fi
3737

38-
go test ${PARENTDIR} -run=${FUNC} -fuzz=${FUNC} -fuzztime=${FUZZTIME} || true
38+
GOMAXPROCS=2 go test ${PARENTDIR} -run=${FUNC} -fuzz=${FUNC} -fuzztime=${FUZZTIME} || true
3939

4040
# Check if any new corpus files were generated for the fuzzer. If there are new corpus files, move them
4141
# to $PROJECT_DIRECTORY/fuzz/$FUNC/* so they can be tarred up and uploaded to S3.

0 commit comments

Comments
 (0)