Skip to content

Commit 7eb90ca

Browse files
committed
Merge pull request ofiwg#1559 from hppritcha/upstream_stage_571
prov/gni: Fix criterion test for fi_no* change.
2 parents e504dfa + eeefb69 commit 7eb90ca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

prov/gni/test/cq.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -597,10 +597,10 @@ Test(cq_wait_ops, fd, .init = cq_wait_fd_setup)
597597
{
598598
cr_expect_neq(cq_priv->cq_fid.ops->signal, fi_no_cq_signal,
599599
"signal implementation not available.");
600-
cr_expect_neq(cq_priv->cq_fid.ops->sread, fi_no_cq_sread,
601-
"sread implementation not available.");
602-
cr_expect_neq(cq_priv->cq_fid.ops->sreadfrom, fi_no_cq_sreadfrom,
603-
"sreadfrom implementation not available.");
600+
cr_expect_eq(cq_priv->cq_fid.ops->sread, fi_no_cq_sread,
601+
"sread implementation available.");
602+
cr_expect_eq(cq_priv->cq_fid.ops->sreadfrom, fi_no_cq_sreadfrom,
603+
"sreadfrom implementation available.");
604604
cr_expect_neq(cq_priv->cq_fid.fid.ops->control, fi_no_control,
605605
"control implementation not available.");
606606
}

0 commit comments

Comments
 (0)