mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-02-13 07:43:18 -05:00
23 lines
608 B
C
23 lines
608 B
C
|
|
#include "../check_swap.d/check_swap.h"
|
|
#include "../../tap/tap.h"
|
|
|
|
int verbose = 0;
|
|
|
|
void print_usage(void) {}
|
|
void print_help(swap_config config) {
|
|
(void) config;
|
|
}
|
|
|
|
const char *progname = "test_check_swap";
|
|
|
|
int main(void) {
|
|
swap_result test_data = getSwapFromProcMeminfo("./var/proc_meminfo");
|
|
|
|
plan_tests(4);
|
|
|
|
ok(test_data.errorcode == 0, "Test whether we manage to retrieve swap data");
|
|
ok(test_data.metrics.total == 34233905152, "Is the total Swap correct");
|
|
ok(test_data.metrics.free == 34233905152, "Is the free Swap correct");
|
|
ok(test_data.metrics.used == 0, "Is the used Swap correct");
|
|
}
|