Set proper paths to SNMP utils.
This commit is contained in:
parent
498394695c
commit
b4b00bffaf
1 changed files with 10 additions and 3 deletions
|
|
@ -11,9 +11,9 @@ if [ $valgrindtest -ne 0 ]; then
|
||||||
return 0 # skip
|
return 0 # skip
|
||||||
fi
|
fi
|
||||||
|
|
||||||
snmpd="/usr/sbin/snmpd"
|
snmpd=$(type -p snmpd)
|
||||||
snmpget="/usr/bin/snmpget -c public -v2c localhost:1161 "
|
snmpget="$(type -p snmpget) -c public -v2c localhost:1161 "
|
||||||
snmpset="/usr/bin/snmpset -c public -v2c localhost:1161 "
|
snmpset="$(type -p snmpset) -c public -v2c localhost:1161 "
|
||||||
clixon_snmp="/usr/local/sbin/clixon_snmp"
|
clixon_snmp="/usr/local/sbin/clixon_snmp"
|
||||||
cfg=$dir/conf_startup.xml
|
cfg=$dir/conf_startup.xml
|
||||||
fyang=$dir/clixon-example.yang
|
fyang=$dir/clixon-example.yang
|
||||||
|
|
@ -77,6 +77,10 @@ function testinit(){
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function testexit(){
|
||||||
|
sudo killall snmpd
|
||||||
|
}
|
||||||
|
|
||||||
new "SNMP tests"
|
new "SNMP tests"
|
||||||
testinit
|
testinit
|
||||||
|
|
||||||
|
|
@ -89,5 +93,8 @@ expectpart "$($snmpset .1.3.6.1.4.1.8072.2.4.1.1.2.0 i 1234)" 0 "NET-SNMP-EXAMPL
|
||||||
new "Get new value"
|
new "Get new value"
|
||||||
expectpart "$($snmpget .1.3.6.1.4.1.8072.2.4.1.1.2.0)" 0 "NET-SNMP-EXAMPLES-MIB::netSnmpExamples.4.1.1.2.0 = INTEGER: 1234"
|
expectpart "$($snmpget .1.3.6.1.4.1.8072.2.4.1.1.2.0)" 0 "NET-SNMP-EXAMPLES-MIB::netSnmpExamples.4.1.1.2.0 = INTEGER: 1234"
|
||||||
|
|
||||||
|
new "Cleaning up"
|
||||||
|
testexit
|
||||||
|
|
||||||
new "endtest"
|
new "endtest"
|
||||||
endtest
|
endtest
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue