1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2024-12-14 10:13:05 +02:00

Use L to denote line numbers in test output.

The lower-case l was too easy to confuse with a 1.
This commit is contained in:
David Steele 2021-05-28 13:08:41 -04:00
parent cfe8e51910
commit 0a43be0183

View File

@ -319,7 +319,7 @@ hrnTestLogTitle(int lineNo)
putchar('-'); putchar('-');
// Output line number // Output line number
printf(" l%04d", lineNo); printf(" L%04d", lineNo);
// Increment testSub and reset log time // Increment testSub and reset log time
testRunSub++; testRunSub++;
@ -363,7 +363,7 @@ hrnTestLogPrefix(const int lineNo)
harnessTestLocal.logLastLineNo = lineNo; harnessTestLocal.logLastLineNo = lineNo;
// Add line number and padding // Add line number and padding
printf("l%04d ", lineNo); printf("L%04d ", lineNo);
fflush(stdout); fflush(stdout);
FUNCTION_HARNESS_RETURN_VOID(); FUNCTION_HARNESS_RETURN_VOID();