forked from github/server
fix compilation, test still fails
This commit is contained in:
parent
abb7c9fb17
commit
0755830754
|
@ -1446,10 +1446,6 @@ static void test_show_both(CuTest *tc) {
|
||||||
test_cleanup();
|
test_cleanup();
|
||||||
}
|
}
|
||||||
|
|
||||||
static int low_wage(const region * r, const faction * f, const race * rc, int in_turn) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void test_immigration(CuTest * tc)
|
static void test_immigration(CuTest * tc)
|
||||||
{
|
{
|
||||||
region *r;
|
region *r;
|
||||||
|
|
|
@ -714,16 +714,14 @@ static void test_region_distance_ql(CuTest *tc) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static void test_report_far_vision(CuTest *tc) {
|
static void test_report_far_vision(CuTest *tc) {
|
||||||
unit *u1;
|
|
||||||
faction *f;
|
faction *f;
|
||||||
region *r1, *r2;
|
region *r1, *r2;
|
||||||
const race *rc;
|
|
||||||
test_setup();
|
test_setup();
|
||||||
f = test_create_faction(0);
|
f = test_create_faction(0);
|
||||||
r1 = test_create_region(0, 0, 0);
|
r1 = test_create_region(0, 0, 0);
|
||||||
u1 = test_create_unit(f, r1);
|
test_create_unit(f, r1);
|
||||||
r2 = test_create_region(10, 0, 0);
|
r2 = test_create_region(10, 0, 0);
|
||||||
rc = test_create_race("spell");
|
test_create_race("spell");
|
||||||
set_observer(r2, f, 10);
|
set_observer(r2, f, 10);
|
||||||
CuAssertPtrEquals(tc, r1, f->first);
|
CuAssertPtrEquals(tc, r1, f->first);
|
||||||
CuAssertPtrEquals(tc, r2, f->last);
|
CuAssertPtrEquals(tc, r2, f->last);
|
||||||
|
|
Loading…
Reference in New Issue