Skip to content

Commit 0dc2e05

Browse files
GODRIVER-3448 Limit GOMAXPROCS for fuzz tests (#1939) [v1] (#1943)
Co-authored-by: Preston Vasquez <[email protected]>
1 parent 659342c commit 0dc2e05

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)