make tests more valgrind-friendly by not leaking memory

This commit is contained in:
Enno Rehling 2014-12-12 11:13:25 +01:00
parent e9e29500bb
commit e1d5033b76
10 changed files with 61 additions and 20 deletions

View File

@ -78,7 +78,12 @@ ln -f $LIVE/data/$turn.dat data/
rm -rf reports
mkdir -p reports
$SOURCE/build-x86_64-gcc-Debug/eressea/eressea -v$verbose -t$turn -re$game $SOURCE/scripts/run-turn.lua
SERVER="$SOURCE/build-x86_64-gcc-Debug/eressea/eressea"
VALGRIND=$(which valgrind)
if [ ! -z $VALGRIND ]; then
SERVER="$VALGRIND --leak-check=no $SERVER"
fi
$SERVER -v$verbose -t$turn -re$game $SOURCE/scripts/run-turn.lua
let turn=$turn+1
[ -e data/$turn.dat ] || abort "no data file created"
}

View File

@ -3661,7 +3661,7 @@ static void free_fighter(fighter * fig)
}
static void free_battle(battle * b)
void free_battle(battle * b)
{
int max_fac_no = 0;
@ -4312,5 +4312,6 @@ void battle_free(battle * b) {
}
free_side(s);
}
free(b);
}

View File

@ -263,15 +263,16 @@ extern "C" {
extern void drain_exp(struct unit *u, int d);
extern void kill_troop(troop dt);
extern void remove_troop(troop dt); /* not the same as the badly named rmtroop */
extern bool is_attacker(const fighter * fig);
extern struct battle *make_battle(struct region * r);
extern fighter *make_fighter(struct battle *b, struct unit *u, side * s,
bool attack);
extern struct side *make_side(struct battle * b, const struct faction * f,
const struct group * g, unsigned int flags,
const struct faction * stealthfaction);
extern int skilldiff(troop at, troop dt, int dist);
bool is_attacker(const fighter * fig);
struct battle *make_battle(struct region * r);
void free_battle(struct battle * b);
struct fighter *make_fighter(struct battle *b, struct unit *u,
struct side * s, bool attack);
struct side *make_side(struct battle * b, const struct faction * f,
const struct group * g, unsigned int flags,
const struct faction * stealthfaction);
int skilldiff(troop at, troop dt, int dist);
#ifdef __cplusplus
}

View File

@ -53,6 +53,8 @@ static void test_make_fighter(CuTest * tc)
CuAssertIntEquals(tc, 3, af->magic);
CuAssertIntEquals(tc, 1, af->horses);
CuAssertIntEquals(tc, 0, af->elvenhorses);
free_battle(b);
test_cleanup();
}
static int add_two(building * b, unit * u) {
@ -102,6 +104,8 @@ static void test_defenders_get_building_bonus(CuTest * tc)
diff = skilldiff(dt, at, 0);
CuAssertIntEquals(tc, 0, diff);
free_battle(b);
test_cleanup();
}
static void test_attackers_get_no_building_bonus(CuTest * tc)
@ -130,6 +134,8 @@ static void test_attackers_get_no_building_bonus(CuTest * tc)
af = make_fighter(b, au, as, true);
CuAssertPtrEquals(tc, 0, af->building);
free_battle(b);
test_cleanup();
}
static void test_building_bonus_respects_size(CuTest * tc)
@ -166,6 +172,8 @@ static void test_building_bonus_respects_size(CuTest * tc)
CuAssertPtrEquals(tc, bld, af->building);
CuAssertPtrEquals(tc, 0, df->building);
free_battle(b);
test_cleanup();
}
CuSuite *get_battle_suite(void)

View File

@ -116,6 +116,7 @@ static void test_findrace(CuTest *tc) {
rc = findrace("Zwerg", lang);
CuAssertPtrNotNull(tc, rc);
CuAssertStrEquals(tc, "dwarf", rc->_name);
test_cleanup();
}
static void test_items(CuTest * tc)

View File

