📄 conf.t
字号:
#!./perlBEGIN { unless(grep /blib/, @INC) { chdir 't' if -d 't'; @INC = '../lib' if -d '../lib'; }}# This merely checks to see if the default_store routines work from# read configuration files. Functionally, if this fails then it's a# serious problem because they linked with static libraries instead of# shared ones as the memory space is different.use Test;BEGIN {plan tests => 3}$ENV{'SNMPCONFPATH'} = ".:t";ok(1); # just start upuse SNMP;use NetSNMP::default_store(':all');# should be 0, as it's un-initialized$myint = netsnmp_ds_get_int(NETSNMP_DS_LIBRARY_ID, NETSNMP_DS_LIB_NUMERIC_TIMETICKS);ok($myint == 0);SNMP::init_snmp("conftest");$myint = netsnmp_ds_get_boolean(NETSNMP_DS_LIBRARY_ID, NETSNMP_DS_LIB_NUMERIC_TIMETICKS);# ok, should be 1 as it's initalized by the snmp.conf config file.ok($myint == 1);# this is a pretty major error, so if it's not true we really really# print a big big warning. Technically, I suspect this is a bad thing# to do in perl tests but...if ($myint != 1) { die "\n\n\n" . "*" x 75 . "\nBIG PROBLEM: I wasn't able to read data from a configuration file. This likely means that you've compiled the net-snmp package with static libraries, which can cause real problems with the perl module. Please reconfigure your net-snmp package for use with shared libraries (run configure with --enable-shared)\n" . "*" x 75 . "\n\n\n\n";}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -