We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae755e6 commit a20f92aCopy full SHA for a20f92a
qtest.c
@@ -613,8 +613,9 @@ bool do_sort(int argc, char *argv[])
613
nodes[no++] = &entry->list;
614
} else if (current && current->size > MAX_NODES)
615
report(1,
616
- "Skip the stability check because the number of "
617
- "elements is too large.");
+ "Warning: Skip checking the stability of the sort because the "
+ "number of elements %d is too large, exceeds the limit %d.",
618
+ current->size, MAX_NODES);
619
620
if (current && exception_setup(true))
621
q_sort(current->q, descend);
0 commit comments