#include <stic.h>
#include "../../src/compat/reallocarray.h"
#include "../../src/utils/string_array.h"
#include "../../src/version.h"
TEST(stats_are_included)
{
int max_len = fill_version_info(NULL, /*include_stats=*/0);
char **list = reallocarray(NULL, max_len, sizeof(*list));
int no_stats_len = fill_version_info(list, /*include_stats=*/0);
free_string_array(list, no_stats_len);
max_len = fill_version_info(NULL, /*include_stats=*/1);
list = reallocarray(NULL, max_len, sizeof(*list));
int stats_len = fill_version_info(list, /*include_stats=*/1);
free_string_array(list, stats_len);
assert_true(stats_len > no_stats_len);
}
/* vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : */
/* vim: set cinoptions+=t0 : */
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"
Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm
Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm
You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a
pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master