diff options
Diffstat (limited to 'plugins/tests/test_check_swap.c')
-rw-r--r-- | plugins/tests/test_check_swap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/tests/test_check_swap.c b/plugins/tests/test_check_swap.c index 86ab188f..319cadbf 100644 --- a/plugins/tests/test_check_swap.c +++ b/plugins/tests/test_check_swap.c | |||
@@ -10,7 +10,6 @@ void print_help(swap_config config) { | |||
10 | const char *progname = "test_check_swap"; | 10 | const char *progname = "test_check_swap"; |
11 | 11 | ||
12 | int main() { | 12 | int main() { |
13 | |||
14 | swap_config config = swap_config_init(); | 13 | swap_config config = swap_config_init(); |
15 | 14 | ||
16 | swap_result test_data = getSwapFromProcMeminfo(config, "./var/proc_meminfo"); | 15 | swap_result test_data = getSwapFromProcMeminfo(config, "./var/proc_meminfo"); |
@@ -19,6 +18,6 @@ int main() { | |||
19 | 18 | ||
20 | ok(test_data.errorcode == 0, "Test whether we manage to retrieve swap data"); | 19 | ok(test_data.errorcode == 0, "Test whether we manage to retrieve swap data"); |
21 | ok(test_data.metrics.total == 34233905152, "Is the total Swap correct"); | 20 | ok(test_data.metrics.total == 34233905152, "Is the total Swap correct"); |
22 | ok(test_data.metrics.free == 34231021568, "Is the free Swap correct"); | 21 | ok(test_data.metrics.free == 34233905152, "Is the free Swap correct"); |
23 | ok(test_data.metrics.used == 0, "Is the used Swap correct"); | 22 | ok(test_data.metrics.used == 0, "Is the used Swap correct"); |
24 | } | 23 | } |