diff mbox series

[1/2] doc: Add LTP-005: Array must be sentinel terminated

Message ID 20211201162401.12725-1-rpalethorpe@suse.com
State Superseded
Headers show
Series [1/2] doc: Add LTP-005: Array must be sentinel terminated | expand

Commit Message

Richard Palethorpe Dec. 1, 2021, 4:24 p.m. UTC
Signed-off-by: Richard Palethorpe <rpalethorpe@suse.com>
---
 doc/rules.tsv | 1 +
 1 file changed, 1 insertion(+)

Comments

Petr Vorel Dec. 1, 2021, 6:21 p.m. UTC | #1
Hi Richie,

> +LTP-005 Array must terminate with a sentinel value (i.e. NULL or '{}')
Yes :)

Reviewed-by: Petr Vorel <pvorel@suse.cz>

Kind regards,
Petr
Cyril Hrubis Dec. 6, 2021, 3:22 p.m. UTC | #2
Hi!
This is obviously fine.

Reviewed-by: Cyril Hrubis <chrubis@suse.cz>
diff mbox series

Patch

diff --git a/doc/rules.tsv b/doc/rules.tsv
index 2dfeca9f9..66dbdeccf 100644
--- a/doc/rules.tsv
+++ b/doc/rules.tsv
@@ -3,3 +3,4 @@  LTP-001	Library source files have tst_ prefix
 LTP-002	TST_RET and TST_ERR are never modified by test library functions
 LTP-003 Externally visible library symbols have the tst_ prefix
 LTP-004 Test executable symbols are marked static
+LTP-005 Array must terminate with a sentinel value (i.e. NULL or '{}')