Test: Added detail env var to sum.sh, Changed make test to include detailed test

This commit is contained in:
Olof hagsand 2022-07-21 08:26:49 +02:00
parent 42efb59a75
commit e724dd7f40
5 changed files with 34 additions and 7 deletions

View file

@ -83,7 +83,7 @@ snmp_common_handler(netsnmp_mib_handler *handler,
{
int retval = -1;
netsnmp_variable_list *requestvb; /* sub of request */
cbuf *cb;
cbuf *cb = NULL;
if (request == NULL || shp == NULL){
clicon_err(OE_XML, EINVAL, "request or shp is null");
@ -832,7 +832,7 @@ snmp_table_get(clicon_handle h,
yang_stmt *yk;
char *xpath = NULL;
cvec *cvk_orig;
cvec *cvk_val;
cvec *cvk_val = NULL;
int i;
cg_var *cv;
char *defaultval = NULL;
@ -951,7 +951,7 @@ snmp_table_set(clicon_handle h,
yang_stmt *yrestype = NULL;
char *xpath = NULL;
cvec *cvk_orig;
cvec *cvk_val;
cvec *cvk_val = NULL;
int i;
cg_var *cv;
int ret;