mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
Merge pull request #2528 from lucas-clemente/unit-tests-race-detector
run all unit tests with race detector
This commit is contained in:
commit
3e7f9f764a
2 changed files with 8 additions and 5 deletions
|
@ -13,10 +13,10 @@ fi
|
|||
|
||||
if [ ${TESTMODE} == "unit" ]; then
|
||||
ginkgo -r -v -cover -randomizeAllSpecs -randomizeSuites -trace -skipPackage integrationtests,benchmark
|
||||
# run internal and http3 tests with the Go race detector
|
||||
# run unit tests with the Go race detector
|
||||
# The Go race detector only works on amd64.
|
||||
if [ ${TRAVIS_GOARCH} == 'amd64' ]; then
|
||||
ginkgo -r -v -race -randomizeAllSpecs -randomizeSuites -trace internal http3
|
||||
ginkgo -race -r -v -randomizeAllSpecs -randomizeSuites -trace -skipPackage integrationtests,benchmark
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
|
@ -1055,13 +1055,16 @@ var _ = Describe("Session", func() {
|
|||
|
||||
It("sends ACK only packets", func() {
|
||||
sph := mockackhandler.NewMockSentPacketHandler(mockCtrl)
|
||||
sph.EXPECT().TimeUntilSend().AnyTimes()
|
||||
sph.EXPECT().GetLossDetectionTimeout().AnyTimes()
|
||||
sph.EXPECT().SendMode().Return(ackhandler.SendAck)
|
||||
sph.EXPECT().ShouldSendNumPackets().Return(1000)
|
||||
packer.EXPECT().MaybePackAckPacket(false)
|
||||
runSession()
|
||||
done := make(chan struct{})
|
||||
packer.EXPECT().MaybePackAckPacket(false).Do(func(bool) { close(done) })
|
||||
sess.sentPacketHandler = sph
|
||||
Expect(sess.sendPackets()).To(Succeed())
|
||||
runSession()
|
||||
sess.scheduleSending()
|
||||
Eventually(done).Should(BeClosed())
|
||||
})
|
||||
|
||||
It("adds a BLOCKED frame when it is connection-level flow control blocked", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue