1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2026-05-22 10:15:16 +02:00

Config parsing implemented in C.

This commit is contained in:
David Steele
2017-12-22 23:27:49 -05:00
parent d8c575801d
commit 526acca5bd
29 changed files with 1646 additions and 360 deletions
+1 -1
View File
@@ -138,6 +138,6 @@ Subsequent code that is uncoverable for the same reason is marked with `// {+unc
Marks code that is not tested for one reason or another. This should be kept to a minimum and an excuse given for each instance.
```
exit(EXIT_FAILURE); // {uncoverable - test harness does not support non-zero exit}
exit(EXIT_FAILURE); // {uncovered - test harness does not support non-zero exit}
```
Subsequent code that is uncovered for the same reason is marked with `// {+uncovered}`.