Skip to content

Commit a20f92a

Browse files
committed
Make warning message informative
Improve warning message clarity by adding node count and maximum limit information.
1 parent ae755e6 commit a20f92a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

qtest.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -613,8 +613,9 @@ bool do_sort(int argc, char *argv[])
613613
nodes[no++] = &entry->list;
614614
} else if (current && current->size > MAX_NODES)
615615
report(1,
616-
"Skip the stability check because the number of "
617-
"elements is too large.");
616+
"Warning: Skip checking the stability of the sort because the "
617+
"number of elements %d is too large, exceeds the limit %d.",
618+
current->size, MAX_NODES);
618619

619620
if (current && exception_setup(true))
620621
q_sort(current->q, descend);

0 commit comments

Comments
 (0)