@ -6,6 +6,7 @@
#include <util/parser.h>
#include <util/language.h>
#include <tests.h>
#include <CuTest.h>
#include <stdlib.h>
#include <string.h>
@ -13,7 +14,10 @@
static void test_create_order(CuTest *tc) {
char cmd[32];
order *ord;
struct locale * lang = get_or_create_locale("en");
struct locale * lang;
test_cleanup();
lang = get_or_create_locale("en");
locale_setstring(lang, "keyword::move", "MOVE");
ord = create_order(K_MOVE, lang, "NORTH");
@ -24,12 +28,16 @@ static void test_create_order(CuTest *tc) {
CuAssertIntEquals(tc, K_MOVE, init_order(ord));
CuAssertStrEquals(tc, "NORTH", getstrtoken());
free_order(ord);
test_cleanup();
}
static void test_parse_order(CuTest *tc) {
char cmd[32];
order *ord;
struct locale * lang = get_or_create_locale("en");
struct locale * lang;
test_cleanup();
lang = get_or_create_locale("en");
locale_setstring(lang, "keyword::move", "MOVE");
init_keyword(lang, K_MOVE, "MOVE");
@ -41,12 +49,16 @@ static void test_parse_order(CuTest *tc) {
CuAssertIntEquals(tc, K_MOVE, init_order(ord));
CuAssertStrEquals(tc, "NORTH", getstrtoken());
free_order(ord);
test_cleanup();
}
static void test_parse_make(CuTest *tc) {
char cmd[32];
order *ord;
struct locale * lang = get_or_create_locale("en");
struct locale * lang;
test_cleanup();
lang = get_or_create_locale("en");
locale_setstring(lang, keyword(K_MAKE), "MAKE");
locale_setstring(lang, keyword(K_MAKETEMP), "MAKETEMP");
@ -59,13 +71,16 @@ static void test_parse_make(CuTest *tc) {
CuAssertIntEquals(tc, K_MAKE, init_order(ord));
CuAssertStrEquals(tc, "hurrdurr", getstrtoken());
free_order(ord);
test_cleanup();
}
static void test_parse_make_temp(CuTest *tc) {
char cmd[32];
order *ord;
struct locale * lang = get_or_create_locale("en");
struct locale * lang;
test_cleanup();
lang = get_or_create_locale("en");
locale_setstring(lang, keyword(K_MAKE), "MAKE");
locale_setstring(lang, keyword(K_MAKETEMP), "MAKETEMP");
locale_setstring(lang, "TEMP", "TEMP");
@ -79,6 +94,7 @@ static void test_parse_make_temp(CuTest *tc) {
CuAssertIntEquals(tc, K_MAKETEMP, init_order(ord));
CuAssertStrEquals(tc, "herp", getstrtoken());
free_order(ord);
test_cleanup();
}
static void test_parse_maketemp(CuTest *tc) {

View File

@ -12,11 +12,13 @@ static void test_readwrite_data(CuTest * tc)
{
const char *filename = "test.dat";
char path[MAX_PATH];
test_cleanup();
sprintf(path, "%s/%s", datapath(), filename);
CuAssertIntEquals(tc, 0, writegame(filename));
CuAssertIntEquals(tc, 0, readgame(filename, 0));
CuAssertIntEquals(tc, RELEASE_VERSION, global.data_version);
CuAssertIntEquals(tc, 0, remove(path));
test_cleanup();
}
CuSuite *get_save_suite(void)

View File

@ -61,6 +61,7 @@ static void test_findkeyword(CuTest *tc) {
CuAssertIntEquals(tc, K_STUDY, findkeyword("study"));
CuAssertIntEquals(tc, NOKEYWORD, findkeyword(""));
CuAssertIntEquals(tc, NOKEYWORD, findkeyword("potato"));
test_cleanup();
}
static void test_get_keyword_default(CuTest *tc) {
@ -70,6 +71,7 @@ static void test_get_keyword_default(CuTest *tc) {
CuAssertIntEquals(tc, NOKEYWORD, get_keyword("potato", lang));
CuAssertIntEquals(tc, K_MOVE, get_keyword("move", lang));
CuAssertIntEquals(tc, K_STUDY, get_keyword("study", lang));
test_cleanup();
}
static void test_get_shortest_match(CuTest *tc) {
@ -88,6 +90,7 @@ static void test_get_shortest_match(CuTest *tc) {
CuAssertIntEquals(tc, K_STATUS, get_keyword("COM", lang));
CuAssertIntEquals(tc, K_STATUS, get_keyword("COMBAT", lang));
CuAssertIntEquals(tc, K_COMBATSPELL, get_keyword("COMBATS", lang));
test_cleanup();
}
#define SUITE_DISABLE_TEST(suite, test) (void)test

View File

@ -6,14 +6,15 @@
#pragma warning(disable: 4210)
#define ADD_TESTS(suite, name) \
CuSuite *get_##name##_suite(void); \
CuSuiteAddSuite(suite, get_##name##_suite())
CuSuite *get_##name##_suite(void); \
CuSuite *name = get_##name##_suite(); \
CuSuiteAddSuite(suite, name);
int RunAllTests(void)
{
CuString *output = CuStringNew();
CuSuite *suite = CuSuiteNew();
int flags = log_flags;
int result, flags = log_flags;
log_flags = LOG_FLUSH | LOG_CPERROR;
kernel_init();
@ -72,8 +73,10 @@ int RunAllTests(void)
CuSuiteDetails(suite, output);
printf("%s\n", output->buffer);
log_flags = flags;
return suite->failCount;
log_flags = flags;
result = suite->failCount;
CuSuiteDelete(suite);
return result;
}
int main(int argc, char ** argv) {

View File

@ -33,6 +33,7 @@ static void test_move_to_vortex(CuTest *tc) {
CuAssertIntEquals(tc, E_MOVE_NOREGION, movewhere(u, "barf", r1, &r));
CuAssertIntEquals(tc, E_MOVE_OK, movewhere(u, "wirbel", r1, &r));
CuAssertPtrEquals(tc, r2, r);
test_cleanup();
}
CuSuite *get_vortex_suite(void)