Commit 2421664f authored by Rusty Russell's avatar Rusty Russell

ccanlint: print keys in output

Since test keys are used for --target=, this is useful.
parent 051db34f
......@@ -142,7 +142,7 @@ static bool run_test(struct ccanlint *i,
if ((!score->pass && !quiet)
|| (score->score < score->total && verbose)
|| verbose > 1) {
printf("%s: %s", i->name, score->pass ? "PASS" : "FAIL");
printf("%s (%s): %s", i->name, i->key, score->pass ? "PASS" : "FAIL");
if (score->total > 1)
printf(" (+%u/%u)", score->score, score->total);
printf("\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment