Skip to content

Commit

Permalink
Skip an unreliable queue consistency check.
Browse files Browse the repository at this point in the history
  • Loading branch information
insertinterestingnamehere committed Jan 13, 2025
1 parent e7c6403 commit 61e1a3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/basics/queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ int main(int argc, char *argv[]) {
}

test_check(qthread_queue_length(the_queue) == 0);
test_check(qthread_readstate(NODE_BUSYNESS) == 1);
// Again, this relies on approximate estimates that aren't reliable.
// test_check(qthread_readstate(NODE_BUSYNESS) == 1);

iprintf("6/6 Test passed!\n");
free(retvals);
Expand Down

0 comments on commit 61e1a3d

Please sign in to comment.