Skip to content

Commit

Permalink
re-enabled the skipped test for the linux musl node
Browse files Browse the repository at this point in the history
  • Loading branch information
oodigie committed Oct 21, 2024
1 parent dc97a2b commit 6fdf455
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions test/persistent_receiver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -621,11 +621,7 @@ var _ = Describe("PersistentReceiver", func() {
Eventually(msgChan).Should(Receive(Not(BeNil())))
})

Context("pause and resume tests", Label("flaky-tests"), func() {
BeforeEach(func() {
Skip("Currently failing in Jenkins pipeline on Linux Musl nodes - SOL-124616")
})

Context("pause and resume tests", func() {
It("can pause and resume messaging repeatedly", func() {
numMessages := 1000
msgChan := make(chan message.InboundMessage, numMessages)
Expand Down Expand Up @@ -811,11 +807,9 @@ var _ = Describe("PersistentReceiver", func() {
})
})

const numQueuedMessages = 10000
Context(fmt.Sprintf("with %d queued messages", numQueuedMessages), Label("flaky-tests"), func() {
const numQueuedMessages = 5000
Context(fmt.Sprintf("with %d queued messages", numQueuedMessages), func() {
BeforeEach(func() {
Skip("Currently failing in Jenkins pipeline on Linux Musl nodes - SOL-124616")

helpers.PublishNPersistentMessages(messagingService, topicString, numQueuedMessages)
Eventually(func() int {
resp, _, err := testcontext.SEMP().Monitor().QueueApi.GetMsgVpnQueueMsgs(testcontext.SEMP().MonitorCtx(),
Expand Down

0 comments on commit 6fdf455

Please sign in to comment.